Skip to content

Commit aa3b9af

Browse files
author
Vipin Jain
committed
add inspect api tests
1 parent 18829c5 commit aa3b9af

File tree

2 files changed

+39
-2
lines changed

2 files changed

+39
-2
lines changed

netmaster/objApi/apiController.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ func stringInSlice(a string, list []string) bool {
108108

109109
// GlobalGetOper retrieves glboal operational information
110110
func (ac *APIController) GlobalGetOper(global *contivModel.GlobalInspect) error {
111-
log.Infof("Received GlobalInspect: %+v, params: %+v", global)
111+
log.Infof("Received GlobalInspect: %+v", global)
112112

113113
stateDriver, err := utils.GetStateDriver()
114114
if err != nil {
@@ -669,7 +669,7 @@ func (ac *APIController) NetworkCreate(network *contivModel.Network) error {
669669

670670
// NetworkGetOper updates network
671671
func (ac *APIController) NetworkGetOper(network *contivModel.NetworkInspect) error {
672-
log.Infof("Received NetworkInspect: %+v, params: %+v", network)
672+
log.Infof("Received NetworkInspect: %+v", network)
673673

674674
// Get the state driver
675675
stateDriver, err := utils.GetStateDriver()

netmaster/objApi/objapi_test.go

+37
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,21 @@ func checkCreateNetwork(t *testing.T, expError bool, tenant, network, nwType, en
156156
}
157157
}
158158

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+
159174
// verifyNetworkState verifies network state es as expected
160175
func verifyNetworkState(t *testing.T, tenant, network, nwType, encap, subnet, gw string, subnetLen uint, pktTag, extTag int, v6subnet, v6gw string, v6subnetLen uint) {
161176
networkID := network + "." + tenant
@@ -206,6 +221,20 @@ func checkDeleteNetwork(t *testing.T, expError bool, tenant, network string) {
206221
}
207222
}
208223

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+
209238
// checkGlobalSet sets global state and verifies state
210239
func checkGlobalSet(t *testing.T, expError bool, fabMode, vlans, vxlans string) {
211240
gl := client.Global{
@@ -613,11 +642,15 @@ func TestTenantAddDelete(t *testing.T) {
613642
func TestNetworkAddDelete(t *testing.T) {
614643
// Basic vlan network
615644
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", "")
616647
verifyNetworkState(t, "default", "contiv", "data", "vlan", "10.1.1.1", "10.1.1.254", 24, 1, 0, "", "", 0)
617648
checkDeleteNetwork(t, false, "default", "contiv")
618649

619650
// Basic Vxlan network
620651
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")
621654
verifyNetworkState(t, "default", "contiv", "data", "vxlan", "10.1.1.1", "10.1.1.254", 16, 1, 1, "", "", 0)
622655
checkDeleteNetwork(t, false, "default", "contiv")
623656

@@ -628,6 +661,8 @@ func TestNetworkAddDelete(t *testing.T) {
628661

629662
// Basic network without gateway
630663
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")
631666
verifyNetworkState(t, "default", "contiv-gw", "data", "vxlan", "10.1.1.1", "", 16, 1, 1, "", "", 0)
632667
checkDeleteNetwork(t, false, "default", "contiv-gw")
633668

@@ -638,6 +673,8 @@ func TestNetworkAddDelete(t *testing.T) {
638673

639674
// Infra vlan network create and delete
640675
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", "")
641678
time.Sleep(time.Second)
642679
verifyNetworkState(t, "default", "infraNw", "infra", "vlan", "10.1.1.1", "10.1.1.254", 24, 1, 0, "", "", 0)
643680
checkDeleteNetwork(t, false, "default", "infraNw")

0 commit comments

Comments
 (0)