libhilogTooltest.cpp 38.2 KB
Newer Older
Y
youyouyuai 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820
/*
 * Copyright (C) 2021 Huawei Device Co., Ltd.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
#include <cstdarg>
#include <ctime>
#include <gtest/gtest.h>
#include <list>
#include <ostream>
#include <pthread.h>
#include <queue>
#include <regex>
#include <securec.h>
#include <streambuf>
#include <sys/time.h>
#include <thread>

#include "file_utils.h"
#include "hilog/log_c.h"
#include "hilog/log_cpp.h"


#undef LOG_DOMAIN
#undef LOG_TAG
#define LOG_DOMAIN 0xD003200
#define LOG_TAG "HILOGTOOLTEST"
#define MAX_LINE  1024*10
using namespace OHOS;
using namespace HiviewDFX;
using namespace testing::ext;
using namespace std;

class LibhilogTooltest : public testing::Test {
public:
    string input, result, expect;
    static void SetUpTestCase();
    static void TearDownTestCase();
    void SetUp();
    void TearDown();
private:

};
void LibhilogTooltest::SetUp()
{
}
void LibhilogTooltest::TearDown()
{
}
void LibhilogTooltest::SetUpTestCase()
{
    ExeCmd("hilog -p on");
    ExeCmd("hilog -Q domainoff");
    ExeCmd("hilog -Q pidoff");
    ExeCmd("hilog -b debug");
    ExeCmd("hilog -b debug -D 218116608");
    ExeCmd("hilog -b debug -T HILOGTOOLTEST");
    ExeCmd("hilog -r -t all");
    ExeCmd("hilog -G 1m -t all");
    ExeCmd("hilog -S -t all");
    ExeCmd("hilog -S -D 218116608");
}
void LibhilogTooltest::TearDownTestCase()
{
    ExeCmd("hilog -p on");
    ExeCmd("hilog -Q domainoff");
    ExeCmd("hilog -Q pidoff");
    ExeCmd("hilog -b debug");
    ExeCmd("hilog -b debug -D 218116608");
    ExeCmd("hilog -b debug -T HILOGTOOLTEST");
    ExeCmd("hilog -r -t all");
    ExeCmd("hilog -G 1m -t all");
    ExeCmd("hilog -S -t all");
    ExeCmd("hilog -S -D 218116608");
    std::cout << "TearDownTestCase" << std::endl;
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1020
 * @tc.desc Querying the buffer size of default log types (Ccore and app)
*/
HWTEST_F(LibhilogTooltest, buff_size_default, Function|MediumTest|Level2)
{
    result = ExecuteCmd("hilog -g");
    expect = "core buffer size is 1M\napp buffer size is 1M\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1030
 * @tc.desc Queries the buffer size of a specified type (core).
*/
HWTEST_F(LibhilogTooltest, buff_size_core, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -g -t core");
    expect = "core buffer size is 1M\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1040
 * @tc.desc Queries the buffer size of a specified type (app).
*/
HWTEST_F(LibhilogTooltest, buff_size_app, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -g -t app");
    expect = "app buffer size is 1M\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1050
 * @tc.desc Queries the buffer size of a specified type (init).
*/
HWTEST_F(LibhilogTooltest, buff_size_init, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -g -t init");
    expect = "init buffer size is 1M\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1060
 * @tc.desc Queries the buffer size of multiple types
*/
HWTEST_F(LibhilogTooltest, buff_size_multiple, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -g -t 'core app'");
    expect = "core buffer size is 1M\napp buffer size is 1M\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1070
 * @tc.desc Queries the buffer size of all types
*/
HWTEST_F(LibhilogTooltest, buff_size_all, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -g -t all");
    expect = "core buffer size is 1M\napp buffer size is 1M\ninit buffer size is 1M\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1080
 * @tc.desc Queries the buffer size of a nonexistent type
*/
HWTEST_F(LibhilogTooltest, buff_size_illegal, Function|MediumTest|Level4)
{
    result = ExecuteCmd("hilog -g -t abc");
    expect = "Invalid parameter\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1090
 * @tc.desc Queries the buffer size of multiple types, including nonexistent types.
*/
HWTEST_F(LibhilogTooltest, buff_size_illegal2, Function|MediumTest|Level4)
{
    result = ExecuteCmd("hilog -g -t 'core abc'");
    expect = "buffsize operation error!\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1100
 * @tc.desc Set the buffer size without unit. (The default log type is core and app.)
*/
HWTEST_F(LibhilogTooltest, buff_resize_byte, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -G 200");
    expect = "core buffer size is 200B\napp buffer size is 200B\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
    ExeCmd("hilog -G 1m -t all");
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1110
 * @tc.desc Set the buffer size to **b.
*/
HWTEST_F(LibhilogTooltest, buff_resize_byte2, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -G 200b");
    expect = "core buffer size is 200B\napp buffer size is 200B\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
    ExeCmd("hilog -G 1m -t all");
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1120
 * @tc.desc Set the buffer size to **B
*/
HWTEST_F(LibhilogTooltest, buff_resize_byte3, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -G 200B");
    expect = "core buffer size is 200B\napp buffer size is 200B\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
    ExeCmd("hilog -G 1m -t all");
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1130
 * @tc.desc Set the buffer size to **k
*/
HWTEST_F(LibhilogTooltest, buff_resize_kbyte, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -G 2k");
    expect = "core buffer size is 2K\napp buffer size is 2K\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
    ExeCmd("hilog -G 1m -t all");
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1140
 * @tc.desc Set the buffer size to **K
*/
HWTEST_F(LibhilogTooltest, buff_resize_kbyte2, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -G 2K");
    expect = "core buffer size is 2K\napp buffer size is 2K\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
    ExeCmd("hilog -G 1m -t all");
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1150
 * @tc.desc Set the buffer size to **m
*/
HWTEST_F(LibhilogTooltest, buff_resize_mbyte, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -G 2m");
    expect = "core buffer size is 2M\napp buffer size is 2M\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
    ExeCmd("hilog -G 1m -t all");
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1160
 * @tc.desc Set the buffer size to **M
*/
HWTEST_F(LibhilogTooltest, buff_resize_mbyte2, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -G 2M");
    expect = "core buffer size is 2M\napp buffer size is 2M\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
    ExeCmd("hilog -G 1m -t all");
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1170
 * @tc.desc Set the buffer size to **g
*/
HWTEST_F(LibhilogTooltest, buff_resize_gbyte, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -G 1g");
    expect = "core buffer size is 1G\napp buffer size is 1G\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
    ExeCmd("hilog -G 1m -t all");
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1180
 * @tc.desc Set the buffer size to **G
*/
HWTEST_F(LibhilogTooltest, buff_resize_gbyte2, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -G 1G");
    expect = "core buffer size is 1G\napp buffer size is 1G\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
    ExeCmd("hilog -G 1m -t all");
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1190
 * @tc.desc Set the buffer size to 0
*/
HWTEST_F(LibhilogTooltest, buff_resize_illegal, Function|MediumTest|Level4)
{
    result = ExecuteCmd("hilog -G 0");
    expect = "core buffer resize fail\napp buffer resize fail\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1200
 * @tc.desc Set the buffer size to exceed the maximum length
*/
HWTEST_F(LibhilogTooltest, buff_resize_illegal2, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -G 2g");
    expect = "core buffer resize fail\napp buffer resize fail\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1210
 * @tc.desc Set the buffer size according to a single log type (core)
*/

HWTEST_F(LibhilogTooltest, buff_resize_core, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -G 2m -t core");
    expect = "core buffer size is 2M\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
    ExeCmd("hilog -G 1m -t all");
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1220
 * @tc.desc Set the buffer size according to a single log type (app)
*/
HWTEST_F(LibhilogTooltest, buff_resize_app, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -G 2m -t app");
    expect = "app buffer size is 2M\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
    ExeCmd("hilog -G 1m -t all");
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1230
 * @tc.desc Set the buffer size according to a single log type (init)
*/
HWTEST_F(LibhilogTooltest, buff_resize_init, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -G 2m -t init");
    expect = "init buffer size is 2M\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
    ExeCmd("hilog -G 1m -t all");
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1240
 * @tc.desc Set the buffer size according to multiple log types
*/
HWTEST_F(LibhilogTooltest, buff_resize_multyple, Function|MediumTest|Level2)
{
    result = ExecuteCmd("hilog -G 2m -t 'core app'");
    expect = "core buffer size is 2M\napp buffer size is 2M\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
    ExeCmd("hilog -G 1m -t all");
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1250
 * @tc.desc Set the buffer size of all log types
*/
HWTEST_F(LibhilogTooltest, buff_resize_all, Function|MediumTest|Level4)
{
    result = ExecuteCmd("hilog -G 1m -t all");
    expect = "core buffer size is 1M\napp buffer size is 1M\ninit buffer size is 1M\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1260
 * @tc.desc Set the non-existent log type buffer size
*/
HWTEST_F(LibhilogTooltest, buff_resize_illegal_type, Function|MediumTest|Level4)
{
    result = ExecuteCmd("hilog -G 2m -t abc");
    expect = "Invalid parameter\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
    ExeCmd("hilog -G 1m -t all");
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1270
 * @tc.desc Set multiple log types, including non-existent log types
*/
HWTEST_F(LibhilogTooltest, buff_resize_illegal_type2, Function|MediumTest|Level4)
{
    result = ExecuteCmd("hilog -G 2m -t 'core abc'");
    expect = "buffsize operation error!\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
    ExeCmd("hilog -G 1m -t all");
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1280
 * @tc.desc Re-query the buffer size after the setting operation
*/
HWTEST_F(LibhilogTooltest, buff_resize_check, Function|MediumTest|Level3)
{
    // re query after set
    result = ExecuteCmd("hilog -g -t all");
    expect = "core buffer size is 1M\napp buffer size is 1M\ninit buffer size is 1M\n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1290
 * @tc.desc The size of the core buffer is set to 200 bytes, and the size of logs exceeds 200 bytes.
*/
HWTEST_F(LibhilogTooltest, buff_resize_check_core, Function|MediumTest|Level3)
{
    int i = 1;
    ExeCmd("hilog -G 200 -t core");
    ExeCmd("hilog -r -t all");
    i = 1;
    while (i <= 10) {
        HILOG_FATAL(LOG_CORE, "123456789_1234567890_public and private log test is: \
%{public}d, %{public}lf, %{public}.2f, %{public}s, %{public}c", i, 1.00001, 2.333333, "sse", 'a');
        i++;
    }
    result = ExecuteCmd("hilog -x -t core |wc -l");
    expect = "10";
    EXPECT_LT(stoi(result), stoi(expect));
    // end recover default
    ExeCmd("hilog -r -t all");
    ExeCmd("hilog -G 1m -t all");
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1300
 * @tc.desc The size of the app buffer is set to 200 bytes, and the size of logs exceeds 200 bytes.
*/
HWTEST_F(LibhilogTooltest, buff_resize_check_app, Function|MediumTest|Level4)
{
    int i = 1;
    ExeCmd("hilog -G 200 -t app");
    ExeCmd("hilog -r -t all");
    i = 1;
    while (i <= 10) {
        HILOG_FATAL(LOG_APP, "123456789_1234567890_public and private log test is: \
%{public}d, %{public}lf, %{public}.2f, %{public}s, %{public}c", i, 1.00001, 2.333333, "sse", 'a');
        i++;
    }
    result = ExecuteCmd("hilog -x -t app |wc -l");
    expect = "10";
    EXPECT_LT(stoi(result), stoi(expect));
    // end recover default
    ExeCmd("hilog -r -t all");
    ExeCmd("hilog -G 1m -t all");
}

/*
 * @tc.name buffer size test
 * @tc.number DFX_DFT_HilogCPP_1310
 * @tc.desc The size of the init buffer is set to 200 bytes, and the size of logs exceeds 200 bytes.
*/
HWTEST_F(LibhilogTooltest, buff_resize_check_init, Function|MediumTest|Level4)
{
    int i = 1;
    ExeCmd("hilog -G 200 -t init");
    ExeCmd("hilog -r -t all");
    i = 1;
    while (i <= 10) {
        HILOG_FATAL(LOG_INIT, "123456789_1234567890_public and private log test is: \
%{public}d, %{public}lf, %{public}.2f, %{public}s, %{public}c", i, 1.00001, 2.333333, "sse", 'a');
        i++;
    }
    result = ExecuteCmd("hilog -x -t init |wc -l");
    expect = "10";
    EXPECT_LT(stoi(result), stoi(expect));
    // end recover default
    ExeCmd("hilog -r -t all");
    ExeCmd("hilog -G 1m -t all");
}

/*
 * @tc.name Querying and clearing statistics by log
 * @tc.number DFX_DFT_HilogCPP_1320
 * @tc.desc Query the statistics of the core log
*/
HWTEST_F(LibhilogTooltest, statistic_info_query_core, Function|MediumTest|Level2)
{
    int i = 1;
    ExeCmd("hilog -r -t all");
    ExeCmd("hilog -S -t core");

    // write and read
    i = 1;
    while (i <= 1000) {
        HILOG_FATAL(LOG_CORE, "123456789_1234567890_public and private log test is: \
%{public}d, %{public}lf, %{public}.2f, %{public}s, %{public}c", i, 1.00001, 2.333333, "sse", 'a');
        i++;
    }
    ExeCmd("hilog -x -t core >/dev/null 2>&1");
    result = ExecuteCmd("hilog -s -t core");
    expect = "core print log length is 78K\ncore cache log length is 78K\ncore dropped log lines is 0B\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name Querying and clearing statistics by log
 * @tc.number DFX_DFT_HilogCPP_1330
 * @tc.desc Query the statistics of the app log
*/
HWTEST_F(LibhilogTooltest, statistic_info_query_app, Function|MediumTest|Level3)
{
    int i = 1;
    ExeCmd("hilog -r -t all");
    ExeCmd("hilog -S -t app");

    // write and read
    i = 1;
    while (i <= 1000) {
        HILOG_FATAL(LOG_APP, "123456789_1234567890_public and private log test is: \
%{public}d, %{public}lf, %{public}.2f, %{public}s, %{public}c", i, 1.00001, 2.333333, "sse", 'a');
        i++;
    }
    ExeCmd("hilog -x -t app >/dev/null 2>&1");
    result = ExecuteCmd("hilog -s -t app");
    expect = "app print log length is 78K\napp cache log length is 78K\napp dropped log lines is 0B\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name Querying and clearing statistics by log
 * @tc.number DFX_DFT_HilogCPP_1340
 * @tc.desc Query the statistics of the init log
*/
HWTEST_F(LibhilogTooltest, statistic_info_query_init, Function|MediumTest|Level3)
{
    int i = 1;
    ExeCmd("hilog -r -t all");
    ExeCmd("hilog -S -t init");
    // write and read
    i = 1;
    while (i <= 1000) {
        HILOG_FATAL(LOG_INIT, "123456789_1234567890_public and private log test is: \
%{public}d, %{public}lf, %{public}.2f, %{public}s, %{public}c", i, 1.00001, 2.333333, "sse", 'a');
        i++;
    }
    ExeCmd("hilog -x -t init >/dev/null 2>&1");
    result = ExecuteCmd("hilog -s -t init");
    expect = "init print log length is 78K\ninit cache log length is 78K\ninit dropped log lines is 0B\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name Querying and clearing statistics by log
 * @tc.number DFX_DFT_HilogCPP_1350
 * @tc.desc Clear the statistics of the core log
*/
HWTEST_F(LibhilogTooltest, statistic_info_clear_core, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -S -t core");
    expect = "core statistic info clear success \n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name Querying and clearing statistics by log
 * @tc.number DFX_DFT_HilogCPP_1360
 * @tc.desc Clear the statistics of the app log
*/
HWTEST_F(LibhilogTooltest, statistic_info_clear_app, Function|MediumTest|Level4)
{
    result = ExecuteCmd("hilog -S -t app");
    expect = "app statistic info clear success \n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name Querying and clearing statistics by log
 * @tc.number DFX_DFT_HilogCPP_1370
 * @tc.desc Clear the statistics of the init log
*/
HWTEST_F(LibhilogTooltest, statistic_info_clear_init, Function|MediumTest|Level4)
{
    result = ExecuteCmd("hilog -S -t init");
    expect = "init statistic info clear success \n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name Querying and clearing statistics by log
 * @tc.number DFX_DFT_HilogCPP_1380
 * @tc.desc Query statistics of non-existent log
*/
HWTEST_F(LibhilogTooltest, statistic_info_query_illegal, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -s -t abc");
    expect = "Invalid parameter\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name Querying and clearing statistics by log
 * @tc.number DFX_DFT_HilogCPP_1390
 * @tc.desc Clear statistics of non-existent log
*/
HWTEST_F(LibhilogTooltest, statistic_info_clear_illegal, Function|MediumTest|Level4)
{
    result = ExecuteCmd("hilog -S -t abc");
    expect = "Invalid parameter\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name Querying and clearing statistics by log
 * @tc.number DFX_DFT_HilogCPP_1400
 * @tc.desc Re-query after clearing
*/
HWTEST_F(LibhilogTooltest, statistic_info_check, Function|MediumTest|Level3)
{
    // re query after clear
    ExeCmd("hilog -S -t core");
    result = ExecuteCmd("hilog -s -t core");
    expect = "core print log length is 0B\ncore cache log length is 0B\ncore dropped log lines is 0B\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name Querying and clearing statistics by domain
 * @tc.number DFX_DFT_HilogCPP_1410
 * @tc.desc Query the statistics of the specified domain
*/
HWTEST_F(LibhilogTooltest, statistic_info_query_domain, Function|MediumTest|Level2)
{
    int i = 1;
    ExeCmd("hilog -r -t all");
    ExeCmd("hilog -S -D 218116608");
    // write and read
    i = 1;
    while (i <= 1000) {
        HILOG_FATAL(LOG_CORE, "123456789_1234567890_public and private log test is: \
%{public}d, %{public}lf, %{public}.2f, %{public}s, %{public}c", i, 1.00001, 2.333333, "sse", 'a');
        i++;
    }
    ExeCmd("hilog -x -t core >/dev/null 2>&1");
    result = ExecuteCmd("hilog -s -D 218116608");
    expect = "218116608 print log length is 78K\n218116608 cache log length is 78K\n\
218116608 dropped log lines is 0B\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name Querying and clearing statistics by domain
 * @tc.number DFX_DFT_HilogCPP_1420
 * @tc.desc Clear the statistics of the specified domain
*/
HWTEST_F(LibhilogTooltest, statistic_info_clear_domain, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -S -D 218116608");
    expect = "218116608 statistic info clear success \n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name Querying and clearing statistics by domain
 * @tc.number DFX_DFT_HilogCPP_1430
 * @tc.desc Query the statistics of nonexistent domain
*/
HWTEST_F(LibhilogTooltest, statistic_info_query_domain2, Function|MediumTest|Level3)
{
    int i = 1;
    ExeCmd("hilog -r -t all");
    ExeCmd("hilog -S -D 218116608");
    // write and read
    i = 1;
    while (i <= 1000) {
        HILOG_FATAL(LOG_CORE, "123456789_1234567890_public and private log test is: \
%{public}d, %{public}lf, %{public}.2f, %{public}s, %{public}c", i, 1.00001, 2.333333, "sse", 'a');
        i++;
    }
    ExeCmd("hilog -x -t core >/dev/null 2>&1");
    result = ExecuteCmd("hilog -s -D 1");
    expect = "1 print log length is 0B\n1 cache log length is 0B\n1 dropped log lines is 0B\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name Querying and clearing statistics by domain
 * @tc.number DFX_DFT_HilogCPP_1440
 * @tc.desc Clear the statistics of nonexistent domain
*/
HWTEST_F(LibhilogTooltest, statistic_info_clear_domain2, Function|MediumTest|Level4)
{
    result = ExecuteCmd("hilog -S -D 1");
    expect = "1 statistic info clear success \n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}


/*
 * @tc.name Clearing the logs of the corresponding buffer by log type
 * @tc.number DFX_DFT_HilogCPP_1630
 * @tc.desc Clear the default logs (core、app)
*/
HWTEST_F(LibhilogTooltest, log_clear_default, Function|MediumTest|Level2)
{
    result = ExecuteCmd("hilog -r");
    expect = "core log clear success \napp log clear success \n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name Clearing the logs of the corresponding buffer by log type
 * @tc.number DFX_DFT_HilogCPP_1640
 * @tc.desc Clear the core log
*/
HWTEST_F(LibhilogTooltest, log_clear_core, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -r -t core");
    expect = "core log clear success \n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name Clearing the logs of the corresponding buffer by log type
 * @tc.number DFX_DFT_HilogCPP_1650
 * @tc.desc Clear the app log
*/
HWTEST_F(LibhilogTooltest, log_clear_app, Function|MediumTest|Level4)
{
    result = ExecuteCmd("hilog -r -t app");
    expect = "app log clear success \n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name Clearing the logs of the corresponding buffer by log type
 * @tc.number DFX_DFT_HilogCPP_1660
 * @tc.desc Clear the init log
*/
HWTEST_F(LibhilogTooltest, log_clear_inti, Function|MediumTest|Level4)
{
    result = ExecuteCmd("hilog -r -t init");
    expect = "init log clear success \n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name Clearing the logs of the corresponding buffer by log type
 * @tc.number DFX_DFT_HilogCPP_1670
 * @tc.desc Clear multiple types of logs
*/
HWTEST_F(LibhilogTooltest, log_clear_multiple, Function|MediumTest|Level3)
{
    result = ExecuteCmd("hilog -r -t 'core app'");
    expect = "core log clear success \napp log clear success \n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name Clearing the logs of the corresponding buffer by log type
 * @tc.number DFX_DFT_HilogCPP_1680
 * @tc.desc Clear all types of logs.
*/
HWTEST_F(LibhilogTooltest, log_clear_all, Function|MediumTest|Level4)
{
    result = ExecuteCmd("hilog -r -t all");
    expect = "core log clear success \napp log clear success \ninit log clear success \n\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name Clearing the logs of the corresponding buffer by log type
 * @tc.number DFX_DFT_HilogCPP_1690
 * @tc.desc Clear nonexistent types of logs
*/
HWTEST_F(LibhilogTooltest, log_clear_illegal, Function|MediumTest|Level4)
{
    result = ExecuteCmd("hilog -r -t abc");
    expect = "Invalid parameter\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}

/*
 * @tc.name Clearing the logs of the corresponding buffer by log type
 * @tc.number DFX_DFT_HilogCPP_1700
 * @tc.desc Clear multiple types of logs including nonexistent types
*/
HWTEST_F(LibhilogTooltest, log_clear_illegal2, Function|MediumTest|Level4)
{
    result = ExecuteCmd("hilog -r -t 'abc core'");
    expect = "clear log operation error!\n";
    EXPECT_STREQ(result.c_str(), expect.c_str());
}


/*
 * @tc.name Setting the log printing level (isLoggable)
 * @tc.number DFX_DFT_HilogCPP_1450
 * @tc.desc Set the global log printing level to fatal and print the fatal log.
*/
HWTEST_F(LibhilogTooltest, log_leval_global_set, Function|MediumTest|Level2)
{
Y
youyouyuai 已提交
821
    bool ret = true;
Y
youyouyuai 已提交
822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849
    int i = 1;
    ExeCmd("hilog -b fatal");
    ExeCmd("hilog -r -t all");
    HILOG_FATAL(LOG_CORE, "123456789_1234567890_public and private log test is: \
%{public}d, %{public}lf, %{public}.2f, %{public}s, %{public}c", i, 1.00001, 2.333333, "sse", 'a');
    result = ExecuteCmd("hilog -a 1 -x -t core");
    expect = "03200/HILOGTOOLTEST: 123456789_1234567890_public and private log test is: \
1, 1.000010, 2.33, sse, a";
    if (result.find(expect) != std::string::npos) {
        ret = true;
    } else {
        ret = false;
    }
    EXPECT_EQ(ret, true);
    // test end recover log level
    ExeCmd("hilog -b debug");
    ExeCmd("hilog -b debug -D 218116608");
    ExeCmd("hilog -b debug -T HILOGTOOLTEST");
}


/*
 * @tc.name Setting the log printing level (isLoggable)
 * @tc.number DFX_DFT_HilogCPP_1460
 * @tc.desc Set the global log printing level to fatal and print logs lower than level fatal
*/
HWTEST_F(LibhilogTooltest, log_level_global_set2, Function|MediumTest|Level3)
{
Y
youyouyuai 已提交
850
    bool ret = true;
Y
youyouyuai 已提交
851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879
    int i = 1;
#ifndef LOCALTEST
    ExeCmd("hilog -b fatal");
    ExeCmd("hilog -r -t all");
    HILOG_ERROR(LOG_CORE, "123456789_1234567890_public and private log test is: \
%{public}d, %{public}lf, %{public}.2f, %{public}s, %{public}c", i, 1.00001, 2.333333, "sse", 'a');
    result = ExecuteCmd("hilog -a 1 -x -t core");
    expect = "03200/HILOGTOOLTEST: 123456789_1234567890_public and private log test is: \
1, 1.000010, 2.33, sse, a";
    if (result.find(expect) == std::string::npos) {
        ret = true;
    } else {
        ret = false;
    }
    EXPECT_EQ(ret, true);
#endif
    // test end recover log level
    ExeCmd("hilog -b debug");
    ExeCmd("hilog -b debug -D 218116608");
    ExeCmd("hilog -b debug -T HILOGTOOLTEST");
}

/*
 * @tc.name Setting the log printing level (isLoggable)
 * @tc.number DFX_DFT_HilogCPP_1470
 * @tc.desc Set the global log printing level to debug and print logs lower than level debug
*/
HWTEST_F(LibhilogTooltest, log_leveal_global_set3, Function|MediumTest|Level2)
{
Y
youyouyuai 已提交
880
    bool ret = true;
Y
youyouyuai 已提交
881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907
    int i = 1;
    ExeCmd("hilog -b debug");
    ExeCmd("hilog -r -t all");
    HILOG_ERROR(LOG_CORE, "123456789_1234567890_public and private log test is: \
%{public}d, %{public}lf, %{public}.2f, %{public}s, %{public}c", i, 1.00001, 2.333333, "sse", 'a');
    result = ExecuteCmd("hilog -a 1 -x -t core");
    expect = "03200/HILOGTOOLTEST: 123456789_1234567890_public and private log test is: \
1, 1.000010, 2.33, sse, a";
    if (result.find(expect) != std::string::npos) {
        ret = true;
    } else {
        ret = false;
    }
    EXPECT_EQ(ret, true);
    // test end recover log level
    ExeCmd("hilog -b debug");
    ExeCmd("hilog -b debug -D 218116608");
    ExeCmd("hilog -b debug -T HILOGTOOLTEST");
}

/*
 * @tc.name Setting the log printing level (isLoggable)
 * @tc.number DFX_DFT_HilogCPP_1480
 * @tc.desc Set tag=HILOGTOOLTEST corresponding to the log level as fatal, and print the fatal log
*/
HWTEST_F(LibhilogTooltest, log_leval_tag_set, Function|MediumTest|Level3)
{
Y
youyouyuai 已提交
908
    bool ret = true;
Y
youyouyuai 已提交
909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936
    int i = 1;
    ExeCmd("hilog -b fatal -T HILOGTOOLTEST");
    ExeCmd("hilog -r -t all");
    HILOG_FATAL(LOG_CORE, "123456789_1234567890_public and private log test is: \
%{public}d, %{public}lf, %{public}.2f, %{public}s, %{public}c", i, 1.00001, 2.333333, "sse", 'a');
    result = ExecuteCmd("hilog -a 1 -x -t core");
    expect = "03200/HILOGTOOLTEST: 123456789_1234567890_public and private log test is: \
1, 1.000010, 2.33, sse, a";
    if (result.find(expect) != std::string::npos) {
        ret = true;
    } else {
        ret = false;
    }
    EXPECT_EQ(ret, true);
    // test end recover log level
    ExeCmd("hilog -b debug");
    ExeCmd("hilog -b debug -D 218116608");
    ExeCmd("hilog -b debug -T HILOGTOOLTEST");
}

/*
 * @tc.name Setting the log printing level (isLoggable)
 * @tc.number DFX_DFT_HilogCPP_1490
 * @tc.desc Set tag=HILOGTOOLTEST corresponding to the log level as fatal, 
 * and print logs lower than the fatal log
*/
HWTEST_F(LibhilogTooltest, log_leval_tag_set2, Function|MediumTest|Level3)
{
Y
youyouyuai 已提交
937
    bool ret = true;
Y
youyouyuai 已提交
938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967
    int i = 1;
#ifndef LOCALTEST
    ExeCmd("hilog -b fatal -T HILOGTOOLTEST");
    ExeCmd("hilog -r -t all");
    HILOG_ERROR(LOG_CORE, "123456789_1234567890_public and private log test is: \
%{public}d, %{public}lf, %{public}.2f, %{public}s, %{public}c", i, 1.00001, 2.333333, "sse", 'a');
    result = ExecuteCmd("hilog -a 1 -x -t core");
    expect = "03200/HILOGTOOLTEST: 123456789_1234567890_public and private log test is: \
1, 1.000010, 2.33, sse, a";
    if (result.find(expect) == std::string::npos) {
        ret = true;
    } else {
        ret = false;
    }
    EXPECT_EQ(ret, true);
#endif
    // test end recover log level
    ExeCmd("hilog -b debug");
    ExeCmd("hilog -b debug -D 218116608");
    ExeCmd("hilog -b debug -T HILOGTOOLTEST");
}

/*
 * @tc.name Setting the log printing level (isLoggable)
 * @tc.number DFX_DFT_HilogCPP_1500
 * @tc.desc Set tag=HILOGTOOLTEST corresponding to the log level as debug,
 * and the print level is greater than or equal to the debug log
*/
HWTEST_F(LibhilogTooltest, log_level_tag_set3, Function|MediumTest|Level3)
{
Y
youyouyuai 已提交
968
    bool ret = true;
Y
youyouyuai 已提交
969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995
    int i = 1;
    ExeCmd("hilog -b debug -T HILOGTOOLTEST");
    ExeCmd("hilog -r -t all");
    HILOG_ERROR(LOG_CORE, "123456789_1234567890_public and private log test is: \
%{public}d, %{public}lf, %{public}.2f, %{public}s, %{public}c", i, 1.00001, 2.333333, "sse", 'a');
    result = ExecuteCmd("hilog -a 1 -x -t core");
    expect = "03200/HILOGTOOLTEST: 123456789_1234567890_public and private log test is: \
1, 1.000010, 2.33, sse, a";
    if (result.find(expect) != std::string::npos) {
        ret = true;
    } else {
        ret = false;
    }
    EXPECT_EQ(ret, true);
    // test end recover log level
    ExeCmd("hilog -b debug");
    ExeCmd("hilog -b debug -D 218116608");
    ExeCmd("hilog -b debug -T HILOGTOOLTEST");
}

/*
 * @tc.name Setting the log printing level (isLoggable)
 * @tc.number DFX_DFT_HilogCPP_1510
 * @tc.desc Set domain=218116608 corresponding to the log level as fatal, and print the fatal log
*/
HWTEST_F(LibhilogTooltest, log_level_domain_set, Function|MediumTest|Level3)
{
Y
youyouyuai 已提交
996
    bool ret = true;
Y
youyouyuai 已提交
997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024
    int i = 1;
    ExeCmd("hilog -b fatal -D 218116608");
    ExeCmd("hilog -r -t all");
    HILOG_FATAL(LOG_CORE, "123456789_1234567890_public and private log test is: \
%{public}d, %{public}lf, %{public}.2f, %{public}s, %{public}c", i, 1.00001, 2.333333, "sse", 'a');
    result = ExecuteCmd("hilog -a 1 -x -t core");
    expect = "03200/HILOGTOOLTEST: 123456789_1234567890_public and private log test is: \
1, 1.000010, 2.33, sse, a";
    if (result.find(expect) != std::string::npos) {
        ret = true;
    } else {
        ret = false;
    }
    EXPECT_EQ(ret, true);
    // test end recover log level
    ExeCmd("hilog -b debug");
    ExeCmd("hilog -b debug -D 218116608");
    ExeCmd("hilog -b debug -T HILOGTOOLTEST");
}

/*
 * @tc.name Setting the log printing level (isLoggable)
 * @tc.number DFX_DFT_HilogCPP_1520
 * @tc.desc Set domain=218116608 corresponding to the log level as fatal, 
 * and print logs lower than the fatal log
*/
HWTEST_F(LibhilogTooltest, log_level_domain_set2, Function|MediumTest|Level4)
{
Y
youyouyuai 已提交
1025
    bool ret = true;
Y
youyouyuai 已提交
1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055
    int i = 1;
#ifndef LOCALTEST
    ExeCmd("hilog -b fatal -D 218116608");
    ExeCmd("hilog -r -t all");
    HILOG_ERROR(LOG_CORE, "123456789_1234567890_public and private log test is: \
%{public}d, %{public}lf, %{public}.2f, %{public}s, %{public}c", i, 1.00001, 2.333333, "sse", 'a');
    result = ExecuteCmd("hilog -a 1 -x -t core");
    expect = "03200/HILOGTOOLTEST: 123456789_1234567890_public and private log test is: \
1, 1.000010, 2.33, sse, a";
    if (result.find(expect) == std::string::npos) {
        ret = true;
    } else {
        ret = false;
    }
    EXPECT_EQ(ret, true);
#endif
    // test end recover log level
    ExeCmd("hilog -b debug");
    ExeCmd("hilog -b debug -D 218116608");
    ExeCmd("hilog -b debug -T HILOGTOOLTEST");
}

/*
 * @tc.name Setting the log printing level (isLoggable)
 * @tc.number DFX_DFT_HilogCPP_1530
 * @tc.desc Set domain=218116608 corresponding to the log level as debug, 
 * and the print level is greater than or equal to the debug log
*/
HWTEST_F(LibhilogTooltest, log_level_domain_set3, Function|MediumTest|Level3)
{
Y
youyouyuai 已提交
1056
    bool ret = true;
Y
youyouyuai 已提交
1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084
    int i = 1;
    ExeCmd("hilog -b debug -D 218116608");
    ExeCmd("hilog -r -t all");
    HILOG_ERROR(LOG_CORE, "123456789_1234567890_public and private log test is: \
%{public}d, %{public}lf, %{public}.2f, %{public}s, %{public}c", i, 1.00001, 2.333333, "sse", 'a');
    result = ExecuteCmd("hilog -a 1 -x -t core");
    expect = "03200/HILOGTOOLTEST: 123456789_1234567890_public and private log test is: \
1, 1.000010, 2.33, sse, a";
    if (result.find(expect) != std::string::npos) {
        ret = true;
    } else {
        ret = false;
    }
    EXPECT_EQ(ret, true);
    // test end recover log level
    ExeCmd("hilog -b debug");
    ExeCmd("hilog -b debug -D 218116608");
    ExeCmd("hilog -b debug -T HILOGTOOLTEST");
}

/*
 * @tc.name Setting the log printing level (isLoggable)
 * @tc.number DFX_DFT_HilogCPP_1540
 * @tc.desc Set different log levels for global, tag, and domain, 
 * and print logs that are less than the highest level among the three levels
*/
HWTEST_F(LibhilogTooltest, log_level_all_set, Function|MediumTest|Level3)
{
Y
youyouyuai 已提交
1085
    bool ret = true;
Y
youyouyuai 已提交
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115
    int i = 1;
    ExeCmd("hilog -b info");
    ExeCmd("hilog -b warn -D 218116608");
    ExeCmd("hilog -b error -T HILOGTOOLTEST");
    ExeCmd("hilog -r -t all");
    HILOG_FATAL(LOG_CORE, "123456789_1234567890_public and private log test is: \
%{public}d, %{public}lf, %{public}.2f, %{public}s, %{public}c", i, 1.00001, 2.333333, "sse", 'a');
    result = ExecuteCmd("hilog -a 1 -x -t core");
    expect = "03200/HILOGTOOLTEST: 123456789_1234567890_public and private log test is: \
1, 1.000010, 2.33, sse, a";
    if (result.find(expect) != std::string::npos) {
        ret = true;
    } else {
        ret = false;
    }
    EXPECT_EQ(ret, true);
    // test end recover log level
    ExeCmd("hilog -b debug");
    ExeCmd("hilog -b debug -D 218116608");
    ExeCmd("hilog -b debug -T HILOGTOOLTEST");
}

/*
 * @tc.name Setting the log printing level (isLoggable)
 * @tc.number DFX_DFT_HilogCPP_1550
 * @tc.desc Set different log levels for global, tag, and domain, 
 * and print logs that are greater than or equal to the highest level among the three levels
*/
HWTEST_F(LibhilogTooltest, log_level_all_set2, Function|MediumTest|Level3)
{
Y
youyouyuai 已提交
1116
    bool ret = true;
Y
youyouyuai 已提交
1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158
    int i = 1;
#ifndef LOCALTEST
    ExeCmd("hilog -b info");
    ExeCmd("hilog -b warn -D 218116608");
    ExeCmd("hilog -b error -T HILOGTOOLTEST");
    ExeCmd("hilog -r -t all");
    HILOG_DEBUG(LOG_CORE, "123456789_1234567890_public and private log test is: \
%{public}d, %{public}lf, %{public}.2f, %{public}s, %{public}c", i, 1.00001, 2.333333, "sse", 'a');
    result = ExecuteCmd("hilog -a 1 -x -t core");
    expect = "03200/HILOGTOOLTEST: 123456789_1234567890_public and private log test is: \
1, 1.000010, 2.33, sse, a";
    if (result.find(expect) == std::string::npos) {
        ret = true;
    } else {
        ret = false;
    }
    EXPECT_EQ(ret, true);
#endif
    // test end recover log level
    ExeCmd("hilog -b debug");
    ExeCmd("hilog -b debug -D 218116608");
    ExeCmd("hilog -b debug -T HILOGTOOLTEST");
}

/*
 * @tc.name Setting the log printing level (isLoggable)
 * @tc.number DFX_DFT_HilogCPP_1560
 * @tc.desc Set a log level that does not exist
*/
HWTEST_F(LibhilogTooltest, log_level_set_illegal, Function|MediumTest|Level4)
{
    result = ExecuteCmd("hilog -b abc");
    expect = "set log level operation error!\n";
    EXPECT_EQ(result, expect);
    // test end recover log level
    ExeCmd("hilog -b debug");
    ExeCmd("hilog -b debug -D 218116608");
    ExeCmd("hilog -b debug -T HILOGTOOLTEST");
}

HWTEST_F(LibhilogTooltest, private_open, Function|MediumTest|Level4)
{ 
Y
youyouyuai 已提交
1159
    bool ret = true;
Y
youyouyuai 已提交
1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182
    int i = 1;
#ifndef LOCALTEST
    ExeCmd("hilog -p on");
    ExeCmd("hilog -r -t all");     
    HILOG_DEBUG(LOG_CORE, "123456789_1234567890_public and private log test is: \
%{public}d, %{private}lf, %{public}.2f, %{public}s, %{private}c", i, 1.00001, 2.333333, "sse", 'a');
    result = ExecuteCmd("hilog -a 1 -x -t core");
    expect = "03200/HILOGTOOLTEST: 123456789_1234567890_public and private log test is: \
1, <private>, 2.33, sse, <private>\n";
    if (result.find(expect) != std::string::npos) {
        ret = true;
    } else {
        ret = false;
    }
    EXPECT_EQ(ret, true);
#endif
    // end open switch
    ExeCmd("hilog -p on");
}


HWTEST_F(LibhilogTooltest, private_close, Function|MediumTest|Level4)
{   
Y
youyouyuai 已提交
1183
    bool ret = true;
Y
youyouyuai 已提交
1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208
    int i = 1;
    ExeCmd("hilog -p off");
    ExeCmd("hilog -r -t all");     
    HILOG_DEBUG(LOG_CORE, "123456789_1234567890_public and private log test is: \
%{public}d, %{private}lf, %{public}.2f, %{public}s, %{private}c", i, 1.00001, 2.333333, "sse", 'a');
    result = ExecuteCmd("hilog -a 1 -x -t core");
    expect = "03200/HILOGTOOLTEST: 123456789_1234567890_public and private log test is: \
1, 1.000010, 2.33, sse, a\n";
    if (result.find(expect) != std::string::npos) {
        ret = true;
    } else {
        ret = false;
    }
    EXPECT_EQ(ret, true);
    // end open switch
    ExeCmd("hilog -p on");
}


HWTEST_F(LibhilogTooltest, private_switch_illegal, Function|MediumTest|Level4)
{
    result = ExecuteCmd("hilog -p abc");
    expect = "set private switch operation error!\n";
    EXPECT_EQ(result, expect);
}