提交 c51fd777 编写于 作者: O openharmony_ci 提交者: Gitee

!473 fix hilog testcases

Merge pull request !473 from youyouyuai/master
...@@ -856,9 +856,10 @@ HWTEST_F(hilogtest, buff_size_all, Function|MediumTest|Level3) ...@@ -856,9 +856,10 @@ HWTEST_F(hilogtest, buff_size_all, Function|MediumTest|Level3)
*/ */
HWTEST_F(hilogtest, buff_size_illegal, Function|MediumTest|Level4) HWTEST_F(hilogtest, buff_size_illegal, Function|MediumTest|Level4)
{ {
bool ret = true;
result = ExecuteCmd("hilog -g -t abc"); result = ExecuteCmd("hilog -g -t abc");
expect = "Invalid parameter\n"; ret = result.find("Invalid log type") != std::string::npos;
EXPECT_STREQ(result.c_str(), expect.c_str()); EXPECT_EQ(ret, true);
} }
/* /*
...@@ -868,9 +869,10 @@ HWTEST_F(hilogtest, buff_size_illegal, Function|MediumTest|Level4) ...@@ -868,9 +869,10 @@ HWTEST_F(hilogtest, buff_size_illegal, Function|MediumTest|Level4)
*/ */
HWTEST_F(hilogtest, buff_size_illegal2, Function|MediumTest|Level4) HWTEST_F(hilogtest, buff_size_illegal2, Function|MediumTest|Level4)
{ {
bool ret = true;
result = ExecuteCmd("hilog -g -t 'core abc'"); result = ExecuteCmd("hilog -g -t 'core abc'");
expect = "buffsize operation error!\n"; ret = result.find("Invalid log type") != std::string::npos;
EXPECT_STREQ(result.c_str(), expect.c_str()); EXPECT_EQ(ret, true);
} }
/* /*
...@@ -997,9 +999,10 @@ HWTEST_F(hilogtest, buff_resize_gbyte2, Function|MediumTest|Level3) ...@@ -997,9 +999,10 @@ HWTEST_F(hilogtest, buff_resize_gbyte2, Function|MediumTest|Level3)
*/ */
HWTEST_F(hilogtest, buff_resize_illegal, Function|MediumTest|Level4) HWTEST_F(hilogtest, buff_resize_illegal, Function|MediumTest|Level4)
{ {
bool ret = true;
result = ExecuteCmd("hilog -G 0"); result = ExecuteCmd("hilog -G 0");
expect = "core buffer resize fail\napp buffer resize fail\n\n"; ret = result.find("Invalid buffer size") != std::string::npos;
EXPECT_STREQ(result.c_str(), expect.c_str()); EXPECT_EQ(ret, true);
} }
/* /*
...@@ -1009,9 +1012,10 @@ HWTEST_F(hilogtest, buff_resize_illegal, Function|MediumTest|Level4) ...@@ -1009,9 +1012,10 @@ HWTEST_F(hilogtest, buff_resize_illegal, Function|MediumTest|Level4)
*/ */
HWTEST_F(hilogtest, buff_resize_illegal2, Function|MediumTest|Level3) HWTEST_F(hilogtest, buff_resize_illegal2, Function|MediumTest|Level3)
{ {
bool ret = true;
result = ExecuteCmd("hilog -G 2g"); result = ExecuteCmd("hilog -G 2g");
expect = "core buffer resize fail\napp buffer resize fail\n\n"; ret = result.find("Invalid buffer size") != std::string::npos;
EXPECT_STREQ(result.c_str(), expect.c_str()); EXPECT_EQ(ret, true);
} }
/* /*
...@@ -1086,9 +1090,10 @@ HWTEST_F(hilogtest, buff_resize_all, Function|MediumTest|Level4) ...@@ -1086,9 +1090,10 @@ HWTEST_F(hilogtest, buff_resize_all, Function|MediumTest|Level4)
*/ */
HWTEST_F(hilogtest, buff_resize_illegal_type, Function|MediumTest|Level4) HWTEST_F(hilogtest, buff_resize_illegal_type, Function|MediumTest|Level4)
{ {
bool ret = true;
result = ExecuteCmd("hilog -G 2m -t abc"); result = ExecuteCmd("hilog -G 2m -t abc");
expect = "Invalid parameter\n"; ret = result.find("Invalid log type") != std::string::npos;
EXPECT_STREQ(result.c_str(), expect.c_str()); EXPECT_EQ(ret, true);
ExeCmd("hilog -G 1m -t all"); ExeCmd("hilog -G 1m -t all");
} }
...@@ -1099,9 +1104,10 @@ HWTEST_F(hilogtest, buff_resize_illegal_type, Function|MediumTest|Level4) ...@@ -1099,9 +1104,10 @@ HWTEST_F(hilogtest, buff_resize_illegal_type, Function|MediumTest|Level4)
*/ */
HWTEST_F(hilogtest, buff_resize_illegal_type2, Function|MediumTest|Level4) HWTEST_F(hilogtest, buff_resize_illegal_type2, Function|MediumTest|Level4)
{ {
bool ret = true;
result = ExecuteCmd("hilog -G 2m -t 'core abc'"); result = ExecuteCmd("hilog -G 2m -t 'core abc'");
expect = "buffsize operation error!\n"; ret = result.find("Invalid log type") != std::string::npos;
EXPECT_STREQ(result.c_str(), expect.c_str()); EXPECT_EQ(ret, true);
ExeCmd("hilog -G 1m -t all"); ExeCmd("hilog -G 1m -t all");
} }
...@@ -1313,9 +1319,10 @@ HWTEST_F(hilogtest, statistic_info_clear_init, Function|MediumTest|Level4) ...@@ -1313,9 +1319,10 @@ HWTEST_F(hilogtest, statistic_info_clear_init, Function|MediumTest|Level4)
*/ */
HWTEST_F(hilogtest, statistic_info_query_illegal, Function|MediumTest|Level3) HWTEST_F(hilogtest, statistic_info_query_illegal, Function|MediumTest|Level3)
{ {
bool ret = true;
result = ExecuteCmd("hilog -s -t abc"); result = ExecuteCmd("hilog -s -t abc");
expect = "Invalid parameter\n"; ret = result.find("Invalid log type") != std::string::npos;
EXPECT_STREQ(result.c_str(), expect.c_str()); EXPECT_EQ(ret, true);
} }
/* /*
...@@ -1325,9 +1332,10 @@ HWTEST_F(hilogtest, statistic_info_query_illegal, Function|MediumTest|Level3) ...@@ -1325,9 +1332,10 @@ HWTEST_F(hilogtest, statistic_info_query_illegal, Function|MediumTest|Level3)
*/ */
HWTEST_F(hilogtest, statistic_info_clear_illegal, Function|MediumTest|Level4) HWTEST_F(hilogtest, statistic_info_clear_illegal, Function|MediumTest|Level4)
{ {
bool ret = true;
result = ExecuteCmd("hilog -S -t abc"); result = ExecuteCmd("hilog -S -t abc");
expect = "Invalid parameter\n"; ret = result.find("Invalid log type") != std::string::npos;
EXPECT_STREQ(result.c_str(), expect.c_str()); EXPECT_EQ(ret, true);
} }
/* /*
...@@ -1502,9 +1510,10 @@ HWTEST_F(hilogtest, log_clear_all, Function|MediumTest|Level4) ...@@ -1502,9 +1510,10 @@ HWTEST_F(hilogtest, log_clear_all, Function|MediumTest|Level4)
*/ */
HWTEST_F(hilogtest, log_clear_illegal, Function|MediumTest|Level4) HWTEST_F(hilogtest, log_clear_illegal, Function|MediumTest|Level4)
{ {
bool ret = true;
result = ExecuteCmd("hilog -r -t abc"); result = ExecuteCmd("hilog -r -t abc");
expect = "Invalid parameter\n"; ret = result.find("Invalid log type") != std::string::npos;
EXPECT_STREQ(result.c_str(), expect.c_str()); EXPECT_EQ(ret, true);
} }
/* /*
...@@ -1514,7 +1523,8 @@ HWTEST_F(hilogtest, log_clear_illegal, Function|MediumTest|Level4) ...@@ -1514,7 +1523,8 @@ HWTEST_F(hilogtest, log_clear_illegal, Function|MediumTest|Level4)
*/ */
HWTEST_F(hilogtest, log_clear_illegal2, Function|MediumTest|Level4) HWTEST_F(hilogtest, log_clear_illegal2, Function|MediumTest|Level4)
{ {
bool ret = true;
result = ExecuteCmd("hilog -r -t 'abc core'"); result = ExecuteCmd("hilog -r -t 'abc core'");
expect = "clear log operation error!\n"; ret = result.find("Invalid log type") != std::string::npos;
EXPECT_STREQ(result.c_str(), expect.c_str()); EXPECT_EQ(ret, true);
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册