Added multiple A1 support in Near-RT RIC simulator
[sim/a1-interface.git] / near-rt-ric-simulator / test / STD_1.1.3 / basic_test.sh
1 #!/bin/bash
2
3 #  ============LICENSE_START===============================================
4 #  Copyright (C) 2020 Nordix Foundation. All rights reserved.
5 #  ========================================================================
6 #  Licensed under the Apache License, Version 2.0 (the "License");
7 #  you may not use this file except in compliance with the License.
8 #  You may obtain a copy of the License at
9 #
10 #       http://www.apache.org/licenses/LICENSE-2.0
11 #
12 #  Unless required by applicable law or agreed to in writing, software
13 #  distributed under the License is distributed on an "AS IS" BASIS,
14 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 #  See the License for the specific language governing permissions and
16 #  limitations under the License.
17 #  ============LICENSE_END=================================================
18 #
19
20 #Default port for the simulator
21 PORT=8085
22
23 . ../common/test_common.sh
24
25
26 echo "=== Simulator hello world ==="
27 RESULT="OK"
28 do_curl GET / 200
29
30 echo "=== Check used and implemented interfaces ==="
31 RESULT="Current interface: STD_1.1.3 All supported A1 interface yamls in this container: ['1.1.x-alpha.2', 'STD_1.1.3', 'OSC_2.1.0']"
32 do_curl GET /container_interfaces 200
33
34 echo "=== Reset simulator instances ==="
35 RESULT="All policy instances deleted"
36 do_curl POST /deleteinstances 200
37
38 echo "=== Reset simulator, all ==="
39 RESULT="All policy instances deleted"
40 do_curl POST /deleteall 200
41
42 echo "=== API: Get policy instances, shall be empty=="
43 RESULT="json:[]"
44 do_curl GET /A1-P/v1/policies 200
45
46 echo "=== API: Create policy instance pi1 ==="
47 RESULT="json:{\"scope\": {\"ueId\": \"ue1\", \"groupId\": \"group1\", \"sliceId\": \"slice1\", \"qosId\": \"qos1\", \"cellId\": \"cell1\"}, \"statement\": {\"priorityLevel\": 5}}"
48 do_curl PUT /A1-P/v1/policies/pi1 201 jsonfiles/pi1.json
49
50 echo "=== API: Update policy instance pi1 ==="
51 RESULT="json:{\"scope\": {\"ueId\": \"ue1\", \"groupId\": \"group1\", \"sliceId\": \"slice1\", \"qosId\": \"qos1\", \"cellId\": \"cell1\"}, \"statement\": {\"priorityLevel\": 6}}"
52 do_curl PUT /A1-P/v1/policies/pi1 200 jsonfiles/pi1_updated.json
53
54 echo "=== API: Get policy instances, shall contain pi1=="
55 RESULT="json:[ \"pi1\" ]"
56 do_curl GET /A1-P/v1/policies 200
57
58 echo "=== API: Create policy instance pi2 (copy of pi1). Shall fail ==="
59 RESULT="json:{\"title\": \"The policy json already exists.\", \"status\": 400, \"instance\": \"pi2\"}"
60 do_curl PUT /A1-P/v1/policies/pi2 400 jsonfiles/pi1_updated.json
61
62 echo "=== Set force response code 409. ==="
63 RESULT="*"
64 do_curl POST '/forceresponse?code=409' 200
65
66 echo "=== API: Get policy instances, shall fail =="
67 RESULT="json:{\"title\": \"Conflict\", \"status\": 409, \"detail\": \"Request could not be processed in the current state of the resource\"}"
68 do_curl GET /A1-P/v1/policies 409
69
70 echo "=== API: Get policy status ==="
71 RESULT="json:{\"enforceStatus\": \"UNDEFINED\"}"
72 do_curl GET /A1-P/v1/policies/pi1/status 200
73
74 echo "=== API: Create policy instance pi2 ==="
75 RESULT="json:{\"scope\": {\"ueId\": \"ue2\", \"groupId\": \"group2\", \"sliceId\": \"slice2\", \"qosId\": \"qos2\", \"cellId\": \"cell2\"}, \"statement\": {\"priorityLevel\": 10}}"
76 do_curl PUT /A1-P/v1/policies/pi2 201 jsonfiles/pi2.json
77
78 echo "=== API: Update policy instance pi2 ==="
79 RESULT="json:{\"scope\": {\"ueId\": \"ue2\", \"groupId\": \"group2\", \"sliceId\": \"slice2\", \"qosId\": \"qos2\", \"cellId\": \"cell2\"}, \"statement\": {\"priorityLevel\": 10}}"
80 do_curl PUT '/A1-P/v1/policies/pi2?notificationDestination=http://localhost:8085/statustest' 200 jsonfiles/pi2.json
81
82 echo "=== API: Get policy instances, shall contain pi1 and pi2=="
83 RESULT="json:[ \"pi1\", \"pi2\" ]"
84 do_curl GET /A1-P/v1/policies 200
85
86 echo "=== Set force delay 10. ==="
87 RESULT="Force delay: 10 sec set for all A1 responses"
88 do_curl POST '/forcedelay?delay=10' 200
89
90 echo "=== API: Get policy instances, shall contain pi1 and pi2 and delayed 10 sec=="
91 RESULT="json:[ \"pi1\", \"pi2\" ]"
92 do_curl GET /A1-P/v1/policies 200
93
94 echo "=== Reset force delay. ==="
95 RESULT="Force delay: None sec set for all A1 responses"
96 do_curl POST /forcedelay 200
97
98 echo "=== API: GET policy instance pi1 ==="
99 RESULT="json:{\"scope\": {\"ueId\": \"ue1\", \"groupId\": \"group1\", \"sliceId\": \"slice1\", \"qosId\": \"qos1\", \"cellId\": \"cell1\"}, \"statement\": {\"priorityLevel\": 6}}"
100 do_curl GET /A1-P/v1/policies/pi1 200
101
102 echo "=== API: GET policy instance pi2 ==="
103 RESULT="json:{\"scope\": {\"ueId\": \"ue2\", \"groupId\": \"group2\", \"sliceId\": \"slice2\", \"qosId\": \"qos2\", \"cellId\": \"cell2\"}, \"statement\": {\"priorityLevel\": 10}}"
104 do_curl GET /A1-P/v1/policies/pi2 200
105
106 echo "=== API: DELETE policy instance pi1 ==="
107 RESULT=""
108 do_curl DELETE /A1-P/v1/policies/pi1 204
109
110 echo "=== API: Get policy status for pi1, shall fail==="
111 RESULT="json:{\"title\": \"The policy identity does not exist.\", \"status\": 404, \"detail\": \"There is no existing policy instance with the identity: pi1\", \"instance\": \"pi1\"}"
112 do_curl GET /A1-P/v1/policies/pi1/status 404
113
114 echo "=== Set status for policy instance pi2 ==="
115 RESULT="Status set to OK for policy: pi2"
116 do_curl PUT '/status?policyid=pi2&status=OK' 200
117
118 echo "=== API: Get policy status for pi2==="
119 RESULT="json:{\"enforceStatus\": \"OK\"}"
120 do_curl GET /A1-P/v1/policies/pi2/status 200
121
122 echo "=== Set status for policy instance pi2 ==="
123 RESULT="Status set to NOTOK and notok_reason for policy: pi2"
124 do_curl PUT '/status?policyid=pi2&status=NOTOK&reason=notok_reason' 200
125
126 echo "=== API: Get policy status for pi2 ==="
127 RESULT="json:{\"enforceStatus\": \"NOTOK\", \"enforceReason\": \"notok_reason\"}"
128 do_curl GET /A1-P/v1/policies/pi2/status 200
129
130 echo "=== Send status for pi2==="
131 RESULT="json:{\"enforceStatus\": \"NOTOK\", \"enforceReason\": \"notok_reason\"}"
132 do_curl POST '/sendstatus?policyid=pi2' 200
133
134 echo "=== Get counter: intstance ==="
135 RESULT="1"
136 do_curl GET /counter/num_instances 200
137
138 echo "=== Get counter: types (shall be 0)==="
139 RESULT="0"
140 do_curl GET /counter/num_types 200
141
142 echo "=== Get counter: interface ==="
143 RESULT="STD_1.1.3"
144 do_curl GET /counter/interface 200
145
146 echo "********************"
147 echo "*** All tests ok ***"
148 echo "********************"