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 #include "create_pcid.h"
27
28 char *g_testFilePcid = "{\n \"api_version\": 0,\n \"manufacturer_id\": 0,\n \"product\": \"rk3568\",\n" \
29 " \"syscap\": {\n \"os\": [\n \"SystemCapability.Account.AppAccount\",\n" \
30 " \"SystemCapability.Account.OsAccount\"\n ]\n },\n" \
31 " \"system_type\": \"standard\"\n}";
32 char *g_testFileRpcid = "{\n \"api_version\": 7,\n \"syscap\": [\n \"SystemCapability.hiviewdfx.hilog\",\n" \
33 " \"SystemCapability.communication.softbus\",\n \"SystemCapability.hisicon.flashlight\"\n ]\n}";
34
PrepareTestFile(char * fileName,char * fileContext)35 int32_t PrepareTestFile(char *fileName, char *fileContext)
36 {
37 int32_t ret;
38 FILE *fp = fopen(fileName, "wb");
39 if (fp == NULL) {
40 return -1;
41 }
42 size_t len = fwrite(fileContext, 1, strlen(fileContext), fp);
43 if (len != strlen(fileContext)) {
44 (void)fclose(fp);
45 return -1;
46 }
47 ret = fclose(fp);
48 if (ret != 0) {
49 return -1;
50 }
51 return 0;
52 }
53
main(int argc,char ** argv)54 int main(int argc, char **argv)
55 {
56 int32_t status;
57
58 char *pcidFileName = "SystemCapability.json";
59 char *rpcidFileName = "rpcid.json";
60 printf("###start syscap tool test###\n");
61
62 (void)unlink(pcidFileName);
63 (void)unlink(rpcidFileName);
64 (void)unlink("./rk3568.sc");
65 (void)unlink("./newPCID.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 printf("5.test pcid.json encode to new PCID.sc\n");
116 ret = CreatePCID("./newPCID.sc", "./");
117 if (ret != 0) {
118 printf(" error: new pcid.sc encode failed\n");
119 exit(passCnt);
120 }
121 passCnt++;
122 printf("pass\n");
123 printf("6.test new pcid.sc decode to pcid.json\n");
124 ret = PCIDDecode("./newPCID.sc", "./");
125 if (ret != 0) {
126 printf(" error: new pcid.sc decode failed\n");
127 exit(passCnt);
128 }
129 passCnt++;
130 printf("pass\n");
131 exit(passCnt);
132 }
133 (void)wait(&status);
134 printf("summary: total 4 passed %d\n", WEXITSTATUS(status));
135 (void)unlink(pcidFileName);
136 (void)unlink(rpcidFileName);
137 (void)unlink("./rk3568.sc");
138 (void)unlink("./newPCID.sc");
139 (void)unlink("./rpcid.sc");
140 (void)unlink("./rk3568.json");
141
142 return 0;
143 }