@@ -869,6 +869,8 @@ func checkDeleteTenant(t *testing.T, expError bool, tenant string) {
869
869
870
870
// TestTenantDelete tests deletion of tenant
871
871
func TestTenantDelete (t * testing.T ) {
872
+ // ensure global configs set
873
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
872
874
// Create one tenant, two networks and 3 epgs
873
875
checkCreateTenant (t , false , "tenant1" )
874
876
checkCreateNetwork (t , false , "tenant1" , "net1" , "data" , "vlan" , "10.1.1.1/16" , "10.1.1.254" , 1 , "" , "" , "" )
@@ -971,7 +973,8 @@ func TestTenantAddDelete(t *testing.T) {
971
973
972
974
// TestOverlappingSubnets tests overlapping network create/delete REST api
973
975
func TestOverlappingSubnets (t * testing.T ) {
974
-
976
+ // ensure global configs set
977
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
975
978
// Non-overlapping subnet for same tenant - vlan & gateway
976
979
checkCreateNetwork (t , false , "default" , "contiv1" , "" , "vlan" , "10.1.1.0/24" , "10.1.1.220" , 1 , "" , "" , "" )
977
980
checkCreateNetwork (t , false , "default" , "contiv2" , "" , "vlan" , "10.1.2.0/24" , "10.1.2.254" , 2 , "" , "" , "" )
@@ -1094,6 +1097,9 @@ func TestNetworkAddDeleteACIMode(t *testing.T) {
1094
1097
1095
1098
// TestNetworkAddDelete tests network create/delete REST api
1096
1099
func TestNetworkAddDelete (t * testing.T ) {
1100
+ // ensure global configs set
1101
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1102
+
1097
1103
// Basic vlan network
1098
1104
checkCreateNetwork (t , false , "default" , "contiv" , "" , "vlan" , "10.1.1.1/24" , "10.1.1.254" , 1 , "" , "" , "" )
1099
1105
checkInspectNetwork (t , false , "default" , "contiv" , "10.1.1.254" , 1 , 0 )
@@ -1201,9 +1207,10 @@ func TestNetworkAddDelete(t *testing.T) {
1201
1207
}
1202
1208
1203
1209
func TestDynamicGlobalVlanRange (t * testing.T ) {
1210
+ // ensure global configs set
1211
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1204
1212
1205
1213
// Basic vlan network creation
1206
-
1207
1214
checkCreateNetwork (t , false , "default" , "contiv1" , "" , "vlan" , "10.1.1.1/24" , "10.1.1.254" , 10 , "" , "" , "" )
1208
1215
checkInspectNetwork (t , false , "default" , "contiv1" , "10.1.1.254" , 10 , 0 )
1209
1216
//checkInspectGlobal(t, false, "1", "")
@@ -1265,7 +1272,8 @@ func TestDynamicGlobalVlanRange(t *testing.T) {
1265
1272
}
1266
1273
1267
1274
func TestDynamicGlobalVxlanRange (t * testing.T ) {
1268
-
1275
+ // ensure global configs set
1276
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1269
1277
insp , _ := contivClient .GlobalInspect ("global" ) // Basic vxlan network creation
1270
1278
1271
1279
log .Printf ("THE GLOBAL DUMP: %#v \n " , insp )
@@ -1380,6 +1388,9 @@ func TestAciGwSetting(t *testing.T) {
1380
1388
1381
1389
// TestNetworkPktRanges tests pkt-tag ranges in network REST api
1382
1390
func TestNetworkPktRanges (t * testing.T ) {
1391
+ // ensure global configs set
1392
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1393
+
1383
1394
// verify auto allocation of vlans
1384
1395
checkCreateNetwork (t , false , "default" , "contiv" , "data" , "vlan" , "10.1.1.1/24" , "10.1.1.254" , 0 , "" , "" , "" )
1385
1396
verifyNetworkState (t , "default" , "contiv" , "data" , "vlan" , "10.1.1.1" , "10.1.1.254" , 24 , 1 , 0 , "" , "" , 0 )
@@ -1418,6 +1429,9 @@ func TestNetworkPktRanges(t *testing.T) {
1418
1429
1419
1430
// TestPolicyRules tests policy and rule REST objects
1420
1431
func TestPolicyRules (t * testing.T ) {
1432
+ // ensure global configs set
1433
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1434
+
1421
1435
containerID1 := "723e55bf5b244f47c1b184cb786a1c2ad8870cc3a3db723c49ac09f68a9d1e69"
1422
1436
ep1 := "657355bf5b244f47c1b184cb786a14535d8870cc3a3db723c49ac09f68a9d6a5"
1423
1437
checkCreateNetwork (t , false , "default" , "contiv" , "data" , "vxlan" , "10.1.1.1/16" , "10.1.1.254" , 1 , "" , "" , "" )
@@ -1516,6 +1530,9 @@ func TestPolicyRules(t *testing.T) {
1516
1530
1517
1531
// TestEpgPolicies tests attaching policy to EPG
1518
1532
func TestEpgPolicies (t * testing.T ) {
1533
+ // ensure global configs set
1534
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1535
+
1519
1536
// create network
1520
1537
checkCreateNetwork (t , false , "default" , "contiv" , "data" , "vxlan" , "10.1.1.1/16" , "10.1.1.254" , 1 , "" , "" , "" )
1521
1538
@@ -1582,6 +1599,8 @@ func TestEpgPolicies(t *testing.T) {
1582
1599
1583
1600
// TestExtContractsGroups tests management of external contracts groups
1584
1601
func TestExtContractsGroups (t * testing.T ) {
1602
+ // ensure global configs set
1603
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1585
1604
// create network for the test
1586
1605
checkCreateNetwork (t , false , "default" , "test-net" , "data" , "vlan" , "23.1.1.1/16" , "23.1.1.254" , 1 , "" , "" , "" )
1587
1606
// create contract groups used for the test
@@ -1620,6 +1639,8 @@ func TestExtContractsGroups(t *testing.T) {
1620
1639
1621
1640
// TestAppProfile tests app-profile REST objects
1622
1641
func TestAppProfile (t * testing.T ) {
1642
+ // ensure global configs set
1643
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1623
1644
// Create two networks and 3 epgs
1624
1645
checkCreateNetwork (t , false , "default" , "net1" , "data" , "vlan" , "10.1.1.1/16" , "10.1.1.254" , 1 , "" , "" , "" )
1625
1646
checkCreateNetwork (t , false , "default" , "net2" , "data" , "vlan" , "20.1.1.1/16" , "20.1.1.254" , 2 , "" , "" , "" )
@@ -1650,6 +1671,8 @@ func TestAppProfile(t *testing.T) {
1650
1671
1651
1672
//TestEpgNetprofile tests the netprofile netprofile REST objects.
1652
1673
func TestEpgnpTenant (t * testing.T ) {
1674
+ // ensure global configs set
1675
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1653
1676
1654
1677
//create a network,
1655
1678
checkCreateNetwork (t , false , "default" , "np-net" , "data" , "vxlan" , "10.1.1.1/24" , "10.1.1.254" , 1 , "" , "" , "" )
@@ -1708,6 +1731,9 @@ func TestEpgnpTenant(t *testing.T) {
1708
1731
}
1709
1732
1710
1733
func TestEpgnp (t * testing.T ) {
1734
+ // ensure global configs set
1735
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1736
+
1711
1737
//create a network and netprofile
1712
1738
checkCreateNetwork (t , false , "default" , "np-net" , "data" , "vxlan" , "10.1.1.1/24" , "10.1.1.254" , 1 , "" , "" , "" )
1713
1739
checkCreateNetProfile (t , false , 5 , 1500 , "2gbps" , "netprofile" , "default" )
@@ -1723,6 +1749,9 @@ func TestEpgnp(t *testing.T) {
1723
1749
}
1724
1750
1725
1751
func TestEpgUpdate (t * testing.T ) {
1752
+ // ensure global configs set
1753
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1754
+
1726
1755
//create a network, netprofile and group.
1727
1756
checkCreateNetwork (t , false , "default" , "np-net" , "data" , "vxlan" , "10.1.1.1/24" , "10.1.1.254" , 1 , "" , "" , "" )
1728
1757
checkCreateNetProfile (t , false , 5 , 1500 , "2gbps" , "netprofile" , "default" )
@@ -1774,6 +1803,9 @@ func TestEpgUpdate(t *testing.T) {
1774
1803
}
1775
1804
1776
1805
func TestDeleteEpgNp (t * testing.T ) {
1806
+ // ensure global configs set
1807
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1808
+
1777
1809
//create a network, netprofile and group.
1778
1810
checkCreateNetwork (t , false , "default" , "np-net" , "data" , "vxlan" , "10.1.1.1/24" , "10.1.1.254" , 1 , "" , "" , "" )
1779
1811
checkCreateNetProfile (t , false , 5 , 1500 , "2gbps" , "netprofile" , "default" )
@@ -1794,6 +1826,8 @@ func TestDeleteEpgNp(t *testing.T) {
1794
1826
}
1795
1827
1796
1828
func TestNetProfileupdate (t * testing.T ) {
1829
+ // ensure global configs set
1830
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1797
1831
1798
1832
//create a network, netprofile.
1799
1833
checkCreateNetwork (t , false , "default" , "np-net" , "data" , "vxlan" , "10.1.1.1/24" , "10.1.1.254" , 1 , "" , "" , "" )
@@ -1830,6 +1864,9 @@ func TestNetProfileupdate(t *testing.T) {
1830
1864
}
1831
1865
1832
1866
func TestNetprofile (t * testing.T ) {
1867
+ // ensure global configs set
1868
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1869
+
1833
1870
//create a network & netprofile
1834
1871
checkCreateNetwork (t , false , "default" , "net" , "data" , "vxlan" , "10.1.1.1/24" , "10.1.1.254" , 1 , "" , "" , "" )
1835
1872
checkCreateNetProfile (t , false , 5 , 1500 , "2gbps" , "profile1" , "default" )
@@ -1889,6 +1926,8 @@ func TestNetprofile(t *testing.T) {
1889
1926
}
1890
1927
1891
1928
func TestServiceProviderUpdate (t * testing.T ) {
1929
+ // ensure global configs set
1930
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1892
1931
1893
1932
labels := []string {"key1=value1" , "key2=value2" }
1894
1933
port := []string {"80:8080:TCP" }
@@ -1954,6 +1993,8 @@ func TestServiceProviderUpdate(t *testing.T) {
1954
1993
}
1955
1994
1956
1995
func TestServiceProviderUpdateServiceAdd (t * testing.T ) {
1996
+ // ensure global configs set
1997
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1957
1998
1958
1999
labels := []string {"key1=value1" , "key2=value2" }
1959
2000
port := []string {"80:8080:TCP" }
@@ -2018,6 +2059,8 @@ func TestServiceProviderUpdateServiceAdd(t *testing.T) {
2018
2059
}
2019
2060
2020
2061
func TestServicePreferredIP (t * testing.T ) {
2062
+ // ensure global configs set
2063
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
2021
2064
2022
2065
labels := []string {"key1=value1" , "key2=value2" }
2023
2066
port := []string {"80:8080:TCP" }
@@ -2334,6 +2377,9 @@ func AddEP(tenant, nw, epg, id string) error {
2334
2377
}
2335
2378
2336
2379
func TestEPCreate (t * testing.T ) {
2380
+ // ensure global configs set
2381
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
2382
+
2337
2383
checkCreateTenant (t , false , "teatwo" )
2338
2384
checkCreateNetwork (t , false , "teatwo" , "t2-net" , "data" , "vlan" ,
2339
2385
"60.1.1.1/24" , "60.1.1.254" , 1 , "" , "" , "" )
0 commit comments