@@ -156,6 +156,21 @@ func checkCreateNetwork(t *testing.T, expError bool, tenant, network, nwType, en
156
156
}
157
157
}
158
158
159
+ // checkInspectNetwork inspects network and checks for error
160
+ func checkInspectNetwork (t * testing.T , expError bool , tenant , network , allocedIPs string , pktTag , addrCount int ) {
161
+ insp , err := contivClient .NetworkInspect (tenant , network )
162
+ if err != nil && ! expError {
163
+ t .Fatalf ("Error inspecting network {%s.%s}. Err: %v" , network , tenant , err )
164
+ } else if err == nil && expError {
165
+ t .Fatalf ("Inspect network {%s.%s} succeded while expecing error" , network , tenant )
166
+ } else if err == nil {
167
+ if insp .Oper .AllocatedAddressesCount != addrCount || insp .Oper .PktTag != pktTag ||
168
+ insp .Oper .AllocatedIPAddresses != allocedIPs {
169
+ t .Fatalf ("Inspect network {%+v} failed with mismatching values" , insp )
170
+ }
171
+ }
172
+ }
173
+
159
174
// verifyNetworkState verifies network state es as expected
160
175
func verifyNetworkState (t * testing.T , tenant , network , nwType , encap , subnet , gw string , subnetLen uint , pktTag , extTag int , v6subnet , v6gw string , v6subnetLen uint ) {
161
176
networkID := network + "." + tenant
@@ -206,6 +221,20 @@ func checkDeleteNetwork(t *testing.T, expError bool, tenant, network string) {
206
221
}
207
222
}
208
223
224
+ // checkInspectGlobal inspects network and checks for error
225
+ func checkInspectGlobal (t * testing.T , expError bool , allocedVlans , allocedVxlans string ) {
226
+ insp , err := contivClient .GlobalInspect ("global" )
227
+ if err != nil && ! expError {
228
+ t .Fatalf ("Error inspecting global info. Err: %v" , err )
229
+ } else if err == nil && expError {
230
+ t .Fatalf ("Inspect global info succeded while expecing error" )
231
+ } else if err == nil {
232
+ if insp .Oper .VlansInUse != allocedVlans || insp .Oper .VxlansInUse != allocedVxlans {
233
+ t .Fatalf ("Inspect network {%+v} failed with mismatching " , insp )
234
+ }
235
+ }
236
+ }
237
+
209
238
// checkGlobalSet sets global state and verifies state
210
239
func checkGlobalSet (t * testing.T , expError bool , fabMode , vlans , vxlans string ) {
211
240
gl := client.Global {
@@ -613,11 +642,15 @@ func TestTenantAddDelete(t *testing.T) {
613
642
func TestNetworkAddDelete (t * testing.T ) {
614
643
// Basic vlan network
615
644
checkCreateNetwork (t , false , "default" , "contiv" , "" , "vlan" , "10.1.1.1/24" , "10.1.1.254" , 1 , "" , "" )
645
+ checkInspectNetwork (t , false , "default" , "contiv" , "10.1.1.254" , 1 , 0 )
646
+ checkInspectGlobal (t , false , "1" , "" )
616
647
verifyNetworkState (t , "default" , "contiv" , "data" , "vlan" , "10.1.1.1" , "10.1.1.254" , 24 , 1 , 0 , "" , "" , 0 )
617
648
checkDeleteNetwork (t , false , "default" , "contiv" )
618
649
619
650
// Basic Vxlan network
620
651
checkCreateNetwork (t , false , "default" , "contiv" , "" , "vxlan" , "10.1.1.1/16" , "10.1.1.254" , 1 , "" , "" )
652
+ checkInspectNetwork (t , false , "default" , "contiv" , "10.1.1.254" , 1 , 0 )
653
+ checkInspectGlobal (t , false , "" , "1" )
621
654
verifyNetworkState (t , "default" , "contiv" , "data" , "vxlan" , "10.1.1.1" , "10.1.1.254" , 16 , 1 , 1 , "" , "" , 0 )
622
655
checkDeleteNetwork (t , false , "default" , "contiv" )
623
656
@@ -628,6 +661,8 @@ func TestNetworkAddDelete(t *testing.T) {
628
661
629
662
// Basic network without gateway
630
663
checkCreateNetwork (t , false , "default" , "contiv-gw" , "" , "vxlan" , "10.1.1.1/16" , "" , 1 , "" , "" )
664
+ checkInspectNetwork (t , false , "default" , "contiv-gw" , "" , 1 , 0 )
665
+ checkInspectGlobal (t , false , "" , "1" )
631
666
verifyNetworkState (t , "default" , "contiv-gw" , "data" , "vxlan" , "10.1.1.1" , "" , 16 , 1 , 1 , "" , "" , 0 )
632
667
checkDeleteNetwork (t , false , "default" , "contiv-gw" )
633
668
@@ -638,6 +673,8 @@ func TestNetworkAddDelete(t *testing.T) {
638
673
639
674
// Infra vlan network create and delete
640
675
checkCreateNetwork (t , false , "default" , "infraNw" , "infra" , "vlan" , "10.1.1.1/24" , "10.1.1.254" , 1 , "" , "" )
676
+ checkInspectNetwork (t , false , "default" , "infraNw" , "10.1.1.254" , 1 , 0 )
677
+ checkInspectGlobal (t , false , "1" , "" )
641
678
time .Sleep (time .Second )
642
679
verifyNetworkState (t , "default" , "infraNw" , "infra" , "vlan" , "10.1.1.1" , "10.1.1.254" , 24 , 1 , 0 , "" , "" , 0 )
643
680
checkDeleteNetwork (t , false , "default" , "infraNw" )
0 commit comments