summaryrefslogtreecommitdiffstats
path: root/ci/run_tests.sh
diff options
context:
space:
mode:
authorSteven Pisarski <s.pisarski@cablelabs.com>2017-08-11 14:47:56 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-08-11 14:47:56 +0000
commit9c023d8d1c85650b33e6375d58cd1b45c8d0d395 (patch)
treecf5c4bf0f43115f91f9073a6e9c310555426ef3a /ci/run_tests.sh
parent887c0c9010e8b23bf7c955c0809c1b761ddf2096 (diff)
parentdc6d1cf2c179220226bda7fd2475c74693063a75 (diff)
Merge "Scripts to allow Jenkins to run the SNAPS-OO tests."
Diffstat (limited to 'ci/run_tests.sh')
-rwxr-xr-xci/run_tests.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/ci/run_tests.sh b/ci/run_tests.sh
new file mode 100755
index 0000000..14f1a11
--- /dev/null
+++ b/ci/run_tests.sh
@@ -0,0 +1,25 @@
+#!/usr/bin/env bash
+
+set -e
+
+# Setup Python runtime
+sudo pip install virtualenv
+virtualenv ./vpy
+source ./vpy/bin/activate
+pip install -e ../
+
+# $1 is the IP to the pod's build server
+# $2 is the IP to the pod's control server
+
+# This operation installs squid on the pod's build server
+ansible-playbook -i ${1}, setup_proxy.yaml
+
+# Get RC file from control server
+filename=$(ssh -o StrictHostKeyChecking=no root@${2} find /var/lib/lxc/controller00_nova_api_placement_container-* -name openrc)
+scp root@${2}:${filename} .
+
+# Execute tests
+python ../snaps/test_runner.py -e openrc -n public -ci -p ${1}:3128
+
+# Cleanup virtual python runtime
+rm -rf ./vpy