Newer
Older
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
#!/usr/bin/env python
from unittest import TestCase
from doc.analysis.generaterobotdata import GenerateRobotData
from json import load, dump
from deepdiff import DeepDiff
from os.path import dirname, exists
from os import listdir, remove, makedirs
class TestCIConsumptions(TestCase):
@classmethod
def setUpClass(cls):
# TODO: Test Suites checked until 019_01_01
TestCIConsumptions.folder_test_suites = dirname(dirname(dirname(__file__)))
folder_results = f'{TestCIConsumptions.folder_test_suites}/doc/results'
# Check that the folder '/results' exists and if not, create it
if not exists(folder_results):
makedirs(folder_results)
else:
# Delete the /results folder
[remove(f'{folder_results}/{x}') for x in listdir(folder_results) if x.startswith('out')]
def setUp(self) -> None:
self.folder_test_suites = dirname(dirname(dirname(__file__)))
def common_function(self, robot_file, expected_value, difference_file):
data = GenerateRobotData(robot_file=robot_file,
execdir=self.folder_test_suites)
data.parse_robot()
obtained_response = data.get_info()
with open(expected_value, 'r') as file:
expected_response = load(file)
result = DeepDiff(t1=obtained_response, t2=expected_response, ignore_order=True)
if len(result) != 0:
# There are some differences
with open(difference_file, 'w') as fp:
dump(obj=obtained_response, indent=2, fp=fp)
assert False, f'They are some difference between the expected and obtained dictionaries: \n {result}'
def test_027_01(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Consumption/Discovery/RetrieveAvailableAttributeInformation/027_01.robot'
expected_value = f'{self.folder_test_suites}/doc/files/027_01.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_027_01.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_027_02(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Consumption/Discovery/RetrieveAvailableAttributeInformation/027_02.robot'
expected_value = f'{self.folder_test_suites}/doc/files/027_02.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_027_02.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_025_01(self):
self.fail("(025_01) Test Suite with Test Template, not yet implemented")
def test_022_01(self):
self.fail("(022_01) Test Suite with Test Template, not yet implemented")
def test_026_01(self):
self.fail("(026_01) Test Suite with Test Template, not yet implemented")
def test_023_01(self):
self.fail("(023_01) Test Suite with Test Template, not yet implemented")
def test_024_01(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Consumption/Discovery/RetrieveAvailableEntityTypeInformation/024_01.robot'
expected_value = f'{self.folder_test_suites}/doc/files/024_01.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_024_01.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_024_02(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Consumption/Discovery/RetrieveAvailableEntityTypeInformation/024_02.robot'
expected_value = f'{self.folder_test_suites}/doc/files/024_02.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_024_02.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_019_01_01(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Consumption/Entity/QueryEntities/019_01_01.robot'
expected_value = f'{self.folder_test_suites}/doc/files/019_01_01.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_019_01_01.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_019_01_02(self):
self.fail("(019_01_02) Problems with Request parameters")
def test_019_01_03(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Consumption/Entity/QueryEntities/019_01_03.robot'
expected_value = f'{self.folder_test_suites}/doc/files/019_01_03.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_019_01_03.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_019_01_04(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Consumption/Entity/QueryEntities/019_01_04.robot'
expected_value = f'{self.folder_test_suites}/doc/files/019_01_04.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_019_01_04.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_019_01_05(self):
self.fail("(019_01_05) Problems with Request parameters")
def test_019_02_01(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Consumption/Entity/QueryEntities/019_02_01.robot'
expected_value = f'{self.folder_test_suites}/doc/files/019_02_01.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_019_02_01.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_019_02_02(self):
self.fail("(019_02_02) Problems with Request parameters")
def test_019_02_03(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Consumption/Entity/QueryEntities/019_02_03.robot'
expected_value = f'{self.folder_test_suites}/doc/files/019_02_03.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_019_02_03.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_019_02_04(self):
self.fail("(019_02_04) Problems with Request parameters")
def test_019_02_05(self):
self.fail("(019_02_05) Problems with Request parameters")
def test_019_03_01(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Consumption/Entity/QueryEntities/019_03_01.robot'
expected_value = f'{self.folder_test_suites}/doc/files/019_03_01.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_019_03_01.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_019_03_02(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Consumption/Entity/QueryEntities/019_03_02.robot'
expected_value = f'{self.folder_test_suites}/doc/files/019_03_02.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_019_03_02.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_019_03_03(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Consumption/Entity/QueryEntities/019_03_03.robot'
expected_value = f'{self.folder_test_suites}/doc/files/019_03_03.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_019_03_03.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_019_03_04(self):
self.fail("(019_03_04) Problems with Request parameters")
def test_019_03_05(self):
self.fail("(019_03_04) Problems with Request parameters")
def test_019_04(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Consumption/Entity/QueryEntities/019_04.robot'
expected_value = f'{self.folder_test_suites}/doc/files/019_04.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_019_04.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
self.fail("(019_04) Problems with Request parameters, Query Entities missing options parameter")
def test_019_05(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Consumption/Entity/QueryEntities/019_05.robot'
expected_value = f'{self.folder_test_suites}/doc/files/019_05.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_019_05.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
self.fail("(019_04) Problems with Request parameters, Query Entities missing accept parameter")
def test_019_06(self):
self.fail("(019_06) Problems with 'Check Response Body Containing Number Of Entities'")
def test_018_01_01(self):
self.fail("(018_01_01) Problems with Query Entity, context-type information used for Link information")
def test_018_01_02(self):
self.fail("(018_01_02) Problems with Query Entity")
def test_018_01_03(self):
self.fail("(018_01_03) Problems with Query Entity")
def test_018_02(self):
self.fail("(018_02) Test Suite with Test Template, not yet implemented")
def test_018_03_01(self):
self.fail("(018_03_01) Problems with Query Entity")
def test_018_03_02(self):
self.fail("(018_03_02) Problems with Query Entity")
def test_018_04(self):
self.fail("(018_04) Problems with Request parameters, Query Entity missing options parameter")
def test_018_05(self):
self.fail("(018_05) Problems with Request parameters, Query Entity missing options parameter")
def test_018_06(self):
self.fail("(018_06) Test Suite with Test Template, not yet implemented")
def test_021_01(self):
self.fail("(021_01) Test Suite with Test Template, not yet implemented")
def test_021_02(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Consumption/TemporalEntity/QueryTemporalEvolutionOfEntities/021_02.robot'
expected_value = f'{self.folder_test_suites}/doc/files/021_02.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_021_02.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_021_03(self):
self.fail("(021_03) Problems with Request parameters, 'Query Temporal Representation Of Entities'")
def test_021_04(self):
self.fail("(021_04) Problems with Request parameters, 'Query Temporal Representation Of Entities'")
def test_021_05(self):
self.fail("(021_05) Problems with Request parameters, 'Query Temporal Representation Of Entities'")
def test_021_06(self):
self.fail("(021_06) Problems with Request parameters, 'Query Temporal Representation Of Entities'")
def test_021_07(self):
self.fail("(021_07) Problems with Request parameters, 'Query Temporal Representation Of Entities'")
def test_021_08(self):
self.fail("(021_08) Problems with Request parameters, 'Query Temporal Representation Of Entities'")
def test_021_09(self):
self.fail("(021_09) Test Suite with Test Template, not yet implemented")
def test_021_10(self):
self.fail("(021_10) Problems with Request parameters, 'Query Temporal Representation Of Entities'")
def test_021_11(self):
self.fail("(021_11) Test Suite with Test Template, not yet implemented")
def test_021_12(self):
self.fail("(021_12) Problems with Request parameters, 'Query Temporal Representation Of Entities'")
def test_021_13(self):
self.fail("(021_13) Test Suite with Test Template, not yet implemented")
def test_020_01(self):
self.fail("(020_01) Problems with Request parameters, 'Retrieve Temporal Representation Of Entity'")
def test_020_02(self):
self.fail("(020_02) Problems with Request parameters, 'Retrieve Temporal Representation Of Entity'")
def test_020_03(self):
self.fail("(020_03) Problems with Request parameters, 'Retrieve Temporal Representation Of Entity'")
def test_020_04(self):
self.fail("(020_04) Test Suite with Test Template, not yet implemented")
def test_020_05(self):
self.fail("(020_05) Test Suite with Test Template, not yet implemented")
def test_020_06(self):
self.fail("(020_06) Problems with Request parameters, 'Retrieve Temporal Representation Of Entity'")
def test_020_07(self):
self.fail("(020_07) Problems with Request parameters, 'Retrieve Temporal Representation Of Entity'")
def test_020_08(self):
self.fail("(020_08) Problems with Request parameters, 'Retrieve Temporal Representation Of Entity'")
def test_020_09(self):
self.fail("(020_09) Test Suite with Test Template, not yet implemented")
def test_020_10(self):
self.fail("(020_10) Test Suite with Test Template, not yet implemented")