DeviceInfoJsUnit.test.js 48.2 KB
Newer Older
L
luozhewen 已提交
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 821 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 850 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 880 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 908 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 937 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 968 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 996 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 1025 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 1056 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 1085 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 1116 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 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 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 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266
/*
 * 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.
 */

// @ts-nocheck
import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from 'deccjsunit/index'
import deviceinfo from '@ohos.deviceInfo'

describe('DeviceInfoTest', function () {

    beforeAll(function () {
        console.info('beforeAll: Prerequisites at the test suite level, which are executed before the test suite is executed.');

    })

    beforeEach(function () {
        console.info('beforeEach: Prerequisites at the test case level, which are executed before each test case is executed.');

    })
    afterEach(function () {
        console.info('afterEach: Test case-level clearance conditions, which are executed after each test case is executed.');

    })
    afterAll(function () {
        console.info('afterAll: Test suite-level cleanup condition, which is executed after the test suite is executed');

    })

    console.info('start################################start');
    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0100
     * @tc.name      testGetDeviceType01
     * @tc.desc      Get a string representing the device type.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_001', 0, function () {
        console.info('device_info_test_001 start');
		var ret = false;
        var deviceTypeInfo = deviceinfo.deviceType;
        console.info('the value of the deviceType is :' + deviceTypeInfo);

        expect(deviceTypeInfo).assertInstanceOf('String');
        if (deviceTypeInfo !="" && deviceTypeInfo != null && deviceTypeInfo != undefined) {
            ret = true;
        }
        expect(ret).assertTrue()        
        console.info('device_info_test_001 : end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0200
     * @tc.name     testGetManufacture01
     * @tc.desc      Get the manufacture name represented by a string.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_002', 0, function () {
        console.info('device_info_test_002 start');
		var ret = false;
        var manufactureInfo = deviceinfo.manufacture;        
        console.info('the value of the manufactureInfo is :' + manufactureInfo);

        expect(manufactureInfo).assertInstanceOf('String');
        if (manufactureInfo !="" && manufactureInfo != null && manufactureInfo != undefined){
            ret = true;
        }
        expect(ret).assertTrue();		
        console.info('device_info_test_002 :end');
    })
    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0300
     * @tc.name     testGetProductBrand01
     * @tc.desc      Get the product brand represented by a string.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_003', 0, function () {
        console.info('testGetProductBrand01 start');
		var ret = false;
        var brandInfo = deviceinfo.brand;
        console.info('the value of the deviceinfo brand is :' + brandInfo);

        expect(brandInfo).assertInstanceOf('String');
        if (brandInfo !="" && brandInfo != null && brandInfo != undefined){
            ret = true;
        }
        expect(ret).assertTrue();        
        console.info('testGetProductBrand01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0400
     * @tc.name     testGetMarketName01
     * @tc.desc      Get the external product family name represented by a string.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_004', 0, function () {
        console.info('testGetMarketName01 start')
		var ret = false;
        var marketNameInfo = deviceinfo.marketName;
        console.info('the value of the deviceinfo marketName is :' + marketNameInfo);

        expect(marketNameInfo).assertInstanceOf('String');
        if(marketNameInfo !="" && marketNameInfo != null && marketNameInfo != undefined){
            ret = true;
        }
        expect(ret).assertTrue();        
        console.info('testGetMarketName01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0500
     * @tc.name     testGetProductSeries01
     * @tc.desc      Get the product series represented by a string.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_005', 0, function () {
        console.info('testGetProductSeries01 start');
        var ret = false;		
        var productSeriesInfo = deviceinfo.productSeries;
        console.info('the value of the deviceinfo productSeries is :' + productSeriesInfo);

        expect(productSeriesInfo).assertInstanceOf('String');
        if(productSeriesInfo !="" && productSeriesInfo != null && productSeriesInfo != undefined){
            ret = true;
        }
        expect(ret).assertTrue();		
        console.info('testGetProductSeries01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0600
     * @tc.name     testGetProductModel01
     * @tc.desc      Get the internal software sub-model represented by a string.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_006', 0, function () {
        console.info('testGetProductModel01 start');
        var ret = false;		
        var productModelInfo = deviceinfo.productModel;
        console.info('the value of the deviceinfo productModel is :' + productModelInfo);

        expect(productModelInfo).assertInstanceOf('String');
        if(productModelInfo !="" && productModelInfo != null && productModelInfo != undefined){
            ret =true;
        }
		expect(ret).assertTrue();
        console.info('testGetProductModel01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0700
     * @tc.name     testGetSoftwareModel01
     * @tc.desc      Get the internal software sub-model represented by a string.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_007', 0, function () {
        console.info('testGetSoftwareModel01 start');
        var ret = false;		
        var softwareModelInfo = deviceinfo.softwareModel;
        console.info('the value of the deviceinfo softwareModel is :' + softwareModelInfo);

        expect(softwareModelInfo).assertInstanceOf('String');
        if(softwareModelInfo !="" && softwareModelInfo != null && softwareModelInfo != undefined){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetSoftwareModel01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0800
     * @tc.name     testGetHardWareModel01
     * @tc.desc      Get the hardware version represented by a string.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_008', 0, function () {
        console.info('testGetHardWareModel01 start');
        var ret = false;		
        var hardwareModelInfo = deviceinfo.hardwareModel;
        console.info('the value of the deviceinfo hardwareModel is :' + hardwareModelInfo);

        expect(hardwareModelInfo).assertInstanceOf('String');
        if(hardwareModelInfo !="" && hardwareModelInfo != null && hardwareModelInfo != undefined){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetHardWareModel01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0900
     * @tc.name     testGetHardWareProfile01
     * @tc.desc      Get the hardware profile represented by a string.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_009', 0, function () {
        console.info('testGetHardWareProfile01 start');
        var ret = false;		
        var hardwareProfileInfo = deviceinfo.hardwareProfile;
        console.info('the value of the deviceinfo hardwareProfile is :' + hardwareProfileInfo);

        expect(hardwareProfileInfo).assertInstanceOf('String');
        if(hardwareProfileInfo !="" && hardwareProfileInfo != null && hardwareProfileInfo != undefined){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetHardWareProfile01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0110
     * @tc.name     testGetSerial01
     * @tc.desc      Get the device serial number represented by a string.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_010', 0, function () {
        console.info('testGetSerial01 start');
        var ret = false;        
        var serialInfo = deviceinfo.serial;
        console.info('the value of the deviceinfo serial is :' + serialInfo);

        expect(serialInfo).assertInstanceOf('String');
        if(serialInfo !="" && serialInfo != null && serialInfo != undefined){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetSerial01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0120
     * @tc.name     testGetBootLoaderVersion01
     * @tc.desc      Get the bootloader version number represented by a string.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_011', 0, function () {
        console.info('testGetBootLoaderVersion01 start');
        var ret = false;		
        var bootloaderVersionInfo = deviceinfo.bootloaderVersion;
        console.info('the value of the deviceinfo bootloaderVersion is :' + bootloaderVersionInfo);

        expect(bootloaderVersionInfo).assertInstanceOf('String');
        if(bootloaderVersionInfo !="" && bootloaderVersionInfo != null && bootloaderVersionInfo != undefined){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetBootLoaderVersion01 :end')
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0130
     * @tc.name     testGetabiList01
     * @tc.desc      Get the instruction set supported by the system.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_012', 0, function () {
        console.info('testGetabiList01 start');
        var ret = false;		
        var abiListInfo = deviceinfo.abiList;
        console.info('the value of the deviceinfo abiList is :' + abiListInfo);

        expect(abiListInfo).assertInstanceOf('String');
        if(abiListInfo !="" && abiListInfo != null && abiListInfo != undefined){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetabiList01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0140
     * @tc.name     testGetabiList01
     * @tc.desc      Get the security patch level represented by a string.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_013', 0, function () {
        console.info('testGetSecurityPatchTag01 start');
        var ret = false;		
        var securityPatchTagInfo = deviceinfo.securityPatchTag;
        console.info('the value of the deviceinfo securityPatchTag is :' + securityPatchTagInfo);

        expect(securityPatchTagInfo).assertInstanceOf('String');
        if(securityPatchTagInfo !="" && securityPatchTagInfo != null && securityPatchTagInfo != undefined){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetSecurityPatchTag01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0150
     * @tc.name     testGetabiList01
     * @tc.desc      Get the version number visible to users represented by a string.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_014', 0, function () {
        console.info('testGetDisplayVersion01 start');
        var ret = false;		
        var displayVersionInfo = deviceinfo.displayVersion;
        console.info('the value of the deviceinfo displayVersion is :' + displayVersionInfo);

        expect(displayVersionInfo).assertInstanceOf('String');
        if(displayVersionInfo !="" && displayVersionInfo != null && displayVersionInfo != undefined){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetDisplayVersion01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0160
     * @tc.name     testGetIncrementalVersion01
     * @tc.desc      Get the difference version number represented by a string.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_015', 0, function () {
        console.info('testGetIncrementalVersion01 start');
		var ret = false;
        var incrementalVersionInfo = deviceinfo.incrementalVersion;
        console.info('the value of the deviceinfo incrementalVersion is :' + incrementalVersionInfo);

        expect(incrementalVersionInfo).assertInstanceOf('String');
        if(incrementalVersionInfo !="" && incrementalVersionInfo != null && incrementalVersionInfo != undefined){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetIncrementalVersion01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0170
     * @tc.name     testGetOSReleaserType01
     * @tc.desc      Get the OS release type.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_016', 0, function () {
        console.info('testGetOSReleaserType01 start');
        var ret = false;		
        var osReleaseTypeInfo = deviceinfo.osReleaseType;
        console.info('the value of the deviceinfo osReleaseType is :' + osReleaseTypeInfo);

        expect(osReleaseTypeInfo).assertInstanceOf('String');
        if(osReleaseTypeInfo !="" && osReleaseTypeInfo != null && osReleaseTypeInfo != undefined){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetOSReleaserType01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0180
     * @tc.name     testGetOSFullName01
     * @tc.desc      Get the operating system full name.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_017', 0, function () {
        console.info('testGetOSFullName01 start');
        var ret = false;
        var osFullNameInfo = deviceinfo.osFullName;
        console.info('the value of the deviceinfo osFullName is :' + osFullNameInfo);

        expect(osFullNameInfo).assertInstanceOf('String');
        if(osFullNameInfo !="" && osFullNameInfo != null && osFullNameInfo != undefined){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetOSFullName01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0190
     * @tc.name     testGetMajorVersion01
     * @tc.desc      Get the major (M) version number, which increases with any updates to the overall architecture.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_018', 0, function () {
        console.info('testGetMajorVersion01 start');
		var ret = false;
        var majorVersionInfo = deviceinfo.majorVersion;
        console.info('the value of the deviceinfo majorVersion is :' + majorVersionInfo);

        expect(majorVersionInfo).assertInstanceOf('Number');
        if(majorVersionInfo >= 0){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetMajorVersion01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0210
     * @tc.name     testGetSeniorVersion01
     * @tc.desc      Get the senior (S) version number, which increases with any updates to the partial.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_019', 0, function () {
        console.info('testGetSeniorVersion01 start');
		var ret = false;
        var seniorVersionInfo = deviceinfo.seniorVersion;
        console.info('the value of the deviceinfo seniorVersion is :' + seniorVersionInfo);

        expect(seniorVersionInfo).assertInstanceOf('Number');
        if(seniorVersionInfo >= 0){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetSeniorVersion01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0220
     * @tc.name     testGetFeatureVersion01
     * @tc.desc      Get the feature (F) version number, which increases with any planned new features.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_020', 0, function () {
        console.info('testGetFeatureVersion01 start');
		var ret = false;
        var featureVersionInfo = deviceinfo.featureVersion;
        console.info('the value of the deviceinfo featureVersion is :' + featureVersionInfo);

        expect(featureVersionInfo).assertInstanceOf('Number');
        if(featureVersionInfo >= 0){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetFeatureVersion01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0230
     * @tc.name     testGetBuildVersion01
     * @tc.desc      Get the build (B) version number, which increases with each new development build.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_021', 0, function () {
        console.info('testGetBuildVersion01 start');
		var ret = false;
        var buildVersionInfo = deviceinfo.buildVersion;
        console.info('the value of the deviceinfo buildVersion is :' + buildVersionInfo);

        expect(buildVersionInfo).assertInstanceOf('Number');
        if(buildVersionInfo >= 0){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetBuildVersion01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0240
     * @tc.name     testGetSdkApiVersion01
     * @tc.desc      Get the API version number.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_022', 0, function () {
        console.info('testGetSdkApiVersion01 start');
		var ret = false;
        var sdkApiVersionInfo = deviceinfo.sdkApiVersion;
        console.info('the value of the deviceinfo sdkApiVersion is :' + sdkApiVersionInfo);

        expect(sdkApiVersionInfo).assertInstanceOf('Number');
        if(sdkApiVersionInfo >= 0){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetSdkApiVersion01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0250
     * @tc.name     testGetFirstApiVersion01
     * @tc.desc      Get the first API version number.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_023', 0, function () {
        console.info('testGetFirstApiVersion01 start');
		var ret = true;
        var firstApiVersionInfo = deviceinfo.firstApiVersion;
        console.info('the value of the deviceinfo firstApiVersion is :' + firstApiVersionInfo);

        expect(firstApiVersionInfo).assertInstanceOf('Number');
        if(firstApiVersionInfo >= 0){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetFirstApiVersion01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0260
     * @tc.name     testGetVersionId01
     * @tc.desc      Get the version ID number.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_024', 0, function () {
        console.info('testGetVersionId01 start');
		var ret = false;
        var versionIdInfo = deviceinfo.versionId;
        console.info('the value of the deviceinfo versionId is :' + versionIdInfo);

        expect(versionIdInfo).assertInstanceOf('String');
        if(versionIdInfo !="" && versionIdInfo != null && versionIdInfo != undefined){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetVersionId01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0270
     * @tc.name     testGetBuildType01
     * @tc.desc      Get the different build types of the same baseline code.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_025', 0, function () {
        console.info('testGetBuildType01 start');
		var ret = false;
        var buildTypeInfo = deviceinfo.buildType;
        console.info('the value of the deviceinfo buildType is :' + buildTypeInfo);

        expect(buildTypeInfo).assertInstanceOf('String');
        if(buildTypeInfo !="" && buildTypeInfo != null && buildTypeInfo != undefined){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetBuildType01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0280
     * @tc.name     testGetBuildUser01
     * @tc.desc      Get the different build user of the same baseline code.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_026', 0, function () {
        console.info('testGetBuildUser01 start');
		var ret = true;
        var buildUserInfo = deviceinfo.buildUser;
        console.info('the value of the deviceinfo buildUser is :' + buildUserInfo);

        expect(buildUserInfo).assertInstanceOf('String');
        if(buildUserInfo !="" && buildUserInfo != null && buildUserInfo != undefined){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetBuildUser01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0290
     * @tc.name     testGetBuildHost01
     * @tc.desc      Get the different build host of the same baseline code.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_027', 0, function () {
        console.info('testGetBuildHost01 start');
		var ret = false;
        var buildHostInfo = deviceinfo.buildHost;
        console.info('the value of the deviceinfo buildHost is :' + buildHostInfo);

        expect(buildHostInfo).assertInstanceOf('String');
        if(buildHostInfo !="" && buildHostInfo != null && buildHostInfo != undefined){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetBuildHost01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0310
     * @tc.name     testGetBuildTime01
     * @tc.desc      Get the the build time.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_028', 0, function () {
        console.info('testGetBuildTime01 start');
		var ret = false;
        var buildTimeInfo = deviceinfo.buildTime;
        console.info('the value of the deviceinfo buildTime is :' + buildTimeInfo);

        expect(buildTimeInfo).assertInstanceOf('String');
        if(buildTimeInfo !="" && buildTimeInfo != null && buildTimeInfo != undefined){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetBuildTime01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0320
     * @tc.name     testGetBuildRootHash01
     * @tc.desc      Get the version hash.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_029', 0, function () {
        console.info('testGetBuildRootHash01 start');
		var ret = false;
        var buildRootHashInfo = deviceinfo.buildRootHash;
        console.info('the value of the deviceinfo buildRootHash is :' + buildRootHashInfo);

        expect(buildRootHashInfo).assertInstanceOf('String');
        if(buildRootHashInfo !="" && buildRootHashInfo != null && buildRootHashInfo != undefined){
            ret = true;
        }
		expect(ret).assertTrue();
        console.info('testGetBuildRootHash01 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0330
     * @tc.name      testGetDeviceType02
     * @tc.desc      Get a string representing the device type which has a maximum of 32 characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_030', 0, function () {
        console.info('device_info_test_030 start');
        var deviceTypeInfo = deviceinfo.deviceType;
        console.info('the value of the deviceinfo deviceType is:' + deviceTypeInfo);

        let len = deviceTypeInfo.length
         
        console.info('the value of the device type characters:' + len);
        expect(len).assertLess(33)
        console.info('device_info_test_030 :end')
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0340
     * @tc.name      testGetManufacture02
     * @tc.desc      Get a string representing the manufacture which has a maximum of 32 characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_031', 0, function () {
        console.info('device_info_test_031 start');
        var manufactureInfo = deviceinfo.manufacture;
        console.info('the value of the deviceinfo manufacture is :' + manufactureInfo);

        let len = manufactureInfo.length
        console.info('the value of the manufacture characters is :' + len);
        expect(len).assertLess(33)
        console.info('device_info_test_031 :end')
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0350
     * @tc.name      testGetProductBrand02
     * @tc.desc      Get a string representing the external product family name which has a maximum of 32 characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_032', 0, function () {
        console.info('device_info_test_032 start');
        var brandInfo = deviceinfo.brand;
        console.info('the value of the deviceinfo brand is :' + brandInfo);

        let len = brandInfo.length
        console.info('the value of the external product family name characters is :' + len);
        expect(len).assertLess(33)
        console.info('device_info_test_032 :end')
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0360
     * @tc.name      testGetMarketName02
     * @tc.desc      Get a string representing the product series which has a maximum of 32 characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_033', 0, function () {
        console.info('device_info_test_033 start');
        var marketNameInfo = deviceinfo.marketName;
        console.info('the value of the deviceinfo marketName is :' + marketNameInfo);

        let len = marketNameInfo.length
        console.info('the value of the product series characters is :' + len);
        expect(len).assertLess(32)
        console.info('device_info_test_033 :end')
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0370
     * @tc.name      testGetProductSeries02
     * @tc.desc      Get a string representing the product series which has a maximum of 32 characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_034', 0, function () {
        console.info('device_info_test_034 start');
        var productSeriesInfo = deviceinfo.productSeries;
        console.info('the value of the deviceinfo  productSeries is :' + productSeriesInfo);

        let len = productSeriesInfo.length
        console.info('the value of the product series characters is :' + len);
        expect(len).assertLess(33)
        console.info('device_info_test_034 :end')
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0380
     * @tc.name      testGetProductModel02
     * @tc.desc      Get a string representing the certified model which has a maximum of 32 characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_035', 0, function () {
        console.info('device_info_test_035 start');
        var productModelInfo = deviceinfo.productModel;
        console.info('the value of the deviceinfo productModel is :' + productModelInfo);

        let len = productModelInfo.length
        console.info('the value of the certified model characters is :' + len);
        expect(len).assertLess(33)
        console.info('device_info_test_035 :end')
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0390
     * @tc.name      testGetSoftwareModel02
     * @tc.desc      Get a string representing the internal software sub-model which has a maximum of 32 characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_036', 0, function () {
        console.info('device_info_test_036 start');
        var softwareModelInfo = deviceinfo.softwareModel;
        console.info('the value of the deviceinfo softwareModel is :' + softwareModelInfo);

        let len = softwareModelInfo.length
        console.info('the value of the internal software sub-model characters is :' + len);
        expect(len).assertLess(33)
        console.info('device_info_test_036 :end')
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0410
     * @tc.name      testGetHardwareModel02
     * @tc.desc      Get a string representing the hardware version which has a maximum of 32 characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_037', 0, function () {
        console.info('device_info_test_037 start');
        var hardwareModelInfo = deviceinfo.hardwareModel;
        console.info('the value of the deviceinfo hardwareModel is :' + hardwareModelInfo);

        let len = hardwareModelInfo.length;
        console.info('the value of the hardware version characters is :' + len);
        expect(len).assertLess(33)
        console.info('device_info_test_037 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0420
     * @tc.name      testGetHardwareProfile02
     * @tc.desc      Get a string representing the hardware version which has a maximum of 1000 characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_038', 0, function () {
        console.info('device_info_test_038 start');
        var hardwareProfileInfo = deviceinfo.hardwareProfile;
        console.info('the value of the deviceinfo hardwareProfile is :' + hardwareProfileInfo);

        let len = hardwareProfileInfo.length;
        console.info('the value of the hardware version characters is :' + len);
        expect(len).assertLess(1001);
        console.info('device_info_test_038 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0430
     * @tc.name      testGetSerial02
     * @tc.desc      Get a string representing the device serial number which has a maximum of 64 characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_039', 0, function () {
        console.info('device_info_test_039 start');
        var serialInfo = deviceinfo.serial;
        console.info('the value of the deviceinfo serial is :' + serialInfo);

        let len = serialInfo.length;
        console.info('the value of the device serial number characters is :' + len);
        expect(len).assertLess(65);
        console.info('device_info_test_039 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0440
     * @tc.name      testGetDisplayVersion02
     * @tc.desc      Get a string representing the version number visible to users which has a maximum of 64 characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_040', 0, function () {
        console.info('device_info_test_040 start');
        var displayVersionInfo = deviceinfo.displayVersion;
        console.info('the value of the deviceinfo displayVersion is :' + displayVersionInfo);

        let len = displayVersionInfo.length;
        console.info('the value of the device serial number characters is :' + len);
        expect(len).assertLess(65);
        console.info('device_info_test_040 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0450
     * @tc.name      testGetOsFullName02
     * @tc.desc      Get a string representing the operating system full name which has a maximum of 32 characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_041', 0, function () {
        console.info('device_info_test_041 start');
        var osFullNameInfo = deviceinfo.osFullName;
        console.info('the value of the deviceinfo osFullName is :' + osFullNameInfo);

        let len = osFullNameInfo.length;
        console.info('the value of the operating system full name characters is :' + len);
        expect(len).assertLess(32);
        console.info('device_info_test_041 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0460
     * @tc.name      testGetVersionId02
     * @tc.desc      Get a string representing the operating system full name which has a maximum of 127 characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_042', 0, function () {
        console.info('device_info_test_042 start');
        var versionIdInfo = deviceinfo.versionId;
        console.info('the value of the deviceinfo versionId is :' + versionIdInfo);

        let len = versionIdInfo.length;
        console.info('the value of the operating system full name characters is :' + len)
        expect(len).assertLess(128);
        console.info('device_info_test_042 :end')
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0470
     * @tc.name      testGetBuildUser02
     * @tc.desc      Get a string representing the different build user of the same baseline code which has a maximum of 32 characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_043', 0, function () {
        console.info('device_info_test_043 start');
        var buildUserInfo = deviceinfo.buildUser;
        console.info('the value of the deviceinfo buildUser is :' + buildUserInfo);

        console.info('the value of the different build user of the same baseline code characters is :' + buildUserInfo.length);
        expect(buildUserInfo.length).assertLess(33)
        console.info('device_info_test_043 :end')
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0480
     * @tc.name      testGetBuildHost02
     * @tc.desc      Get a string representing the different build host of the same baseline code which has a maximum of 32 characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_044', 0, function () {
        console.info('device_info_test_044 start');
        var buildHostInfo = deviceinfo.buildHost;
        console.info('the value of the deviceinfo buildHost is :' + buildHostInfo);

        let len = buildHostInfo.length
        console.info('the value of the different build host of the same baseline code characters is :' + len)
        expect(len).assertLess(33)
        console.info('device_info_test_044 :end')
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0490
     * @tc.name      testGetDeviceType03
     * @tc.desc      Get a string representing the device type which has at least one characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_045', 0, function () {
        console.info('device_info_test_045 start');
        var deviceTypeInfo = deviceinfo.deviceType;
        console.info('the value of the deviceinfo deviceType is :' + deviceTypeInfo);

        let len = deviceTypeInfo.length;
        console.info('the value of the device type characters:' + len);
        expect(len).assertLarger(0);
        console.info('device_info_test_045 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0510
     * @tc.name      testGetManufacture03
     * @tc.desc      Get a string representing the manufacture which has at least one characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_046', 0, function () {
        console.info('device_info_test_046 start');
        var manufactureInfo = deviceinfo.manufacture;
        console.info('the value of the deviceinfo manufacture is :' + manufactureInfo);

        let len = manufactureInfo.length
        console.info('the value of the manufacture characters is :' + len)
        expect(len).assertLarger(0)
        console.info('device_info_test_046 :end')
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0520
     * @tc.name      testGetProductBrand03
     * @tc.desc      Get a string representing the external product family name which has at least one characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_047', 0, function () {
        console.info('device_info_test_047 start');
        var brandInfo = deviceinfo.brand;
        console.info('the value of the deviceinfo brand is :' + brandInfo);

        let len = brandInfo.length;
        console.info('the value of the external product family name characters is :' + len);
        expect(len).assertLarger(0);
        console.info('device_info_test_047 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0530
     * @tc.name      testGetMarketName03
     * @tc.desc      Get a string representing the product series which has at least one characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_048', 0, function () {
        console.info('device_info_test_048 start');
        var marketNameInfo = deviceinfo.marketName;
        console.info('the value of the deviceinfo marketName is :' + marketNameInfo);

        let len = marketNameInfo.length;
        console.info('the value of the product series characters is :' + len)
        expect(len).assertLarger(0);
        console.info('device_info_test_048 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0540
     * @tc.name      testGetProductSeries03
     * @tc.desc      Get a string representing the product series which has at least one characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_049', 0, function () {
        console.info('device_info_test_049 start');
        var productSeriesInfo = deviceinfo.productSeries;
        console.info('the value of the deviceinfo productSeries is :' + productSeriesInfo);

        let len = productSeriesInfo.length;
        console.info('the value of the product series characters is :' + len);
        expect(len).assertLarger(0);
        console.info('device_info_test_049 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0550
     * @tc.name      testGetProductModel03
     * @tc.desc      Get a string representing the certified model which has at least one characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_050', 0, function () {
        console.info('device_info_test_050 start');
        var productModelInfo = deviceinfo.productModel;
        console.info('the value of the deviceinfo productModel is :' + productModelInfo);

        let len = productModelInfo.length
        console.info('the value of the certified model characters is :' + len)
        expect(len).assertLarger(0)
        console.info('device_info_test_050 :end')
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0560
     * @tc.name      testGetSoftwareModel03
     * @tc.desc      Get a string representing the internal software sub-model which has at least one characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_051', 0, function () {
        console.info('device_info_test_036 start');
        var softwareModelInfo = deviceinfo.softwareModel;
        console.info('the value of the deviceinfo softwareModel is :' + softwareModelInfo);

        let len = softwareModelInfo.length
        console.info('the value of the internal software sub-model characters is :' + len)
        expect(len).assertLarger(0)
        console.info('device_info_test_036 :end')
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0570
     * @tc.name      testGetHardwareModel03
     * @tc.desc      Get a string representing the hardware version which has at least one characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_052', 0, function () {
        console.info('device_info_test_052 start');
        var hardwareModelInfo = deviceinfo.hardwareModel;
        console.info('the value of the deviceinfo hardwareModel is :' + hardwareModelInfo);

        let len = hardwareModelInfo.length;
        console.info('the value of the hardware version characters is :' + len);
        expect(len).assertLarger(0);
        console.info('device_info_test_052 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0580
     * @tc.name      testGetHardwareProfile03
     * @tc.desc      Get a string representing the hardware version which has at least one characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_053', 0, function () {
        console.info('device_info_test_053 start');
        var hardwareProfileInfo = deviceinfo.hardwareProfile;
        console.info('the value of the deviceinfo hardwareProfile is :' + hardwareProfileInfo);

        let len = hardwareProfileInfo.length;
        console.info('the value of the hardware version characters is :' + len);
        expect(len).assertLarger(0);
        console.info('device_info_test_053 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0590
     * @tc.name      testGetSerial03
     * @tc.desc      Get a string representing the device serial number which has at least one characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_054', 0, function () {
        console.info('device_info_test_054 start');
        var serialInfo = deviceinfo.serial;
        console.info('the value of the deviceinfo serial is :' + serialInfo);

        let len = serialInfo.length;
        console.info('the value of the device serial number characters is :' + len);
        expect(len).assertLarger(0);
        console.info('device_info_test_054 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0610
     * @tc.name      testGetDisplayVersion03
     * @tc.desc      Get a string representing the version number visible to users which has at least one characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_055', 0, function () {
        console.info('device_info_test_055 start');
        var displayVersionInfo = deviceinfo.displayVersion;
        console.info('the value of the deviceinfo displayVersion is :' + displayVersionInfo);

        let len = displayVersionInfo.length;
        console.info('the value of the device serial number characters is :' + len);
        expect(len).assertLarger(0);
        console.info('device_info_test_055 :end');
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0620
     * @tc.name      testGetIncrementalVersionInfo02
     * @tc.desc      Get a string representing the version number visible to users which has a maximum of 32 characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_056', 0, function () {
        console.info('device_info_test_056 start');
        var incrementalVersionInfo = deviceinfo.incrementalVersion;
        console.info('the value of the deviceinfo incrementalVersion is :' + incrementalVersionInfo);

        let len = incrementalVersionInfo.length
        console.info('the value of the device serial number characters is :' + len)
        expect(len).assertLess(32)
        console.info('device_info_test_056 :end')
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0630
     * @tc.name      testGetIncrementalVersionInfo03
     * @tc.desc      Get a string representing the version number visible to users which has at least one characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_057', 0, function () {
        console.info('device_info_test_057 start');
        var incrementalVersionInfo = deviceinfo.incrementalVersion;
        console.info('the value of the deviceinfo incrementalVersion is :' + incrementalVersionInfo);

        let len = incrementalVersionInfo.length
        console.info('the value of the device serial number characters is :' + len)
        expect(len).assertLarger(0)
        console.info('device_info_test_057 :end')
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0640
     * @tc.name      testGetVersionId03
     * @tc.desc      Get a string representing the operating system full name which has at least one characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_058', 0, function () {
        console.info('device_info_test_058 start');
        var versionIdInfo = deviceinfo.versionId;
        console.info('the value of the deviceinfo versionId is :' + versionIdInfo);

        let len = versionIdInfo.length
        console.info('the value of the operating system full name characters is :' + len)
        expect(len).assertLarger(0)
        console.info('device_info_test_058 :end')
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0650
     * @tc.name      testGetBuildUser03
     * @tc.desc      Get a string representing the different build user of the same baseline code which has at least one characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_059', 0, function () {
        console.info('device_info_test_043 start');
        var buildUserInfo = deviceinfo.buildUser;
        console.info('the value of thebuildUser is :' + buildUserInfo);

        console.info('the value of the different build user of the same baseline code characters is :' + buildUserInfo.length);
        expect(buildUserInfo.length).assertLarger(0)
        console.info('device_info_test_059 :end')
    })

    /**
     * @tc.number    SUB_STARTUP_JS_DEVCEINFO_0660
     * @tc.name      testGetBuildHost03
     * @tc.desc      Get a string representing the different build host of the same baseline code which has at least one characters.
     * @tc.size      : MEDIUM
     * @tc.type      : Function
     * @tc.level     : Level 0
     */
    it('device_info_test_060', 0, function () {
        console.info('device_info_test_060 start');
        var buildHostInfo = deviceinfo.buildHost;
        console.info('the value of the deviceinfo buildHost is :' + buildHostInfo);

        let len = buildHostInfo.length
        console.info('the value of the different build host of the same baseline code characters is :' + len);
        expect(len).assertLarger(0);
        console.info('device_info_test_060 :end');
    })
})