提交 231192b2 编写于 作者: N nan-xiansen 提交者: 南先森

fixed 56f497b1 from https://gitee.com/nan-xiansen/xts_acts/pulls/6731

【startup_lite】L0用例优化,修改不安全函数使用.
Signed-off-by: Nnan-xiansen <nanjinbin@huawei.com>
Change-Id: I0f9ecf2174b0265c96ff91e7537400888f092ca4
上级 d77301b9
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
#define COMMON_ERROR (-1) #define COMMON_ERROR (-1)
#define INVALID_PARAMETER (-9) #define INVALID_PARAMETER (-9)
static const char* g_defSysParam = "data of sys param ***..."; static const char *g_defSysParam = "data of sys param ***...";
/** /**
* @tc.desc : register a test suite, this suite is used to test basic flow * @tc.desc : register a test suite, this suite is used to test basic flow
...@@ -61,8 +61,9 @@ static BOOL DeviceInfoFuncTestSuiteTearDown(void) ...@@ -61,8 +61,9 @@ static BOOL DeviceInfoFuncTestSuiteTearDown(void)
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetDeviceTypeFun001, testGetDeviceTypeFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetDeviceType(); {
const char *value = GetDeviceType();
printf("Device Type=%s\n", value); printf("Device Type=%s\n", value);
AssertNotEmpty(value); AssertNotEmpty(value);
}; };
...@@ -75,11 +76,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -75,11 +76,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetDeviceTypeFun002, testGetDeviceTypeFun002,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetDeviceType(); {
const char *value = GetDeviceType();
printf("Device Type=%s\n", value); printf("Device Type=%s\n", value);
TEST_ASSERT_NOT_NULL(value); TEST_ASSERT_NOT_NULL(value);
if (value != NULL) { if (value != NULL)
{
TEST_ASSERT_TRUE(strlen(value) <= 32); TEST_ASSERT_TRUE(strlen(value) <= 32);
} }
}; };
...@@ -91,8 +94,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -91,8 +94,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetManufactureFun001, testGetManufactureFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetManufacture(); {
const char *value = GetManufacture();
printf("Manufacture=%s\n", value); printf("Manufacture=%s\n", value);
AssertNotEmpty(value); AssertNotEmpty(value);
}; };
...@@ -105,11 +109,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -105,11 +109,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetManufactureFun002, testGetManufactureFun002,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetManufacture(); {
const char *value = GetManufacture();
printf("Manufacture=%s\n", value); printf("Manufacture=%s\n", value);
TEST_ASSERT_NOT_NULL(value); TEST_ASSERT_NOT_NULL(value);
if (value != NULL) { if (value != NULL)
{
TEST_ASSERT_TRUE(strlen(value) <= 32); TEST_ASSERT_TRUE(strlen(value) <= 32);
} }
}; };
...@@ -121,8 +127,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -121,8 +127,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetBrandFun001, testGetBrandFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetBrand(); {
const char *value = GetBrand();
printf("Brand=%s\n", value); printf("Brand=%s\n", value);
AssertNotEmpty(value); AssertNotEmpty(value);
}; };
...@@ -135,11 +142,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -135,11 +142,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetBrandFun002, testGetBrandFun002,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetBrand(); {
const char *value = GetBrand();
printf("Brand=%s\n", value); printf("Brand=%s\n", value);
TEST_ASSERT_NOT_NULL(value); TEST_ASSERT_NOT_NULL(value);
if (value != NULL) { if (value != NULL)
{
TEST_ASSERT_TRUE(strlen(value) <= 32); TEST_ASSERT_TRUE(strlen(value) <= 32);
} }
}; };
...@@ -151,8 +160,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -151,8 +160,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetMarketNameFun001, testGetMarketNameFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetMarketName(); {
const char *value = GetMarketName();
printf("Market Name=%s\n", value); printf("Market Name=%s\n", value);
AssertNotEmpty(value); AssertNotEmpty(value);
}; };
...@@ -165,11 +175,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -165,11 +175,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetMarketNameFun002, testGetMarketNameFun002,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetMarketName(); {
const char *value = GetMarketName();
printf("Market Name=%s\n", value); printf("Market Name=%s\n", value);
TEST_ASSERT_NOT_NULL(value); TEST_ASSERT_NOT_NULL(value);
if (value != NULL) { if (value != NULL)
{
TEST_ASSERT_TRUE(strlen(value) <= 32); TEST_ASSERT_TRUE(strlen(value) <= 32);
} }
}; };
...@@ -181,8 +193,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -181,8 +193,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetProductSeriesFun001, testGetProductSeriesFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetProductSeries(); {
const char *value = GetProductSeries();
printf("Product Series=%s\n", value); printf("Product Series=%s\n", value);
AssertNotEmpty(value); AssertNotEmpty(value);
}; };
...@@ -195,11 +208,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -195,11 +208,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetProductSeriesFun002, testGetProductSeriesFun002,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetProductSeries(); {
const char *value = GetProductSeries();
printf("Product Series=%s\n", value); printf("Product Series=%s\n", value);
TEST_ASSERT_NOT_NULL(value); TEST_ASSERT_NOT_NULL(value);
if (value != NULL) { if (value != NULL)
{
TEST_ASSERT_TRUE(strlen(value) <= 32); TEST_ASSERT_TRUE(strlen(value) <= 32);
} }
}; };
...@@ -211,8 +226,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -211,8 +226,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetProductModelFun001, testGetProductModelFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetProductModel(); {
const char *value = GetProductModel();
printf("Product Model=%s\n", value); printf("Product Model=%s\n", value);
AssertNotEmpty(value); AssertNotEmpty(value);
}; };
...@@ -225,11 +241,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -225,11 +241,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetProductModelFun002, testGetProductModelFun002,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetProductModel(); {
const char *value = GetProductModel();
printf("Product Model=%s\n", value); printf("Product Model=%s\n", value);
TEST_ASSERT_NOT_NULL(value); TEST_ASSERT_NOT_NULL(value);
if (value != NULL) { if (value != NULL)
{
TEST_ASSERT_TRUE(strlen(value) <= 32); TEST_ASSERT_TRUE(strlen(value) <= 32);
} }
}; };
...@@ -241,8 +259,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -241,8 +259,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetHardwareModel001, testGetHardwareModel001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetHardwareModel(); {
const char *value = GetHardwareModel();
printf("Hardware Model=%s\n", value); printf("Hardware Model=%s\n", value);
AssertNotEmpty(value); AssertNotEmpty(value);
}; };
...@@ -255,11 +274,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -255,11 +274,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetHardwareModel002, testGetHardwareModel002,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetHardwareModel(); {
const char *value = GetHardwareModel();
printf("Hardware Model=%s\n", value); printf("Hardware Model=%s\n", value);
TEST_ASSERT_NOT_NULL(value); TEST_ASSERT_NOT_NULL(value);
if (value != NULL) { if (value != NULL)
{
TEST_ASSERT_TRUE(strlen(value) <= 32); TEST_ASSERT_TRUE(strlen(value) <= 32);
} }
}; };
...@@ -271,8 +292,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -271,8 +292,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetSerialFun001, testGetSerialFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetSerial(); {
const char *value = GetSerial();
printf("Serial=%s\n", value); printf("Serial=%s\n", value);
AssertNotEmpty(value); AssertNotEmpty(value);
}; };
...@@ -285,11 +307,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -285,11 +307,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetSerialFun002, testGetSerialFun002,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetSerial(); {
const char *value = GetSerial();
printf("Serial=%s\n", value); printf("Serial=%s\n", value);
TEST_ASSERT_NOT_NULL(value); TEST_ASSERT_NOT_NULL(value);
if (value != NULL) { if (value != NULL)
{
TEST_ASSERT_TRUE(strlen(value) <= 64); TEST_ASSERT_TRUE(strlen(value) <= 64);
} }
}; };
...@@ -301,8 +325,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -301,8 +325,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetOSFullNameFun001, testGetOSFullNameFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetOSFullName(); {
const char *value = GetOSFullName();
printf("Os Name=%s\n", value); printf("Os Name=%s\n", value);
AssertNotEmpty(value); AssertNotEmpty(value);
}; };
...@@ -315,11 +340,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -315,11 +340,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetOSFullNameFun002, testGetOSFullNameFun002,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetOSFullName(); {
const char *value = GetOSFullName();
printf("Os Name=%s\n", value); printf("Os Name=%s\n", value);
TEST_ASSERT_NOT_NULL(value); TEST_ASSERT_NOT_NULL(value);
if (value != NULL) { if (value != NULL)
{
TEST_ASSERT_TRUE(strlen(value) <= 64); TEST_ASSERT_TRUE(strlen(value) <= 64);
} }
}; };
...@@ -331,8 +358,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -331,8 +358,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetDisplayVersionFun001, testGetDisplayVersionFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetDisplayVersion(); {
const char *value = GetDisplayVersion();
printf("Display Version=%s\n", value); printf("Display Version=%s\n", value);
AssertNotEmpty(value); AssertNotEmpty(value);
}; };
...@@ -345,11 +373,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -345,11 +373,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetDisplayVersionFun002, testGetDisplayVersionFun002,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetDisplayVersion(); {
const char *value = GetDisplayVersion();
printf("Display Version=%s\n", value); printf("Display Version=%s\n", value);
TEST_ASSERT_NOT_NULL(value); TEST_ASSERT_NOT_NULL(value);
if (value != NULL) { if (value != NULL)
{
TEST_ASSERT_TRUE(strlen(value) <= 64); TEST_ASSERT_TRUE(strlen(value) <= 64);
} }
}; };
...@@ -361,8 +391,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -361,8 +391,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetBootloaderVersionFun001, testGetBootloaderVersionFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetBootloaderVersion(); {
const char *value = GetBootloaderVersion();
printf("Bootloader Version=%s\n", value); printf("Bootloader Version=%s\n", value);
AssertNotEmpty(value); AssertNotEmpty(value);
}; };
...@@ -375,11 +406,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -375,11 +406,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetBootloaderVersionFun002, testGetBootloaderVersionFun002,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetBootloaderVersion(); {
const char *value = GetBootloaderVersion();
printf("Bootloader Version=%s\n", value); printf("Bootloader Version=%s\n", value);
TEST_ASSERT_NOT_NULL(value); TEST_ASSERT_NOT_NULL(value);
if (value != NULL) { if (value != NULL)
{
TEST_ASSERT_TRUE(strlen(value) <= 64); TEST_ASSERT_TRUE(strlen(value) <= 64);
} }
}; };
...@@ -391,8 +424,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -391,8 +424,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetSecurityPatchTagFun001, testGetSecurityPatchTagFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetSecurityPatchTag(); {
const char *value = GetSecurityPatchTag();
printf("Secure Patch Level=%s\n", value); printf("Secure Patch Level=%s\n", value);
AssertNotEmpty(value); AssertNotEmpty(value);
}; };
...@@ -405,11 +439,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -405,11 +439,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetSecurityPatchTagFun002, testGetSecurityPatchTagFun002,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetSecurityPatchTag(); {
const char *value = GetSecurityPatchTag();
printf("Secure Patch Level=%s\n", value); printf("Secure Patch Level=%s\n", value);
TEST_ASSERT_NOT_NULL(value); TEST_ASSERT_NOT_NULL(value);
if (value != NULL) { if (value != NULL)
{
TEST_ASSERT_TRUE(strlen(value) <= 64); TEST_ASSERT_TRUE(strlen(value) <= 64);
} }
}; };
...@@ -422,12 +458,18 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -422,12 +458,18 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetSecurityPatchTagFun003, testGetSecurityPatchTagFun003,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetSecurityPatchTag(); {
const char *value = GetSecurityPatchTag();
printf("Secure Patch Level=%s\n", value); printf("Secure Patch Level=%s\n", value);
int year, month, day; int year, month, day;
sscanf(value, "%04d-%02d-%02d", &year, &month, &day); const int RET_SUCCESS = 0;
int ret = sscanf_s(value, "%04d-%02d-%02d", &year, &month, &day);
if (ret < RET_SUCCESS)
{
TEST_ASSERT_TRUE(ret >= 0);
}
printf("%04d-%02d-%02d\n", year, month, day); printf("%04d-%02d-%02d\n", year, month, day);
TEST_ASSERT_TRUE(year > 1900 && year < 2056); TEST_ASSERT_TRUE(year > 1900 && year < 2056);
...@@ -435,7 +477,11 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -435,7 +477,11 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
TEST_ASSERT_TRUE(day <= 31 && day > 0); TEST_ASSERT_TRUE(day <= 31 && day > 0);
char str[10] = {0}; char str[10] = {0};
sprintf(str, "%d-%02d-%02d", year, month, day); ret = sprintf_s(str, strlen(str), "%d-%02d-%02d", year, month, day);
if (ret < RET_SUCCESS)
{
TEST_ASSERT_TRUE(ret >= 0);
}
printf("str=%s\n", str); printf("str=%s\n", str);
TEST_ASSERT_EQUAL_STRING(str, value); TEST_ASSERT_EQUAL_STRING(str, value);
}; };
...@@ -447,8 +493,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -447,8 +493,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetAbiListFun001, testGetAbiListFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetAbiList(); {
const char *value = GetAbiList();
printf("Abi List=%s\n", value); printf("Abi List=%s\n", value);
AssertNotEmpty(value); AssertNotEmpty(value);
}; };
...@@ -461,11 +508,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -461,11 +508,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetAbiListFun002, testGetAbiListFun002,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetAbiList(); {
const char *value = GetAbiList();
printf("Abi List=%s\n", value); printf("Abi List=%s\n", value);
TEST_ASSERT_NOT_NULL(value); TEST_ASSERT_NOT_NULL(value);
if (value != NULL) { if (value != NULL)
{
TEST_ASSERT_TRUE(strlen(value) <= 64); TEST_ASSERT_TRUE(strlen(value) <= 64);
} }
}; };
...@@ -477,7 +526,8 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -477,7 +526,8 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetSdkApiVersionFun001, testGetSdkApiVersionFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
{
int value = GetSdkApiVersion(); int value = GetSdkApiVersion();
printf("Sdk Api Level=%d\n", value); printf("Sdk Api Level=%d\n", value);
TEST_ASSERT_TRUE(value > 0); TEST_ASSERT_TRUE(value > 0);
...@@ -490,7 +540,8 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -490,7 +540,8 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetFirstApiVersionFun001, testGetFirstApiVersionFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
{
int value = GetFirstApiVersion(); int value = GetFirstApiVersion();
printf("First Api Level=%d\n", value); printf("First Api Level=%d\n", value);
TEST_ASSERT_TRUE(value > 0); TEST_ASSERT_TRUE(value > 0);
...@@ -503,8 +554,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -503,8 +554,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetIncrementalVersionFun001, testGetIncrementalVersionFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetIncrementalVersion(); {
const char *value = GetIncrementalVersion();
printf("Incremental Version=%s\n", value); printf("Incremental Version=%s\n", value);
AssertNotEmpty(value); AssertNotEmpty(value);
}; };
...@@ -516,8 +568,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -516,8 +568,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetVersionIdFun001, testGetVersionIdFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetVersionId(); {
const char *value = GetVersionId();
printf("Version Id=%s\n", value); printf("Version Id=%s\n", value);
AssertNotEmpty(value); AssertNotEmpty(value);
}; };
...@@ -530,11 +583,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -530,11 +583,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetVersionIdFun002, testGetVersionIdFun002,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetVersionId(); {
const char *value = GetVersionId();
printf("Version Id=%s\n", value); printf("Version Id=%s\n", value);
TEST_ASSERT_NOT_NULL(value); TEST_ASSERT_NOT_NULL(value);
if (value != NULL) { if (value != NULL)
{
TEST_ASSERT_TRUE(strlen(value) <= 127); TEST_ASSERT_TRUE(strlen(value) <= 127);
} }
}; };
...@@ -546,8 +601,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -546,8 +601,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetBuildTypeFun001, testGetBuildTypeFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetBuildType(); {
const char *value = GetBuildType();
printf("Build Type=%s\n", value); printf("Build Type=%s\n", value);
AssertNotEmpty(value); AssertNotEmpty(value);
}; };
...@@ -560,11 +616,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -560,11 +616,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetBuildTypeFun002, testGetBuildTypeFun002,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetBuildType(); {
const char *value = GetBuildType();
printf("Build Type=%s\n", value); printf("Build Type=%s\n", value);
TEST_ASSERT_NOT_NULL(value); TEST_ASSERT_NOT_NULL(value);
if (value != NULL) { if (value != NULL)
{
TEST_ASSERT_TRUE(strlen(value) <= 32); TEST_ASSERT_TRUE(strlen(value) <= 32);
} }
}; };
...@@ -576,8 +634,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -576,8 +634,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetBuildUserFun001, testGetBuildUserFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetBuildUser(); {
const char *value = GetBuildUser();
printf("Build User=%s\n", value); printf("Build User=%s\n", value);
AssertNotEmpty(value); AssertNotEmpty(value);
}; };
...@@ -590,11 +649,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -590,11 +649,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetBuildUserFun002, testGetBuildUserFun002,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetBuildUser(); {
const char *value = GetBuildUser();
printf("Build User=%s\n", value); printf("Build User=%s\n", value);
TEST_ASSERT_NOT_NULL(value); TEST_ASSERT_NOT_NULL(value);
if (value != NULL) { if (value != NULL)
{
TEST_ASSERT_TRUE(strlen(value) <= 32); TEST_ASSERT_TRUE(strlen(value) <= 32);
} }
}; };
...@@ -606,8 +667,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -606,8 +667,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetBuildHostFun001, testGetBuildHostFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetBuildHost(); {
const char *value = GetBuildHost();
printf("Build Host=%s\n", value); printf("Build Host=%s\n", value);
AssertNotEmpty(value); AssertNotEmpty(value);
}; };
...@@ -620,11 +682,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -620,11 +682,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetBuildHostFun002, testGetBuildHostFun002,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetBuildHost(); {
const char *value = GetBuildHost();
printf("Build Host=%s\n", value); printf("Build Host=%s\n", value);
TEST_ASSERT_NOT_NULL(value); TEST_ASSERT_NOT_NULL(value);
if (value != NULL) { if (value != NULL)
{
TEST_ASSERT_TRUE(strlen(value) <= 32); TEST_ASSERT_TRUE(strlen(value) <= 32);
} }
}; };
...@@ -636,8 +700,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -636,8 +700,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetBuildTimeFun001, testGetBuildTimeFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetBuildTime(); {
const char *value = GetBuildTime();
printf("Build Time=%s\n", value); printf("Build Time=%s\n", value);
AssertNotEmpty(value); AssertNotEmpty(value);
}; };
...@@ -650,11 +715,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -650,11 +715,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetBuildTimeFun002, testGetBuildTimeFun002,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetBuildTime(); {
const char *value = GetBuildTime();
printf("Build Time=%s\n", value); printf("Build Time=%s\n", value);
TEST_ASSERT_NOT_NULL(value); TEST_ASSERT_NOT_NULL(value);
if (value != NULL) { if (value != NULL)
{
TEST_ASSERT_TRUE(strlen(value) <= 32); TEST_ASSERT_TRUE(strlen(value) <= 32);
} }
}; };
...@@ -666,8 +733,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -666,8 +733,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetSoftwareModelFun001, testGetSoftwareModelFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetSoftwareModel(); {
const char *value = GetSoftwareModel();
printf("Software Model=%s\n", value); printf("Software Model=%s\n", value);
AssertNotEmpty(value); AssertNotEmpty(value);
}; };
...@@ -680,11 +748,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -680,11 +748,13 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetSoftwareModelFun002, testGetSoftwareModelFun002,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetSoftwareModel(); {
const char *value = GetSoftwareModel();
printf("Software Model=%s\n", value); printf("Software Model=%s\n", value);
TEST_ASSERT_NOT_NULL(value); TEST_ASSERT_NOT_NULL(value);
if (value != NULL) { if (value != NULL)
{
TEST_ASSERT_TRUE(strlen(value) <= 32); TEST_ASSERT_TRUE(strlen(value) <= 32);
} }
}; };
...@@ -696,8 +766,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -696,8 +766,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetBuildRootHashFun001, testGetBuildRootHashFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetBuildRootHash(); {
const char *value = GetBuildRootHash();
printf("Build Root Hash=%s\n", value); printf("Build Root Hash=%s\n", value);
TEST_ASSERT_NOT_NULL(value); TEST_ASSERT_NOT_NULL(value);
}; };
...@@ -709,8 +780,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite, ...@@ -709,8 +780,9 @@ LITE_TEST_CASE(DeviceInfoFuncTestSuite,
*/ */
LITE_TEST_CASE(DeviceInfoFuncTestSuite, LITE_TEST_CASE(DeviceInfoFuncTestSuite,
testGetHardwareProfileFun001, testGetHardwareProfileFun001,
Function | MediumTest | Level1) { Function | MediumTest | Level1)
const char* value = GetHardwareProfile(); {
const char *value = GetHardwareProfile();
printf("Hardware Profile=%s\n", value); printf("Hardware Profile=%s\n", value);
AssertNotEmpty(value); AssertNotEmpty(value);
}; };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册