From 62b8b1254aff20a874a2867fda42bbaf3bb1b193 Mon Sep 17 00:00:00 2001 From: dglFromAtt Date: Sat, 3 Mar 2018 11:57:29 -0500 Subject: Initial CSIT framework for dmaap/buscontroller Change-Id: I068ccaafbeeea0d08949e83cccac56a238901aa3 Signed-off-by: dglFromAtt Issue-ID: DMAAP-318 --- .../scripts/dmaap-buscontroller/dmaapbc-init.sh | 52 ++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100755 test/csit/scripts/dmaap-buscontroller/dmaapbc-init.sh (limited to 'test/csit/scripts/dmaap-buscontroller/dmaapbc-init.sh') diff --git a/test/csit/scripts/dmaap-buscontroller/dmaapbc-init.sh b/test/csit/scripts/dmaap-buscontroller/dmaapbc-init.sh new file mode 100755 index 000000000..7ec7345d5 --- /dev/null +++ b/test/csit/scripts/dmaap-buscontroller/dmaapbc-init.sh @@ -0,0 +1,52 @@ +#!/bin/bash + +# $1 is the IP address of the buscontroller +# $2 is the IP address of the DRPS +# $3 is the IP address of the MRC + +# INITIALIZE: dmaap object +JSON=/tmp/$$.dmaap +cat << EOF > $JSON +{ + "version": "1", + "topicNsRoot": "org.onap.dmaap", + "drProvUrl": "http://${2}:8080", + "dmaapName": "onapCSIT", + "bridgeAdminTopic": "MM_AGENT_PROV" + +} +EOF + +curl -v -X POST -d @${JSON} -H "Content-Type: application/json" http://$1:8080/webapi/dmaap + + + +# INITIALIZE: dcaeLocation object +JSON=/tmp/$$.loc +cat << EOF > $JSON +{ + "dcaeLocationName": "csit-sanfrancisco", + "dcaeLayer": "central-cloud", + "clli": "CSIT12345", + "zone": "zoneA" + +} +EOF + +curl -v -X POST -d @${JSON} -H "Content-Type: application/json" http://$1:8080/webapi/dcaeLocations + + +# INITIALIZE: MR object in 1 site +JSON=/tmp/$$.mrc +cat << EOF > $JSON +{ + "dcaeLocationName": "csit-sanfrancisco", + "fqdn": "$3", + "hosts" : [ "$3", "$3", "$3" ], + "protocol" : "https", + "port": "3094" + +} +EOF + +curl -v -X POST -d @${JSON} -H "Content-Type: application/json" http://$1:8080/webapi/mr_clusters -- cgit 1.2.3-korg