From 91158e54ff8cd8f82fe6d9f03770dd160c521cdc Mon Sep 17 00:00:00 2001 From: zhaoxinyu Date: Mon, 24 Feb 2014 23:09:23 +0000 Subject: [PATCH] move end 2 end test sequence scripts from jenkins job config to stackforge so changes to codes can be aligned with changes to test scripts. Change-Id: I544e21dfbf524e79b16b2cfdc634cd8a5ad8fc18 --- misc/ci/pxe-deploy.sh | 8 ++++++++ misc/ci/pxe-prepare.sh | 29 +++++++++++++++++++++++++++++ misc/ci/test-install.sh | 17 +++++++++++++++++ 3 files changed, 54 insertions(+) create mode 100755 misc/ci/pxe-deploy.sh create mode 100755 misc/ci/pxe-prepare.sh create mode 100755 misc/ci/test-install.sh diff --git a/misc/ci/pxe-deploy.sh b/misc/ci/pxe-deploy.sh new file mode 100755 index 00000000..9647b6b5 --- /dev/null +++ b/misc/ci/pxe-deploy.sh @@ -0,0 +1,8 @@ +#!/bin/bash -xe +cp compass-core/compass/apiclient/example.py /tmp/test.py +chmod +x /tmp/test.py +virsh destroy pxe01 +virsh start pxe01 +virsh list +source compass-core/install/install.conf.template +/usr/bin/python /tmp/test.py diff --git a/misc/ci/pxe-prepare.sh b/misc/ci/pxe-prepare.sh new file mode 100755 index 00000000..e54d5949 --- /dev/null +++ b/misc/ci/pxe-prepare.sh @@ -0,0 +1,29 @@ +#!/bin/bash -x +if [[ ! -e /tmp/pxe01.raw ]]; then + qemu-img create -f raw /tmp/pxe01.raw 20G +else + rm -rf /tmp/pxe01.raw + qemu-img create -f raw /tmp/pxe01.raw 20G +fi +virsh list |grep pxe01 +vmrc=$? +if [[ $vmrc -eq 0 ]] ; then + virsh destroy pxe01 + virsh undefine pxe01 +else + echo "no legacy pxe vm found" +fi +virt-install --accelerate --hvm --connect qemu:///system \ + --network=bridge:installation,mac=00:11:20:30:40:01 --pxe \ + --network=network:default \ + --name pxe01 --ram=4096 \ + --disk /tmp/pxe01.raw,format=raw \ + --vcpus=10 \ + --graphics vnc,listen=0.0.0.0 --noautoconsole \ + --os-type=linux --os-variant=rhel6 +rm -rf switch-file +echo "machine,10.145.81.220,5,1,00:11:20:30:40:01" > switch-file +echo "switch,10.145.81.220,huawei,v2c,public,under_monitoring" >> switch-file +/usr/bin/python /opt/compass/bin/manage_db.py set_switch_machines --switch_machines_file switch-file +/usr/bin/python /opt/compass/bin/manage_db.py clean_clusters +/usr/bin/python /opt/compass/bin/manage_db.py clean_installation_progress diff --git a/misc/ci/test-install.sh b/misc/ci/test-install.sh new file mode 100755 index 00000000..ef6ca2ab --- /dev/null +++ b/misc/ci/test-install.sh @@ -0,0 +1,17 @@ +#!/bin/bash -x +# create a bridge named 'installation' so that compass and pxeboot vm are in the +# same l2 network. +brctl show |grep installation > /dev/null +if [[ $? -eq 0 ]] ; then + echo "bridge already exists" +else + brctl addbr installation + brctl addif installation eth1 + ifconfig eth1 up + dhclient -r eth1 + dhclient -r installation + dhclient installation +fi +source compass-core/install/install.conf.template +/bin/bash -x compass-core/install/install.sh +sleep 5