• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2022 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #include <string.h>
17 #include <stdint.h>
18 #include <unistd.h>
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <getopt.h>
22 #include <limits.h>
23 #include <sys/types.h>
24 #include <wait.h>
25 #include "syscap_tool.h"
26 
27 extern char *optarg;
28 
29 char *g_testFilePcid = "{\n  \"api_version\": 0,\n  \"manufacturer_id\": 0,\n  \"product\": \"rk3568\",\n" \
30     "  \"syscap\": {\n    \"os\": [\n      \"SystemCapability.Account.AppAccount\",\n" \
31     "      \"SystemCapability.Account.OsAccount\"\n    ]\n  },\n" \
32     "  \"system_type\": \"standard\"\n}";
33 char *g_testFileRpcid = "{\n  \"api_version\": 7,\n  \"syscap\":	[\n    \"SystemCapability.hiviewdfx.hilog\",\n" \
34     "    \"SystemCapability.communication.softbus\",\n    \"SystemCapability.hisicon.flashlight\"\n  ]\n}";
35 
PrepareTestFile(char * fileName,char * fileContext)36 int32_t PrepareTestFile(char *fileName, char *fileContext)
37 {
38     int32_t ret;
39     FILE *fp = fopen(fileName, "wb");
40     if (fp == NULL) {
41         return -1;
42     }
43     size_t len = fwrite(fileContext, 1, strlen(fileContext), fp);
44     if (len != strlen(fileContext)) {
45         (void)fclose(fp);
46         return -1;
47     }
48     ret = fclose(fp);
49     if (ret != 0) {
50         return -1;
51     }
52     return 0;
53 }
54 
main(int argc,char ** argv)55 int main(int argc, char **argv)
56 {
57     int32_t status;
58 
59     char *pcidFileName = "SystemCapability.json";
60     char *rpcidFileName = "rpcid.json";
61     printf("###start syscap tool test###\n");
62 
63     (void)unlink(pcidFileName);
64     (void)unlink(rpcidFileName);
65     (void)unlink("./rk3568.sc");
66     (void)unlink("./rpcid.sc");
67     (void)unlink("./rk3568.json");
68 
69     pid_t pid = fork();
70     if (pid == 0) {
71         printf("prepare test file...\n");
72         int32_t passCnt = 0;
73         int32_t ret = PrepareTestFile(pcidFileName, g_testFilePcid);
74         if (ret != 0) {
75             printf("  error: prepare pcid file failed\n");
76             exit(passCnt);
77         }
78         ret = PrepareTestFile(rpcidFileName, g_testFileRpcid);
79         if (ret != 0) {
80             printf("  error: prepare rpcid file failed\n");
81             exit(passCnt);
82         }
83         printf("1.test rpcid.json encode to rpcid.sc\n");
84         ret = RPCIDEncode(rpcidFileName, "./");
85         if (ret != 0) {
86             printf("  error: rpcid.json encode failed\n");
87             exit(passCnt);
88         }
89         passCnt++;
90         printf("pass\n");
91         printf("2.test rpcid.sc decode to rpcid.json\n");
92         ret = RPCIDDecode("rpcid.sc", "./");
93         if (ret != 0) {
94             printf("  error: rpcid.sc decode failed\n");
95             exit(passCnt);
96         }
97         passCnt++;
98         printf("pass\n");
99         printf("3.test pcid.json encode to pcid.sc\n");
100         ret = PCIDEncode(pcidFileName, "./");
101         if (ret != 0) {
102             printf("  error: pcid.json encode failed\n");
103             exit(passCnt);
104         }
105         passCnt++;
106         printf("pass\n");
107         printf("4.test pcid.sc decode to pcid.json\n");
108         ret = PCIDDecode("./rk3568.sc", "./");
109         if (ret != 0) {
110             printf("  error: pcid.sc decode failed\n");
111             exit(passCnt);
112         }
113         passCnt++;
114         printf("pass\n");
115         exit(passCnt);
116     }
117     (void)wait(&status);
118     printf("summary: total 4  passed %d\n", WEXITSTATUS(status));
119     (void)unlink(pcidFileName);
120     (void)unlink(rpcidFileName);
121     (void)unlink("./rk3568.sc");
122     (void)unlink("./rpcid.sc");
123     (void)unlink("./rk3568.json");
124 
125     return 0;
126 }