Newer
Older
#!/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 TestCIProvision(TestCase):
@classmethod
def setUpClass(cls):
TestCIProvision.folder_test_suites = dirname(dirname(dirname(__file__)))
folder_results = f'{TestCIProvision.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}'
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
def test_003_01(self):
self.fail("(003_01) Test Suite with Test Template, not yet implemented")
def test_003_02(self):
self.fail("(003_02) Test Suite result is wrong, need to be checked")
def test_003_03(self):
self.fail("(003_03) Test Suite with Test Template, not yet implemented")
def test_003_04(self):
self.fail("(003_04) Test Suite with 'Check Response Body Containing an Attribute set to' with different set of parameters")
def test_003_05(self):
self.fail("(003_05) Test Suite with 'Check Response Body Containing an Attribute set to' with different set of parameters")
def test_003_06(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/BatchEntities/CreateBatchOfEntities/003_06.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/003_06.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_003_06.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_003_07(self):
self.fail("(003_07) Test Suite with 'Check Response Body Containing an Attribute set to' with different set of parameters")
def test_003_08(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/BatchEntities/CreateBatchOfEntities/003_08.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/003_08.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_003_08.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_003_09(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/BatchEntities/CreateBatchOfEntities/003_09.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/003_09.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_003_09.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_006_01(self):
self.fail("(006_01) The first operation is not a setup operation of the environment but a Delete operation that have to be controlled")
def test_006_02(self):
self.fail("(006_02) The first operation is not a setup operation of the environment but a Delete operation that have to be controlled")
def test_006_03(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/BatchEntities/DeleteBatchOfEntities/006_03.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/006_03.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_006_03.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/BatchEntities/UpdateBatchOfEntities/005_01.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/005_01.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_005_01.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/BatchEntities/UpdateBatchOfEntities/005_01.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/005_01.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_005_01.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/BatchEntities/UpdateBatchOfEntities/005_03.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/005_03.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_005_03.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/BatchEntities/UpdateBatchOfEntities/005_04.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/005_04.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_005_04.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_004_01(self):
self.fail("(005_02) Test Suite with Test Template, not yet implemented")
def test_004_02(self):
self.fail("(004_02) Test Suite with Test Template, not yet implemented")
def test_004_03(self):
self.fail("(004_03) Test Suite with Test Template, not yet implemented")
def test_004_04(self):
self.fail("(004_04) Test Suite with Test Template, not yet implemented")
def test_004_05(self):
self.fail("(004_05) Test Suite error content empty when generate then sentence")
def test_004_06(self):
self.fail("(004_06) Test Suite with Test Template, not yet implemented")
def test_001_01(self):
self.fail("(001_01) Test Suite with Test Template, not yet implemented")
def test_001_02(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/Entities/CreateEntity/001_02.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/001_02.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_001_02.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
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
def test_001_03(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/Entities/CreateEntity/001_03.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/001_03.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_001_03.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_001_04(self):
self.fail("(001_04) Test Suite with 'Check Response Body Containing an Attribute set to' with different set of parameters")
def test_001_05(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/Entities/CreateEntity/001_05.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/001_05.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_001_05.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_001_06(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/Entities/CreateEntity/001_06.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/001_06.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_001_06.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_001_07(self):
self.fail("(001_07) Test Suite with 'Check Response Body Containing an Attribute set to' with different set of parameters")
def test_001_08(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/Entities/CreateEntity/001_08.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/001_08.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_001_08.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_001_09(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/Entities/CreateEntity/001_09.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/001_09.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_001_09.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_002_01(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/Entities/DeleteEntity/002_01.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/002_01.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_002_01.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/Entities/DeleteEntity/002_02.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/002_02.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_002_02.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_002_03(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/Entities/DeleteEntity/002_03.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/002_03.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_002_03.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/EntityAttributes/AppendEntityAttributes/010_01.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/010_01.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_010_01.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/EntityAttributes/AppendEntityAttributes/010_02.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/010_02.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_010_02.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_010_03(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/EntityAttributes/AppendEntityAttributes/010_03.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/010_03.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_010_03.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_010_04(self):
self.fail("(010_04) Test Suite with something similar to Test Template, not yet implemented")
def test_010_05(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/EntityAttributes/AppendEntityAttributes/010_05.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/010_05.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_010_05.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/EntityAttributes/DeleteEntityAttribute/013_01.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/013_01.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_013_01.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/EntityAttributes/DeleteEntityAttribute/013_02.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/013_02.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_013_02.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/EntityAttributes/DeleteEntityAttribute/013_03.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/013_03.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_013_03.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/EntityAttributes/PartialAttributeUpdate/012_01.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/012_01.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_012_01.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/EntityAttributes/PartialAttributeUpdate/012_02.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/012_02.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_012_02.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/EntityAttributes/PartialAttributeUpdate/012_03.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/012_03.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_012_03.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_011_01(self):
self.fail("(011_01) Test Suite with Test Template, not yet implemented")
def test_011_02(self):
self.fail("(011_02) Test Suite with something similar to Test Template, not yet implemented")
def test_011_03(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/EntityAttributes/UpdateEntityAttributes/011_03.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/011_03.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_011_03.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_007_01(self):
self.fail("(007_01) Test Suite with Test Template, not yet implemented")
def test_007_02(self):
self.fail("(007_02) Test Suite with Test Template, not yet implemented")
def test_007_03(self):
self.fail("(007_03) Test Suite with Test Template, not yet implemented")
def test_009_01(self):
self.fail("(009_01) Test Suite testing Delete operation but we are returning Retrieve solution")
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
def test_009_02(self):
self.fail("(009_02) Test Suite with Test Template, not yet implemented")
def test_009_03(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/TemporalEntity/DeleteTemporalRepresentationOfEntity/009_03.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/009_03.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_009_03.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_008_01(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/TemporalEntity/UpdateTemporalRepresentationOfEntity/008_01.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/008_01.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_008_01.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_014_01(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/TemporalEntityAttributes/AppendAttributes/014_01.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/014_01.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_014_01.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_014_02(self):
self.fail("(014_02) Test Suite with Test Template, not yet implemented")
def test_014_03(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/TemporalEntityAttributes/AppendAttributes/014_03.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/014_03.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_014_03.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_014_04(self):
self.fail("(014_04) Test Suite with Test Template, not yet implemented (new)")
def test_015_01(self):
self.fail("(015_01) Test Suite with Test Template, not yet implemented")
def test_015_02(self):
self.fail("(015_02) Test Suite with Test Template, not yet implemented")
def test_015_03(self):
self.fail("(015_03) Test Suite with Test Template, not yet implemented")
def test_017_01(self):
robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextInformation/Provision/TemporalEntityAttributes/DeleteAttributeInstance/017_01.robot'
expected_value = f'{self.folder_test_suites}/doc/files/ContextInformation/Provision/017_01.json'
difference_file = f'{self.folder_test_suites}/doc/results/out_017_01.json'
self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file)
def test_017_02(self):
self.fail("(017_02) Test Suite with Test Template, not yet implemented")
def test_017_03(self):
self.fail("(017_03) Test Suite with Test Template, not yet implemented")
def test_016_01(self):
self.fail("(016_01) Test Suite need to be checked to create the documentation")
def test_016_02(self):
self.fail("(016_02) Test Suite with Test Template, not yet implemented")
def test_016_03(self):
self.fail("(016_03) Test Suite with Test Template, not yet implemented")