Skip to content

Commit bac73df

Browse files
committed
aci-sys-infra commit 1
1 parent c8d02ae commit bac73df

File tree

4 files changed

+347
-75
lines changed

4 files changed

+347
-75
lines changed

systemtests/ACI-Automation-README.md

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
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.

systemtests/aci_test.go

+45
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,48 @@ func (s *systemtestSuite) TestACIMode(c *C) {
5959
c.Assert(s.cli.EndpointGroupDelete("default", "epgB"), IsNil)
6060
c.Assert(s.cli.NetworkDelete("default", "aciNet"), IsNil)
6161
}
62+
63+
func (s *systemtestSuite) TestACIPingGateway(c *C) {
64+
if s.fwdMode == "routing" {
65+
return
66+
}
67+
c.Assert(s.cli.GlobalPost(&client.Global{
68+
Name: "global",
69+
NetworkInfraType: "aci",
70+
Vlans: "1100-1200",
71+
Vxlans: "1-10000",
72+
}), IsNil)
73+
c.Assert(s.cli.TenantPost(&client.Tenant{
74+
TenantName: "aciTenant",
75+
}), IsNil)
76+
c.Assert(s.cli.NetworkPost(&client.Network{
77+
TenantName: "aciTenant",
78+
NetworkName: "aciNet",
79+
Subnet: "20.1.1.0/24",
80+
Gateway: "20.1.1.254",
81+
Encap: "vlan",
82+
}), IsNil)
83+
84+
c.Assert(s.cli.EndpointGroupPost(&client.EndpointGroup{
85+
TenantName: "aciTenant",
86+
NetworkName: "aciNet",
87+
GroupName: "epgA",
88+
}), IsNil)
89+
90+
c.Assert(s.cli.AppProfilePost(&client.AppProfile{
91+
TenantName: "aciTenant",
92+
EndpointGroups: []string{"epgA"},
93+
AppProfileName: "profile1",
94+
}), IsNil)
95+
96+
cA1, err := s.nodes[0].runContainer(containerSpec{networkName: "epgA/aciTenant"})
97+
c.Assert(err, IsNil)
98+
99+
// Verify cA1 can ping default gateway
100+
c.Assert(cA1.checkPing("20.1.1.254"), IsNil)
101+
102+
c.Assert(s.removeContainers([]*container{cA1}), IsNil)
103+
c.Assert(s.cli.AppProfileDelete("aciTenant", "profile1"), IsNil)
104+
c.Assert(s.cli.EndpointGroupDelete("aciTenant", "epgA"), IsNil)
105+
c.Assert(s.cli.NetworkDelete("aciTenant", "aciNet"), IsNil)
106+
}

0 commit comments

Comments
 (0)