|
| 1 | +## ACI SystemTest Automation on Baremetal VMs |
| 2 | + |
| 3 | +This document is Guide to perform Automation of Systemtests for ACI mode of netplugin and netmaster on Baremetal VMs. |
| 4 | +Current systemtests (github.com/contiv/netplugin/systemtests) rely on vagrant VMs. For ACI testing , We need to have connectivity |
| 5 | +to APIC and ACI Fabric Switches from Baremetal VMs and Hosts. |
| 6 | + |
| 7 | + |
| 8 | +### PreRequisites: |
| 9 | + |
| 10 | +These are One time steps only. |
| 11 | + |
| 12 | +This ACI SystemTest automation works on Baremetal VMs which have met some criteria before. You need to make sure to have all these |
| 13 | +prerequisites satisfied before running automation suite. |
| 14 | + |
| 15 | +* You need to complete Pre-requisites, Step 1, Step 2, Step3 metioned here : https://github.com/contiv/demo/tree/master/net |
| 16 | +* Once you have cfg.yml ready you can run Swarm setup creation script like this. |
| 17 | + ``` |
| 18 | + ./net_demo_installer -ar |
| 19 | + ``` |
| 20 | +* Let us assume You have 3 Node Swarm Cluster. |
| 21 | + |
| 22 | +So have these Environment variables on Node 1 |
| 23 | + |
| 24 | +``` |
| 25 | +export HOST_IPS="<IP of Nodes seperate by ,>" |
| 26 | +export HOST_USER_NAMES="<User names of Nodes seperate by ,>" |
| 27 | +export HOST_DATA_INTERFACE="<Data interface of Node 1>" |
| 28 | +export GOPATH=/home/admin |
| 29 | +export GOBIN=$GOPATH/bin |
| 30 | +export PATH=$PATH:$GOBIN:/usr/local/go/bin |
| 31 | +export ACI_SYS_TEST_MODE=ON |
| 32 | +export DOCKER_HOST=<DOCKER_HOST and port output of running ./net_demo_installer -ar> |
| 33 | +
|
| 34 | + for eg: export DOCKER_HOST=10.193.246.4:2375 |
| 35 | +
|
| 36 | +export KEY_FILE=<Full path of Private key file used in SSH configuration> |
| 37 | +
|
| 38 | + for eg: export KEY_FILE=/home/admin/.ssh/id_rsa |
| 39 | +``` |
| 40 | + |
| 41 | +Have these Environment variables on Node 2 and Node 3 |
| 42 | +``` |
| 43 | +export DOCKER_HOST=10.193.246.4:2375 |
| 44 | +``` |
| 45 | + |
| 46 | +* Please check out Netplugin code under : $GOPATH/src/github.com/contiv/ on Node1 |
| 47 | + |
| 48 | +* Please make sure all Nodes has $GOBIN directory already created. |
| 49 | + |
| 50 | +### How to Run ACI Systemtests Automation |
| 51 | + |
| 52 | +These are the steps you need to run everytime you are running system-test infra. |
| 53 | + |
| 54 | +* Build the code on Node 1. You can run from $GOPATH/src/github.com/contiv/netplugin |
| 55 | +``` |
| 56 | +make run-build |
| 57 | +``` |
| 58 | +* Run Systemtests like this |
| 59 | +``` |
| 60 | +godep go test -v -timeout 240m ./systemtests -check.v -check.f "<Name of ACI Test Function>" |
| 61 | +for eg : |
| 62 | +
|
| 63 | +godep go test -v -timeout 240m ./systemtests -check.v -check.f "TestACIMode" |
| 64 | +
|
| 65 | + This will run TestACIMode test function metioned in systemtests/aci_test.go |
| 66 | +
|
| 67 | +godep go test -v -timeout 240m ./systemtests -check.v -check.f "TestACI" |
| 68 | +
|
| 69 | + This will run all the test function which are Starting from TestACI |
| 70 | +``` |
| 71 | + |
| 72 | +### Troubleshooting |
| 73 | + |
| 74 | +* First delete all netmaster, netctl, netplugin, contivk8s binaries from $GOBIN directory from All Nodes in Cluster |
| 75 | +* You can perform following steps to clear etcd states |
| 76 | +``` |
| 77 | +sudo etcdctl rm --recursive /contiv |
| 78 | +sudo etcdctl rm --recursive /contiv.io |
| 79 | +sudo etcdctl rm --recursive /docker |
| 80 | +sudo etcdctl rm --recursive /skydns |
| 81 | +``` |
| 82 | +* You can restart the nodes (sudo /sbin/shutdown -r now) |
| 83 | +* Run net_demo_installer script with -ar option again to launch Swarm cluster and all other services properly. |
| 84 | + This infra basically relies on this script to start all the services correctly and then it kills netplugin and netmaster |
| 85 | + services and start those from the source binaries which you build. |
0 commit comments