diff options
Diffstat (limited to 'csit/plans/pmmapper/setup.sh')
-rw-r--r-- | csit/plans/pmmapper/setup.sh | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/csit/plans/pmmapper/setup.sh b/csit/plans/pmmapper/setup.sh index a0e823b..3867f1b 100644 --- a/csit/plans/pmmapper/setup.sh +++ b/csit/plans/pmmapper/setup.sh @@ -1,4 +1,20 @@ #!/bin/bash +# ============LICENSE_START======================================================= +# Copyright (C) 2022 NOKIA +# ================================================================================ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ============LICENSE_END========================================================= + # Place the scripts in run order: source ${SCRIPTS}/common_functions.sh @@ -72,22 +88,22 @@ done # Data Router Configuration. docker exec -i datarouter-prov sh -c \ - "curl -k -X PUT https://$DR_PROV_IP:8443/internal/api/NODES?val=dmaap-dr-node\|$GATEWAY_IP" + "curl -X PUT http://$DR_PROV_IP:8080/internal/api/NODES?val=dmaap-dr-node\|$GATEWAY_IP" docker exec -i datarouter-prov sh -c \ - "curl -k -X PUT https://$DR_PROV_IP:8443/internal/api/PROV_AUTH_ADDRESSES?val=dmaap-dr-prov\|$GATEWAY_IP" + "curl -X PUT http://$DR_PROV_IP:8080/internal/api/PROV_AUTH_ADDRESSES?val=dmaap-dr-prov\|$GATEWAY_IP" # Create PM Mapper feed and create PM Mapper subscriber on data router curl -v -X POST -H "Content-Type:application/vnd.dmaap-dr.feed" -H "X-DMAAP-DR-ON-BEHALF-OF:pmmapper" \ --data-ascii @$TEST_PLANS_DIR/assets/createFeed.json \ - --post301 --location-trusted -k https://${DR_PROV_IP}:8443 + --post301 --location-trusted "http://${DR_PROV_IP}:8080" curl -v -X POST -H "Content-Type:application/vnd.dmaap-dr.subscription" -H "X-DMAAP-DR-ON-BEHALF-OF:pmmapper" \ --data-ascii @$TEST_PLANS_DIR/assets/addSubscriber.json \ - --post301 --location-trusted -k https://${DR_PROV_IP}:8443/subscribe/1 + --post301 --location-trusted "http://${DR_PROV_IP}:8080/subscribe/1" docker cp pmmapper:/var/log/ONAP/dcaegen2/services/pm-mapper/pm-mapper_output.log /tmp/pmmapper.log sleep 10 docker exec -it datarouter-prov sh -c "curl http://dmaap-dr-node:8080/internal/fetchProv" -curl -k https://$DR_PROV_IP:8443/internal/prov +curl "http://$DR_PROV_IP:8080/internal/prov" #Pass any variables required by Robot test suites in ROBOT_VARIABLES ROBOT_VARIABLES="-v DR_PROV_IP:${DR_PROV_IP} -v DMAAP_MR_IP:${DMAAP_MR_IP} -v CBS_IP:${CBS_IP} -v PMMAPPER_IP:${PMMAPPER_IP} -v DR_NODE_IP:${DR_NODE_IP}" |