BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 1 | #!/usr/bin/env 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 | |
| 21 | TC_ONELINE_DESCR="Sample tests of the SDNC A1 controller restconf API" |
| 22 | |
| 23 | . ../common/testcase_common.sh $@ |
| 24 | . ../common/controller_api_functions.sh |
| 25 | . ../common/ricsimulator_api_functions.sh |
| 26 | |
| 27 | #### TEST BEGIN #### |
| 28 | |
| 29 | # Clean container and start all needed containers # |
| 30 | clean_containers |
| 31 | |
| 32 | start_ric_simulators ricsim_g1 1 OSC_2.1.0 |
| 33 | start_ric_simulators ricsim_g2 1 STD_1.1.3 |
| 34 | |
| 35 | start_sdnc |
| 36 | |
| 37 | # API tests |
| 38 | echo -e $YELLOW"TR13"$EYELLOW |
| 39 | controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 1 |
| 40 | |
| 41 | sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json |
| 42 | |
| 43 | |
| 44 | controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1 |
| 45 | controller_api_get_A1_policy_ids 200 STD ricsim_g2_1 |
| 46 | |
| 47 | controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1 |
| 48 | controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1 testdata/OSC/sim_1.json |
| 49 | |
| 50 | controller_api_put_A1_policy 202 OSC ricsim_g1_1 1 4000 testdata/OSC/pi1_template.json |
| 51 | controller_api_put_A1_policy 201 STD ricsim_g2_1 5000 testdata/STD/pi1_template.json |
| 52 | |
| 53 | controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1 4000 |
| 54 | controller_api_get_A1_policy_ids 200 STD ricsim_g2_1 5000 |
| 55 | |
| 56 | controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000 |
| 57 | controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000 |
| 58 | |
| 59 | VAL='NOT IN EFFECT' |
| 60 | controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000 "$VAL" "false" |
| 61 | controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000 "UNDEFINED" |
| 62 | |
| 63 | controller_api_delete_A1_policy 202 OSC ricsim_g1_1 1 4000 |
| 64 | controller_api_delete_A1_policy 204 STD ricsim_g2_1 5000 |
| 65 | |
| 66 | |
| 67 | |
| 68 | store_logs END |
| 69 | |
| 70 | #### TEST COMPLETE #### |
| 71 | |
| 72 | print_result |
| 73 | |
| 74 | auto_clean_containers |