X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=integration_tests%2Ftest_a1.tavern.yaml;h=55a8937d551abe707adeceeb4c1f42c349b5a200;hb=f87c8579c3ed3e2dbf531c4c4c7e3b15489c7bdb;hp=25d06be425cafd35a8bb4413c1d82c2e46a932ac;hpb=91ae88989c82b08b9fb69a28f838d6b80681d953;p=ric-plt%2Fa1.git diff --git a/integration_tests/test_a1.tavern.yaml b/integration_tests/test_a1.tavern.yaml index 25d06be..55a8937 100644 --- a/integration_tests/test_a1.tavern.yaml +++ b/integration_tests/test_a1.tavern.yaml @@ -22,6 +22,21 @@ stages: response: status_code: 404 + - name: type list empty + request: + url: http://localhost:10000/a1-p/policytypes + method: GET + response: + status_code: 200 + body: [] + + - name: instance list 404 + request: + url: http://localhost:10000/a1-p/policytypes/20000/policies + method: GET + response: + status_code: 404 + - name: put the type request: url: http://localhost:10000/a1-p/policytypes/20000 @@ -60,6 +75,8 @@ stages: - trigger_threshold - window_length additionalProperties: false + response: + status_code: 201 - name: type there now request: @@ -68,6 +85,22 @@ stages: response: status_code: 200 + - name: now in type list + request: + url: http://localhost:10000/a1-p/policytypes + method: GET + response: + status_code: 200 + body: [20000] + + - name: instance list 200 but empty + request: + url: http://localhost:10000/a1-p/policytypes/20000/policies + method: GET + response: + status_code: 200 + body: [] + - name: test the admission control policy get not there yet request: url: http://localhost:10000/a1-p/policytypes/20000/policies/admission_control_policy @@ -82,7 +115,27 @@ stages: response: status_code: 404 - - name: put the admission control policy + - name: bad body for admission control policy + request: + url: http://localhost:10000/a1-p/policytypes/20000/policies/admission_control_policy + method: PUT + json: + not: "expected" + headers: + content-type: application/json + response: + status_code: 400 + + - name: not a json + request: + url: http://localhost:10000/a1-p/policytypes/20000/policies/admission_control_policy + method: PUT + data: "asdf" + response: + status_code: 415 + + # put it properly + - name: put the admission control policy instance request: url: http://localhost:10000/a1-p/policytypes/20000/policies/admission_control_policy method: PUT @@ -94,7 +147,15 @@ stages: headers: content-type: application/json response: - status_code: 201 + status_code: 202 + + - name: cant delete type with instances + delay_before: 3 # wait for the type acks to come back first + request: + url: http://localhost:10000/a1-p/policytypes/20000 + method: DELETE + response: + status_code: 400 - name: test the admission control policy get request: @@ -113,11 +174,79 @@ stages: request: url: http://localhost:10000/a1-p/policytypes/20000/policies/admission_control_policy/status method: GET + response: + status_code: 200 + # tavern doesn't yet let you check string statuses!!! + + - name: instance list 200 and contains the instance + request: + url: http://localhost:10000/a1-p/policytypes/20000/policies + method: GET response: status_code: 200 body: - - handler_id: test_receiver - status: OK + - admission_control_policy + + # DELETE the instance and make sure subsequent GETs return properly + - name: delete the instance + request: + url: http://localhost:10000/a1-p/policytypes/20000/policies/admission_control_policy + method: DELETE + response: + status_code: 202 + + - name: instance list 200 but no instance + request: + url: http://localhost:10000/a1-p/policytypes/20000/policies + method: GET + response: + status_code: 200 + body: [] + + - name: cant get instance status + delay_before: 3 # give it a few seconds for rmr + request: + url: http://localhost:10000/a1-p/policytypes/20000/policies/admission_control_policy/status + method: GET + response: + status_code: 404 + + - name: cant get instance + request: + url: http://localhost:10000/a1-p/policytypes/20000/policies/admission_control_policy + method: GET + response: + status_code: 404 + + - name: delete ac type + request: + url: http://localhost:10000/a1-p/policytypes/20000 + method: DELETE + response: + status_code: 204 + + - name: cant delete again + request: + url: http://localhost:10000/a1-p/policytypes/20000 + method: DELETE + response: + status_code: 404 + + - name: cant get + request: + url: http://localhost:10000/a1-p/policytypes/20000 + method: DELETE + response: + status_code: 404 + + - name: empty type list + request: + url: http://localhost:10000/a1-p/policytypes + method: GET + response: + status_code: 200 + body: [] + --- @@ -132,6 +261,21 @@ stages: response: status_code: 404 + - name: not yet in type list + request: + url: http://localhost:10000/a1-p/policytypes + method: GET + response: + status_code: 200 + body: [] + + - name: instance list 404 + request: + url: http://localhost:10000/a1-p/policytypes/20001/policies + method: GET + response: + status_code: 404 + - name: put the type request: url: http://localhost:10000/a1-p/policytypes/20001 @@ -149,6 +293,8 @@ stages: required: - test additionalProperties: false + response: + status_code: 201 - name: type there now request: @@ -170,6 +316,23 @@ stages: - test additionalProperties: false + - name: now in type list + request: + url: http://localhost:10000/a1-p/policytypes + method: GET + response: + status_code: 200 + body: + - 20001 + + - name: instance list 200 but empty + request: + url: http://localhost:10000/a1-p/policytypes/20001/policies + method: GET + response: + status_code: 200 + body: [] + - name: test the delay policy instance get not there yet request: url: http://localhost:10000/a1-p/policytypes/20001/policies/delaytest @@ -184,7 +347,16 @@ stages: response: status_code: 404 - - name: test the delay policy + - name: bad body for delaytest + request: + url: http://localhost:10000/a1-p/policytypes/20001/policies/delaytest + method: PUT + json: + not: "welcome" + response: + status_code: 400 + + - name: create delay policy instance request: url: http://localhost:10000/a1-p/policytypes/20001/policies/delaytest method: PUT @@ -193,7 +365,7 @@ stages: headers: content-type: application/json response: - status_code: 201 + status_code: 202 - name: test the delay policy get request: @@ -204,17 +376,69 @@ stages: body: test: foo - - name: test the admission control policy status get - delay_before: 8 # give it a few seconds for rmr ; delay reciever sleeps for 5 seconds by default + - name: test the delay status get + max_retries: 3 + delay_before: 6 # give it a few seconds for rmr ; delay reciever sleeps for 5 seconds by default request: url: http://localhost:10000/a1-p/policytypes/20001/policies/delaytest/status method: GET + response: + status_code: 200 + # tavern doesn't let you check non json yet! + + - name: instance list 200 and there + request: + url: http://localhost:10000/a1-p/policytypes/20001/policies + method: GET response: status_code: 200 body: - - handler_id: delay_receiver - status: OK + - delaytest + +--- +test_name: test bad routing file endpoint + +stages: + + - name: put the type + request: + url: http://localhost:10000/a1-p/policytypes/20002 + method: PUT + json: + name: test policy + description: just for testing + policy_type_id: 20002 + create_schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + properties: + test: + type: string + required: + - test + additionalProperties: false + + - name: create policy instance that will go to a broken routing endpoint + request: + url: http://localhost:10000/a1-p/policytypes/20002/policies/brokentest + method: PUT + json: + test: foo + headers: + content-type: application/json + response: + status_code: 202 + + - name: should be no status + request: + url: http://localhost:10000/a1-p/policytypes/20002/policies/brokentest/status + method: GET + response: + status_code: 200 + body: [] + + # this one cant currently be deleted, see the comment in a1/data.py --- @@ -224,15 +448,14 @@ stages: - name: bad type get request: - url: http://localhost:10000/a1-p/policytypes/20002 + url: http://localhost:10000/a1-p/policytypes/20666 method: GET response: status_code: 404 - - - name: bad instance get + - name: bad instance get bad type request: - url: http://localhost:10000/a1-p/policytypes/20000/policies/darkness + url: http://localhost:10000/a1-p/policytypes/20666/policies/nonono method: GET response: status_code: 404 @@ -266,32 +489,3 @@ stages: status_code: 400 - - - - name: bad body for admission control policy - request: - url: http://localhost:10000/a1-p/policytypes/20000/policies/admission_control_policy - method: PUT - json: - not: "expected" - headers: - content-type: application/json - response: - status_code: 400 - - - name: not a json - request: - url: http://localhost:10000/a1-p/policytypes/20000/policies/admission_control_policy - method: PUT - data: "asdf" - response: - status_code: 415 - - - name: bad body for delaytest - request: - url: http://localhost:10000/a1-p/policytypes/20001/policies/delaytest - method: PUT - json: - not: "welcome" - response: - status_code: 400