Added multiple A1 support in Near-RT RIC simulator
[sim/a1-interface.git] / near-rt-ric-simulator / test / common / compare_json.py
1
2 #  ============LICENSE_START===============================================
3 #  Copyright (C) 2020 Nordix Foundation. All rights reserved.
4 #  ========================================================================
5 #  Licensed under the Apache License, Version 2.0 (the "License");
6 #  you may not use this file except in compliance with the License.
7 #  You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 #  Unless required by applicable law or agreed to in writing, software
12 #  distributed under the License is distributed on an "AS IS" BASIS,
13 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 #  See the License for the specific language governing permissions and
15 #  limitations under the License.
16 #  ============LICENSE_END=================================================
17 #
18
19 # Deep compare of two json obects
20 # If a parameter value in the target json is set to '????' then the result json value is not checked for that parameter
21 # Any included json array will be sorted before comparison
22
23 import sys
24 import json
25
26 def compare_json(jsonTarget,jsonResult):
27
28
29     if isinstance(jsonTarget, dict):
30         if (len(jsonTarget) != len(jsonResult)):
31             return 1
32         for key in jsonTarget.keys():
33             if (jsonResult.get(key) is None):
34                 return 1
35             res=compare_json(jsonTarget.get(key), jsonResult.get(key))
36             if (res != 0):
37                 return 1
38     elif isinstance(jsonTarget, list):
39         if (len(jsonTarget) != len(jsonResult)):
40             return 1
41         jsonTarget.sort()
42         jsonResult.sort()
43         for i in range(len(jsonTarget)):
44             res=compare_json(jsonTarget[i], jsonResult[i])
45             if (res != 0):
46                 return 1
47     else:
48         if (jsonTarget != "????") and (jsonTarget != jsonResult):
49             return 1
50     return 0
51
52
53 try:
54     jsonTarget = json.loads(sys.argv[1])
55     jsonResult = json.loads(sys.argv[2])
56
57     print(compare_json(jsonTarget,jsonResult))
58
59 except Exception as e:
60     print (1)
61 sys.exit()
62
63
64
65
66