This repository has been archived by the owner on Feb 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMSO-LO-SUBS.robot
69 lines (58 loc) · 2.45 KB
/
MSO-LO-SUBS.robot
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
*** Settings ***
Resource environment/variables.robot
Variables ${SCHEMAS_PATH}
Resource NSLCMOperationKeywords.robot
Library REST ${MSO-LO_BASE_API}
Library OperatingSystem
Library JSONLibrary
Library JSONSchemaLibrary schemas/
*** Test Cases ***
POST Subscription Creation 201
[Documentation] Test ID: mso-lo-test-
... Test title: POST Subscription Creation 201
POST New Subscription Good
Check HTTP Response Status Code Is 201
Check HTTP Response Body Json Schema Is ${subscription_schema}
Check Sub Id
POST Subscription Creation 400
[Documentation] Test ID: mso-lo-test-
... Test title: POST Subscription Creation 400
POST New Subscription Bad
Check HTTP Response Status Code Is 400
GET Subscription List 200
[Documentation] Test ID: mso-lo-test-
... Test title: GET Subscription List
GET Subscriptions
Check HTTP Response Status Code Is 200
Check HTTP Response Body Json Schema Is ${subscription_list_schema}
GET Individual Subscription information 200
[Documentation] Test ID: mso-lo-test-
... Test title: GET Individual Subscription information 200
GET Individual Subscription Good
Check HTTP Response Status Code Is 200
Check HTTP Response Body Json Schema Is ${subscription_schema}
GET Individual Subscription information 404
[Documentation] Test ID: mso-lo-test-
... Test title: GET Individual Subscription information 404
GET Individual Subscription Not Found
Check HTTP Response Status Code Is 404
DELETE Individual Subscription information 204
[Documentation] Test ID: mso-lo-test-
... Test title: DELETE Individual Subscription information 200
DELETE Individual Subscription Good
Check HTTP Response Status Code Is 204
DELETE Individual Subscription information 404
[Documentation] Test ID: mso-lo-test-
... Test title: DELETE Individual Subscription information 404
DELETE Individual Subscription Not Found
Check HTTP Response Status Code Is 404
POST Notification Creation 204
[Documentation] Test ID: mso-lo-test-
... Test title: POST Notification Creation 204
POST New Notification Good
Check HTTP Response Status Code Is 204
POST Notification Creation 400
[Documentation] Test ID: mso-lo-test-
... Test title: POST Subscription Creation 400
POST New Notification Bad
Check HTTP Response Status Code Is 400