BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 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 | |
| 21 | TC_ONELINE_DESCR="Sample tests of the SDNC A1 controller restconf API using http/https (no agent)" |
| 22 | |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 23 | #App names to exclude checking pulling images for, space separated list |
| 24 | EXCLUDED_IMAGES="PA CP SDNC_ONAP" |
| 25 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 26 | . ../common/testcase_common.sh $@ |
| 27 | . ../common/controller_api_functions.sh |
| 28 | . ../common/ricsimulator_api_functions.sh |
| 29 | |
| 30 | #### TEST BEGIN #### |
| 31 | |
BjornMagnussonXA | ad04778 | 2020-06-08 15:54:11 +0200 | [diff] [blame] | 32 | generate_uuid |
| 33 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 34 | #Test agent and simulator protocol versions (others are http only) |
BjornMagnussonXA | 575869c | 2020-09-14 21:28:54 +0200 | [diff] [blame] | 35 | NB_TESTED_PROTOCOLS="HTTP HTTPS" |
| 36 | SB_TESTED_PROTOCOLS="HTTP HTTPS" |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 37 | |
BjornMagnussonXA | 575869c | 2020-09-14 21:28:54 +0200 | [diff] [blame] | 38 | for __nb_httpx in $NB_TESTED_PROTOCOLS ; do |
| 39 | for __sb_httpx in $SB_TESTED_PROTOCOLS ; do |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 40 | |
BjornMagnussonXA | 575869c | 2020-09-14 21:28:54 +0200 | [diff] [blame] | 41 | echo "#####################################################################" |
| 42 | echo "#####################################################################" |
| 43 | echo "### Testing SDNC using Northbound: $__nb_httpx and Southbound: $__sb_httpx" |
| 44 | echo "#####################################################################" |
| 45 | echo "#####################################################################" |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 46 | |
| 47 | |
BjornMagnussonXA | 575869c | 2020-09-14 21:28:54 +0200 | [diff] [blame] | 48 | # Clean container and start all needed containers # |
| 49 | clean_containers |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 50 | |
BjornMagnussonXA | 575869c | 2020-09-14 21:28:54 +0200 | [diff] [blame] | 51 | start_ric_simulators ricsim_g1 1 OSC_2.1.0 |
| 52 | start_ric_simulators ricsim_g2 1 STD_1.1.3 |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 53 | |
BjornMagnussonXA | 575869c | 2020-09-14 21:28:54 +0200 | [diff] [blame] | 54 | start_sdnc |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 55 | |
BjornMagnussonXA | 575869c | 2020-09-14 21:28:54 +0200 | [diff] [blame] | 56 | if [ $__nb_httpx == "HTTPS" ]; then |
| 57 | # "Using secure ports towards SDNC" |
| 58 | use_sdnc_https |
| 59 | else |
| 60 | #"Using non-secure ports towards SDNC" |
| 61 | use_sdnc_http |
| 62 | fi |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 63 | |
BjornMagnussonXA | 575869c | 2020-09-14 21:28:54 +0200 | [diff] [blame] | 64 | if [ $__sb_httpx == "HTTPS" ]; then |
| 65 | # "Using secure ports towards SDNC" |
| 66 | use_simulator_https |
| 67 | else |
| 68 | #"Using non-secure ports towards SDNC" |
| 69 | use_simulator_http |
| 70 | fi |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 71 | |
BjornMagnussonXA | 575869c | 2020-09-14 21:28:54 +0200 | [diff] [blame] | 72 | # API tests |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 73 | |
BjornMagnussonXA | 575869c | 2020-09-14 21:28:54 +0200 | [diff] [blame] | 74 | controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 1 |
| 75 | |
| 76 | sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 77 | |
| 78 | |
BjornMagnussonXA | 575869c | 2020-09-14 21:28:54 +0200 | [diff] [blame] | 79 | controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1 |
| 80 | controller_api_get_A1_policy_ids 200 STD ricsim_g2_1 |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 81 | |
BjornMagnussonXA | 575869c | 2020-09-14 21:28:54 +0200 | [diff] [blame] | 82 | controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1 |
| 83 | controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1 testdata/OSC/sim_1.json |
| 84 | controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 99 |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 85 | |
BjornMagnussonXA | 575869c | 2020-09-14 21:28:54 +0200 | [diff] [blame] | 86 | controller_api_put_A1_policy 202 OSC ricsim_g1_1 1 4000 testdata/OSC/pi1_template.json |
| 87 | controller_api_put_A1_policy 404 OSC ricsim_g1_1 5 1001 testdata/OSC/pi1_template.json |
| 88 | controller_api_put_A1_policy 201 STD ricsim_g2_1 5000 testdata/STD/pi1_template.json |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 89 | |
BjornMagnussonXA | 575869c | 2020-09-14 21:28:54 +0200 | [diff] [blame] | 90 | controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1 4000 |
| 91 | controller_api_get_A1_policy_ids 200 STD ricsim_g2_1 5000 |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 92 | |
BjornMagnussonXA | 575869c | 2020-09-14 21:28:54 +0200 | [diff] [blame] | 93 | controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000 |
| 94 | controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000 |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 95 | |
BjornMagnussonXA | 575869c | 2020-09-14 21:28:54 +0200 | [diff] [blame] | 96 | VAL='NOT IN EFFECT' |
| 97 | controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000 "$VAL" "false" |
| 98 | controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000 "UNDEFINED" |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 99 | |
BjornMagnussonXA | 575869c | 2020-09-14 21:28:54 +0200 | [diff] [blame] | 100 | controller_api_delete_A1_policy 202 OSC ricsim_g1_1 1 4000 |
| 101 | controller_api_delete_A1_policy 204 STD ricsim_g2_1 5000 |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 102 | |
BjornMagnussonXA | 575869c | 2020-09-14 21:28:54 +0200 | [diff] [blame] | 103 | store_logs "NB_"$__nb_httpx"_SB_"$__sb_httpx |
| 104 | |
| 105 | done |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 106 | |
| 107 | done |
| 108 | |
| 109 | #### TEST COMPLETE #### |
| 110 | |
| 111 | print_result |
| 112 | |
| 113 | auto_clean_containers |