aboutsummaryrefslogtreecommitdiffstats
path: root/moon_manager/tests/func_tests/features/steps/meta_data.py
blob: b2a6d02c255a336da0be8400a0241e0f2f616739 (plain)
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
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
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
# Software Name: MOON

# Version: 5.4

# SPDX-FileCopyrightText: Copyright (c) 2018-2020 Orange and its contributors
# SPDX-License-Identifier: Apache-2.0

# This software is distributed under the 'Apache License 2.0',
# the text of which is available at 'http://www.apache.org/licenses/LICENSE-2.0.txt'
# or see the "LICENSE" file for more details.


from behave import *
from Static_Variables import GeneralVariables
from astropy.table import Table, Column
from common_functions import *
import requests
import json
import logging

apis_urls = GeneralVariables()
api_subjectcategory = {'name': "", 'description': ""}
api_objectcategory = {'name': "", 'description': ""}
api_actioncategory = {'name': "", 'description': ""}

logger = logging.getLogger(__name__)


# Step Definition Implementation:
# 1) Get all the existing subject meta data in the system
# 2) Loop by id and delete them
@Given('the system has no subject categories')
def step_impl(context):
    logger.info("Given the system has no subject categories")
    api_responseflag = {'value': False}
    headers = {"Content-Type": "application/json", "X-Api-Key": apis_urls.token}

    response = requests.get(apis_urls.serverURL + apis_urls.metadatasubjectcategoryAPI, headers=apis_urls.auth_headers)
    if len(response.json()[apis_urls.metadatasubjectcategoryAPI]) != 0:
        for ids in dict(response.json()[apis_urls.metadatasubjectcategoryAPI]).keys():
            response = requests.delete(apis_urls.serverURL + apis_urls.metadatasubjectcategoryAPI + "/" + ids,
                                       headers=headers)

# Step Definition Implementation:
# 1) Get all the existing action meta data in the system
# 2) Loop by id and delete them
@Given('the system has no action categories')
def step_impl(context):
    logger.info("Given the system has no action categories")
    api_responseflag = {'value': False}
    headers = {"Content-Type": "application/json", "X-Api-Key": apis_urls.token}

    response = requests.get(apis_urls.serverURL + apis_urls.metadataactioncategoryAPI, headers=apis_urls.auth_headers)
    if len(response.json()[apis_urls.metadataactioncategoryAPI]) != 0:
        for ids in dict(response.json()[apis_urls.metadataactioncategoryAPI]).keys():
            response = requests.delete(apis_urls.serverURL + apis_urls.metadataactioncategoryAPI + "/" + ids,
                                       headers=headers)


# Step Definition Implementation:
# 1) Get all the existing object meta data in the system
# 2) Loop by id and delete them
@Given('the system has no object categories')
def step_impl(context):
    logger.info("Given the system has no object categories")
    api_responseflag = {'value': False}
    headers = {"Content-Type": "application/json", "X-Api-Key": apis_urls.token}

    response = requests.get(apis_urls.serverURL + apis_urls.metadataobjectcategoryAPI, headers=apis_urls.auth_headers)
    if len(response.json()[apis_urls.metadataobjectcategoryAPI]) != 0:
        for ids in dict(response.json()[apis_urls.metadataobjectcategoryAPI]).keys():
            response = requests.delete(apis_urls.serverURL + apis_urls.metadataobjectcategoryAPI + "/" + ids,
                                       headers=headers)



# Step Definition Implementation:
# 1) Insert subject meta data using the post request
@Given('the following meta data subject category exists')
def step_impl(context):
    logger.info("Given the following meta data subject category exists")
    model = getattr(context, "model", None)
    for row in context.table:
        headers = {"Content-Type": "application/json", "X-Api-Key": apis_urls.token}

        data = {
            'name': row["subjectmetadataname"],
            'description': row["subjectmetadatadescription"],
        }
        logger.info(
            "subject category name: '" + row["subjectmetadataname"] + "' and subject category description: '" + row[
                "subjectmetadatadescription"] + "'")
        response = requests.post(apis_urls.serverURL + apis_urls.metadatasubjectcategoryAPI, headers=headers,
                                 data=json.dumps(data))

# Step Definition Implementation:
# 1) Insert object meta data using the post request
@Given('the following meta data object category exists')
def step_impl(context):
    logger.info("Given the following meta data object category exists")

    model = getattr(context, "model", None)
    for row in context.table:
        headers = {"Content-Type": "application/json", "X-Api-Key": apis_urls.token}

        data = {
            'name': row["objectmetadataname"],
            'description': row["objectmetadatadescription"],
        }
        logger.info(
            "object category name: '" + row["objectmetadataname"] + "' and object category description: '" + row[
                "objectmetadatadescription"] + "'")
        response = requests.post(apis_urls.serverURL + apis_urls.metadataobjectcategoryAPI, headers=headers,
                                 data=json.dumps(data))

# Step Definition Implementation:
# 1) Insert action meta data using the post request
@Given('the following meta data action category exists')
def step_impl(context):
    logger.info("Given the following meta data action category exists")

    model = getattr(context, "model", None)
    for row in context.table:
        headers = {"Content-Type": "application/json", "X-Api-Key": apis_urls.token}
        data = {
            'name': row["actionmetadataname"],
            'description': row["actionmetadatadescription"],
        }
        logger.info(
            "action category name: '" + row["actionmetadataname"] + "' and action category description: '" + row[
                "actionmetadatadescription"] + "'")
        response = requests.post(apis_urls.serverURL + apis_urls.metadataactioncategoryAPI, headers=headers,
                                 data=json.dumps(data))

# Step Definition Implementation:
# 1) Add subject meta data using the post request
# 2) If the request code was 200 set the api response flag to true else false
@When('the user sets to add the following meta data subject category')
def step_impl(context):
    logger.info("When the user sets to add the following meta data subject category")

    model = getattr(context, "model", None)
    for row in context.table:
        headers = {"Content-Type": "application/json", "X-Api-Key": apis_urls.token}
        data = {
            'name': row["subjectmetadataname"],
            'description': row["subjectmetadatadescription"],
        }
        logger.info(
            "subject category name: '" + row["subjectmetadataname"] + "' and subject category description: '" + row[
                "subjectmetadatadescription"] + "'")

        response = requests.post(apis_urls.serverURL + apis_urls.metadatasubjectcategoryAPI, headers=headers,
                                 data=json.dumps(data))

    if response.status_code == 200:
        GeneralVariables.api_responseflag['value'] = 'True'
    else:
        GeneralVariables.api_responseflag['value'] = 'False'


# Step Definition Implementation:
# 1) Get all the subject meta data by get request
# 2) Loop by ids and search for the matching subject meta data by name and delete it
# 3) If the request code was 200 set the api response flag to true else false
@When('the user sets to delete the following meta data subject category')
def step_impl(context):
    logger.info("When the user sets to delete the following meta data subject category")

    model = getattr(context, "model", None)
    for row in context.table:
        headers = {"Content-Type": "application/json", "X-Api-Key": apis_urls.token}
        logger.info("subject category name: '" + row["subjectmetadataname"] + "'")

        response = requests.get(apis_urls.serverURL + apis_urls.metadatasubjectcategoryAPI,
                                headers=apis_urls.auth_headers)
        for ids in dict(response.json()[apis_urls.metadatasubjectcategoryAPI]).keys():
            if (response.json()[apis_urls.metadatasubjectcategoryAPI][ids]['name'] == row["subjectmetadataname"]):
                response = requests.delete(apis_urls.serverURL + apis_urls.metadatasubjectcategoryAPI + "/" + ids,
                                           headers=headers)
    if response.status_code == 200:
        GeneralVariables.api_responseflag['value'] = 'True'
    else:
        GeneralVariables.api_responseflag['value'] = 'False'

# Step Definition Implementation:
# 1) Add object meta data using the post request
# 2) If the request code was 200 set the api response flag to true else false
@When('the user sets to add the following meta data object category')
def step_impl(context):
    logger.info("When the user sets to add the following meta data object category")

    model = getattr(context, "model", None)
    for row in context.table:
        headers = {"Content-Type": "application/json", "X-Api-Key": apis_urls.token}
        data = {
            'name': row["objectmetadataname"],
            'description': row["objectmetadatadescription"],
        }
        logger.info(
            "object category Name: '" + row["objectmetadataname"] + "' and object category description: '" + row[
                "objectmetadatadescription"] + "''")
        response = requests.post(apis_urls.serverURL + apis_urls.metadataobjectcategoryAPI, headers=headers,
                                 data=json.dumps(data))
    if response.status_code == 200:
        GeneralVariables.api_responseflag['value'] = 'True'
    else:
        GeneralVariables.api_responseflag['value'] = 'False'

# Step Definition Implementation:
# 1) Get all the object meta data by get request
# 2) Loop by ids and search for the matching object meta data by name and delete it
# 3) If the request code was 200 set the api response flag to true else false
@When('the user sets to delete the following meta data object category')
def step_impl(context):
    logger.info("When the user sets to delete the following meta data object category")

    model = getattr(context, "model", None)
    for row in context.table:
        headers = {"Content-Type": "application/json", "X-Api-Key": apis_urls.token}
        logger.info("object category name: '" + row["objectmetadataname"] + "'")

        response = requests.get(apis_urls.serverURL + apis_urls.metadataobjectcategoryAPI,
                                headers=apis_urls.auth_headers)
        for ids in dict(response.json()[apis_urls.metadataobjectcategoryAPI]).keys():
            if (response.json()[apis_urls.metadataobjectcategoryAPI][ids]['name'] == row["objectmetadataname"]):
                response = requests.delete(apis_urls.serverURL + apis_urls.metadataobjectcategoryAPI + "/" + ids,
                                           headers=headers)
    if response.status_code == 200:
        GeneralVariables.api_responseflag['value'] = 'True'
    else:
        GeneralVariables.api_responseflag['value'] = 'False'

# Step Definition Implementation:
# 1) Add subject meta data using the post request
# 2) If the request code was 200 set the api response flag to true else false
@When('the user sets to add the following meta data action category')
def step_impl(context):
    logger.info("When the user sets to add the following meta data action category")

    model = getattr(context, "model", None)
    for row in context.table:
        headers = {"Content-Type": "application/json", "X-Api-Key": apis_urls.token}

        data = {
            'name': row["actionmetadataname"],
            'description': row["actionmetadatadescription"],
        }
        logger.info(
            "action category name: '" + row["actionmetadataname"] + "' and action category description: '" + row[
                "actionmetadatadescription"] + "'")

        response = requests.post(apis_urls.serverURL + apis_urls.metadataactioncategoryAPI, headers=headers,
                                 data=json.dumps(data))
    if response.status_code == 200:
        GeneralVariables.api_responseflag['value'] = 'True'
    else:
        GeneralVariables.api_responseflag['value'] = 'False'

# Step Definition Implementation:
# 1) Get all the action meta data by get request
# 2) Loop by ids and search for the matching action meta data by name and delete it
# 3) If the request code was 200 set the api response flag to true else false
@When('the user sets to delete the following meta data action category')
def step_impl(context):
    logger.info("When the user sets to delete the following meta data action category")

    model = getattr(context, "model", None)
    for row in context.table:
        headers = {"Content-Type": "application/json", "X-Api-Key": apis_urls.token}

        logger.info("action category name: '" + row["actionmetadataname"] + "'")

        response = requests.get(apis_urls.serverURL + apis_urls.metadataactioncategoryAPI,
                                headers=apis_urls.auth_headers)
        for ids in dict(response.json()[apis_urls.metadataactioncategoryAPI]).keys():
            # logger.info(ids)
            if (response.json()[apis_urls.metadataactioncategoryAPI][ids]['name'] == row["actionmetadataname"]):
                response = requests.delete(apis_urls.serverURL + apis_urls.metadataactioncategoryAPI + "/" + ids,
                                           headers=headers)
                # logger.info(response.status_code)
    if response.status_code == 200:
        GeneralVariables.api_responseflag['value'] = 'True'
    else:
        GeneralVariables.api_responseflag['value'] = 'False'

# Step Definition Implementation:
# 1) Get all the existing subject meta data by get request and put them into a table
# 2) Loop using both the expected and actual tables and assert the data row by row
@Then('the following meta data subject category should be existed in the system')
def step_impl(context):
    logger.info("Then the following meta data subject category should be existed in the system")

    model = getattr(context, "model", None)
    response = requests.get(apis_urls.serverURL + apis_urls.metadatasubjectcategoryAPI, headers=apis_urls.auth_headers)
    apiresult = Table(names=('subjectcategoryname', 'subjectcategorydescription'), dtype=('S100', 'S100'))
    if len(response.json()[apis_urls.metadatasubjectcategoryAPI]) != 0:
        for ids in dict(response.json()[apis_urls.metadatasubjectcategoryAPI]).keys():
            apisubjectcategoryname = response.json()[apis_urls.metadatasubjectcategoryAPI][ids]['name']
            apisubjectcategorydescription = response.json()[apis_urls.metadatasubjectcategoryAPI][ids]['description']
            apiresult.add_row(vals=(apisubjectcategoryname, apisubjectcategorydescription))
    else:
        apiresult.add_row(vals=("", ""))
    for row1, row2 in zip(context.table, apiresult):
        logger.info("asserting the expected subject category name: '" + str(
            row1["subjectmetadataname"]) + "' is the same as the actual existing '" + str(
            row2["subjectcategoryname"]) + "'")
        assert str(row1["subjectmetadataname"]) == str(
            row2["subjectcategoryname"]), "subject category name is not correct!"
        logger.info("assertion passed!")
        logger.info("asserting the expected subject category description: '" + str(
            row1["subjectmetadatadescription"]) + "' is the same as the actual existing '" + str(
            row2["subjectcategorydescription"]) + "'")
        assert str(row1["subjectmetadatadescription"]) == str(
            row2["subjectcategorydescription"]), "Subject meta-data category description is not correct!"
        logger.info("assertion passed!")

# Step Definition Implementation:
# 1) Get all the existing object meta data by get request and put them into a table
# 2) Loop using both the expected and actual tables and assert the data row by row
@Then('the following meta data object category should be existed in the system')
def step_impl(context):
    model = getattr(context, "model", None)
    logger.info("Then the following meta data object category should be existed in the system")
    response = requests.get(apis_urls.serverURL + apis_urls.metadataobjectcategoryAPI, headers=apis_urls.auth_headers)
    apiresult = Table(names=('objectcategoryname', 'objectcategorydescription'), dtype=('S100', 'S100'))

    if len(response.json()[apis_urls.metadataobjectcategoryAPI]) != 0:
        for ids in dict(response.json()[apis_urls.metadataobjectcategoryAPI]).keys():
            apiobjectcategoryname = response.json()[apis_urls.metadataobjectcategoryAPI][ids]['name']
            apiobjectcategorydescription = response.json()[apis_urls.metadataobjectcategoryAPI][ids]['description']
            apiresult.add_row(vals=(apiobjectcategoryname, apiobjectcategorydescription))
    else:
        apiresult.add_row(vals=("", ""))
    for row1, row2 in zip(context.table, apiresult):
        logger.info("asserting the expected object category description: '" + str(
            row1["objectmetadataname"]) + "' is the same as the actual existing '" + str(
            row2["objectcategoryname"]) + "'")
        assert str(row1["objectmetadataname"]) == str(
            row2["objectcategoryname"]), "object category name is not correct!"
        logger.info("assertion passed!")
        logger.info("asserting the expected object category description: '" + str(
            row1["objectmetadatadescription"]) + "' is the same as the actual existing '" + str(
            row2["objectcategorydescription"]) + "'")
        assert str(row1["objectmetadatadescription"]) == str(
            row2["objectcategorydescription"]), "object meta-data category description is not correct!"
        logger.info("assertion passed!")

# Step Definition Implementation:
# 1) Get all the existing action meta data by get request and put them into a table
# 2) Loop using both the expected and actual tables and assert the data row by row
@Then('the following meta data action category should be existed in the system')
def step_impl(context):
    logger.info("Then the following meta data action category should be existed in the system")

    model = getattr(context, "model", None)
    response = requests.get(apis_urls.serverURL + apis_urls.metadataactioncategoryAPI, headers=apis_urls.auth_headers)
    apiresult = Table(names=('actioncategoryname', 'actioncategorydescription'), dtype=('S100', 'S100'))
    if len(response.json()[apis_urls.metadataactioncategoryAPI]) != 0:
        for ids in dict(response.json()[apis_urls.metadataactioncategoryAPI]).keys():
            apiactioncategoryname = response.json()[apis_urls.metadataactioncategoryAPI][ids]['name']
            apiactioncategorydescription = response.json()[apis_urls.metadataactioncategoryAPI][ids]['description']
            apiresult.add_row(vals=(apiactioncategoryname, apiactioncategorydescription))
    else:
        apiresult.add_row(vals=("", ""))
    for row1, row2 in zip(context.table, apiresult):
        logger.info("asserting the expected action category description: '" + str(
            row1["actionmetadataname"]) + "' is the same as the actual existing '" + str(
            row2["actioncategoryname"]) + "'")

        assert str(row1["actionmetadataname"]) == str(
            row2["actioncategoryname"]), "action category name is not correct!"
        logger.info("assertion passed!")

        logger.info("asserting the expected action category description: '" + str(
            row1["actionmetadatadescription"]) + "' is the same as the actual existing '" + str(
            row2["actioncategorydescription"]) + "'")

        assert str(row1["actionmetadatadescription"]) == str(
            row2["actioncategorydescription"]), "action meta-data category description is not correct!"
        logger.info("assertion passed!")

# Step Definition Implementation:
# Assert the saved api response flag with the expected flag
@Then('the system should reply the following')
def step_impl(context):
    logger.info("Then the system should reply the following:")
    model = getattr(context, "model", None)
    for row in context.table:
        logger.info("asserting the expected api response: '" + row["flag"] + "' and the actual response: '" +
                    GeneralVariables.api_responseflag['value'] + "'")
        assert row["flag"] == GeneralVariables.api_responseflag['value'], "Validation is not correct, Expected: " + row[
            "flag"] + " but the API response was: " + GeneralVariables.api_responseflag['value']
        logger.info("assertion passed!")