summaryrefslogtreecommitdiffstats
path: root/test/csit/plans/dcaegen2/prh_testsuites
diff options
context:
space:
mode:
authorwejs <maciej.wejs@nokia.com>2018-05-25 13:58:11 +0200
committerwejs <maciej.wejs@nokia.com>2018-05-25 14:20:41 +0200
commit060bc42881341b5b6259bc43895ab1ab5626189c (patch)
tree8bfbc334b0ef71e6077d2e690ee5e780c396bb2b /test/csit/plans/dcaegen2/prh_testsuites
parent0d28fe6e20d46380a25ac7e17a01b11cabe63db4 (diff)
Initial testcase with docker-compose for PRH
Test without usage of previously committed robotframework. To be done later on. Now just to check whether it works with CI. Change-Id: I94ae148e727db3820cf7eb93ba2a4286d176bfbc Issue-ID: INT-510 Signed-off-by: wejs <maciej.wejs@nokia.com>
Diffstat (limited to 'test/csit/plans/dcaegen2/prh_testsuites')
-rw-r--r--test/csit/plans/dcaegen2/prh_testsuites/setup.sh50
-rw-r--r--test/csit/plans/dcaegen2/prh_testsuites/teardown.sh19
-rw-r--r--test/csit/plans/dcaegen2/prh_testsuites/testplan.txt3
3 files changed, 72 insertions, 0 deletions
diff --git a/test/csit/plans/dcaegen2/prh_testsuites/setup.sh b/test/csit/plans/dcaegen2/prh_testsuites/setup.sh
new file mode 100644
index 000000000..9b1dbd396
--- /dev/null
+++ b/test/csit/plans/dcaegen2/prh_testsuites/setup.sh
@@ -0,0 +1,50 @@
+#!/bin/bash
+
+source ${SCRIPTS}/common_functions.sh
+
+export PRH_SERVICE="prh"
+export DMAAP_SIMULATOR="dmaap_simulator"
+
+cd ${WORKSPACE}/test/csit/tests/prh/testcases/resources/
+
+docker login -u docker -p docker nexus3.onap.org:10003
+docker-compose up -d
+
+# Wait for initialization of Docker containers
+for i in {1..50}; do
+ if [ $(docker inspect --format '{{ .State.Running }}' ${PRH_SERVICE}) ] && \
+ [ $(docker inspect --format '{{ .State.Running }}' ${DMAAP_SIMULATOR}) ]
+ then
+ echo "dmaap_simulator and prh services are running"
+ break
+ else
+ echo sleep ${i}
+ sleep ${i}
+ fi
+done
+
+PRH_IP=$(docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' ${PRH_SERVICE})
+DMAAP_SIMULATOR_IP=$(docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' ${DMAAP_SIMULATOR})
+
+bypass_ip_adress ${PRH_IP}
+bypass_ip_adress ${DMAAP_SIMULATOR_IP}
+
+echo PRH_IP=${PRH_IP}
+echo DMAAP_SIMULATOR_IP=${DMAAP_SIMULATOR_IP}
+
+# Wait for initialization of docker services
+for i in {1..50}; do
+ curl -sS -m 1 localhost:2222 && \
+ curl -sS -m 1 localhost:8100/heartbeat && break
+ echo sleep ${i}
+ sleep ${i}
+done
+
+#
+docker cp prh:/config/prh_endpoints.json ${WORKDIR}
+sed -i -e 's/"dmaapHostName":.*/"dmaapHostName": "'${DMAAP_SIMULATOR_IP}'",/g' ${WORKDIR}/prh_endpoints.json
+sed -i -e 's/"aaiHost":.*/"aaiHost": "'${DMAAP_SIMULATOR_IP}'",/g' ${WORKDIR}/prh_endpoints.json
+docker cp ${WORKDIR}/prh_endpoints.json prh:/config/
+
+#Pass any variables required by Robot test suites in ROBOT_VARIABLES
+ROBOT_VARIABLES="-v DMAAP_SIMULATOR:localhost:2222 -v PRH:localhost:8100" \ No newline at end of file
diff --git a/test/csit/plans/dcaegen2/prh_testsuites/teardown.sh b/test/csit/plans/dcaegen2/prh_testsuites/teardown.sh
new file mode 100644
index 000000000..5ff3c6689
--- /dev/null
+++ b/test/csit/plans/dcaegen2/prh_testsuites/teardown.sh
@@ -0,0 +1,19 @@
+#!/bin/bash
+#
+# Copyright 2017 Nokia, Inc. and others.
+#
+# 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.
+#
+
+kill-instance.sh prh
+kill-instance.sh dmaap_simulator \ No newline at end of file
diff --git a/test/csit/plans/dcaegen2/prh_testsuites/testplan.txt b/test/csit/plans/dcaegen2/prh_testsuites/testplan.txt
new file mode 100644
index 000000000..480dc6409
--- /dev/null
+++ b/test/csit/plans/dcaegen2/prh_testsuites/testplan.txt
@@ -0,0 +1,3 @@
+# Test suites are relative paths under [integration.git]/test/csit/tests/.
+# Place the suites in run order.
+prh/testcases