Skip to content

Commit a9fdee8

Browse files
author
Satish Ramachandran
committed
Add some validations and unit tests.
1 parent 44b5f42 commit a9fdee8

File tree

2 files changed

+107
-19
lines changed

2 files changed

+107
-19
lines changed

netmaster/objApi/extContracts.go

+10
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,16 @@ func isExtContractsGroupUsed(contractsGroup *contivModel.ExtContractsGroup) bool
9292
func (ac *APIController) ExtContractsGroupCreate(contractsGroup *contivModel.ExtContractsGroup) error {
9393
log.Infof("Received ExtContractsGroupCreate: %+v", contractsGroup)
9494

95+
// Validate contracts type
96+
if contractsGroup.ContractsType != "provided" && contractsGroup.ContractsType != "consumed" {
97+
return core.Errorf("Contracts group need to be either 'provided' or 'consumed'")
98+
}
99+
// Make sure the tenant exists
100+
tenant := contivModel.FindTenant(contractsGroup.TenantName)
101+
if tenant == nil {
102+
return core.Errorf("Tenant %s not found", contractsGroup.TenantName)
103+
}
104+
95105
// NOTE: Nothing more needs to be done here. This object
96106
// need not be created in the masterCfg.
97107

netmaster/objApi/objapi_test.go

+97-19
Original file line numberDiff line numberDiff line change
@@ -350,12 +350,13 @@ func checkDeleteRule(t *testing.T, expError bool, tenant, policy, ruleID string)
350350
}
351351

352352
// checkCreateEpg creates an EPG
353-
func checkCreateEpg(t *testing.T, expError bool, tenant, network, group string, policies []string) {
353+
func checkCreateEpg(t *testing.T, expError bool, tenant, network, group string, policies, extContracts []string) {
354354
epg := client.EndpointGroup{
355-
TenantName: tenant,
356-
NetworkName: network,
357-
GroupName: group,
358-
Policies: policies,
355+
TenantName: tenant,
356+
NetworkName: network,
357+
GroupName: group,
358+
Policies: policies,
359+
ExtContractsGrps: extContracts,
359360
}
360361
err := contivClient.EndpointGroupPost(&epg)
361362
if err != nil && !expError {
@@ -371,6 +372,45 @@ func checkCreateEpg(t *testing.T, expError bool, tenant, network, group string,
371372
}
372373
}
373374

375+
// checkCreateExtContractsGrp creates an external contracts group
376+
func checkCreateExtContractsGrp(t *testing.T, expError bool, tenant, grpName, grpType string, contracts []string) {
377+
extContractsGrp := client.ExtContractsGroup{
378+
TenantName: tenant,
379+
ContractsGroupName: grpName,
380+
ContractsType: grpType,
381+
Contracts: contracts,
382+
}
383+
384+
err := contivClient.ExtContractsGroupPost(&extContractsGrp)
385+
if err != nil && !expError {
386+
t.Fatalf("Error creating extContractsGrp {%+v}. Err: %v", extContractsGrp, err)
387+
} else if err == nil && expError {
388+
t.Fatalf("Create extContrctsGrp {%+v} succeded while expecing error", extContractsGrp)
389+
} else if err == nil {
390+
// verify extContractsGrp is created
391+
_, err := contivClient.ExtContractsGroupGet(tenant, grpName)
392+
if err != nil {
393+
t.Fatalf("Error getting extContractsGrp %s/%s. Err: %v", tenant, grpName, err)
394+
}
395+
}
396+
}
397+
398+
// checkDeleteExtContractsGrp deletes external contracts group
399+
func checkDeleteExtContractsGrp(t *testing.T, expError bool, tenant, grpName string) {
400+
err := contivClient.ExtContractsGroupDelete(tenant, grpName)
401+
if err != nil && !expError {
402+
t.Fatalf("Error deleting extContractsGrp %s/%s. Err: %v", tenant, grpName, err)
403+
} else if err == nil && expError {
404+
t.Fatalf("Delete extContractsGrp %s/%s succeded while expecing error", tenant, grpName)
405+
} else if err == nil {
406+
// verify epg is gone
407+
_, err := contivClient.ExtContractsGroupGet(tenant, grpName)
408+
if err == nil {
409+
t.Fatalf("ExtContractsGroup %s/%s not deleted", tenant, grpName)
410+
}
411+
}
412+
}
413+
374414
// verifyEpgPolicy verifies an EPG policy state
375415
func verifyEpgPolicy(t *testing.T, tenant, network, group, policy string) {
376416
epgKey := tenant + ":" + group
@@ -702,7 +742,7 @@ func TestNetworkPktRanges(t *testing.T) {
702742
// TestPolicyRules tests policy and rule REST objects
703743
func TestPolicyRules(t *testing.T) {
704744
checkCreateNetwork(t, false, "default", "contiv", "data", "vxlan", "10.1.1.1/16", "10.1.1.254", 1)
705-
checkCreateEpg(t, false, "default", "contiv", "group1", []string{})
745+
checkCreateEpg(t, false, "default", "contiv", "group1", []string{}, []string{})
706746
// create policy
707747
checkCreatePolicy(t, false, "default", "policy1")
708748

@@ -796,7 +836,7 @@ func TestEpgPolicies(t *testing.T) {
796836
checkCreateRule(t, false, "default", "policy1", "3", "out", "", "", "", "contiv", "", "", "tcp", "allow", 1, 80)
797837

798838
// create EPG and attach policy to it
799-
checkCreateEpg(t, false, "default", "contiv", "group1", []string{"policy1"})
839+
checkCreateEpg(t, false, "default", "contiv", "group1", []string{"policy1"}, []string{})
800840
verifyEpgPolicy(t, "default", "contiv", "group1", "policy1")
801841

802842
// create a policy and rule that matches on other policy
@@ -805,27 +845,27 @@ func TestEpgPolicies(t *testing.T) {
805845
checkCreateRule(t, false, "default", "policy2", "2", "out", "", "", "", "", "group1", "", "tcp", "allow", 1, 80)
806846
checkCreateRule(t, false, "default", "policy2", "3", "in", "contiv", "", "", "", "", "", "tcp", "allow", 1, 80)
807847
checkCreateRule(t, false, "default", "policy2", "4", "out", "", "", "", "contiv", "", "", "tcp", "allow", 1, 80)
808-
checkCreateEpg(t, false, "default", "contiv", "group2", []string{"policy2"})
848+
checkCreateEpg(t, false, "default", "contiv", "group2", []string{"policy2"}, []string{})
809849
verifyEpgPolicy(t, "default", "contiv", "group2", "policy2")
810850

811851
// verify cant create/update EPGs that uses non-existing policies
812-
checkCreateEpg(t, true, "default", "contiv", "group3", []string{"invalid"})
813-
checkCreateEpg(t, true, "default", "contiv", "group2", []string{"invalid"})
852+
checkCreateEpg(t, true, "default", "contiv", "group3", []string{"invalid"}, []string{})
853+
checkCreateEpg(t, true, "default", "contiv", "group2", []string{"invalid"}, []string{})
814854

815855
// verify cant create EPGs without tenant/network
816-
checkCreateEpg(t, true, "invalid", "contiv", "group3", []string{})
817-
checkCreateEpg(t, true, "default", "invalid", "group3", []string{})
856+
checkCreateEpg(t, true, "invalid", "contiv", "group3", []string{}, []string{})
857+
checkCreateEpg(t, true, "default", "invalid", "group3", []string{}, []string{})
818858

819859
// verify name clash between network and epg is rejected
820-
checkCreateEpg(t, true, "default", "contiv", "contiv", []string{})
860+
checkCreateEpg(t, true, "default", "contiv", "contiv", []string{}, []string{})
821861
checkCreateNetwork(t, true, "default", "group1", "data", "vxlan", "20.1.1.1/16", "20.1.1.254", 1)
822862
// verify network association cant be changed on epg
823863
checkCreateNetwork(t, false, "default", "newnet", "data", "vxlan", "20.1.1.1/16", "20.1.1.254", 2)
824-
checkCreateEpg(t, true, "default", "newnet", "group1", []string{})
864+
checkCreateEpg(t, true, "default", "newnet", "group1", []string{}, []string{})
825865

826866
// change policy and verify EPG policy changes
827-
checkCreateEpg(t, false, "default", "contiv", "group3", []string{"policy1"})
828-
checkCreateEpg(t, false, "default", "contiv", "group3", []string{"policy2"})
867+
checkCreateEpg(t, false, "default", "contiv", "group3", []string{"policy1"}, []string{})
868+
checkCreateEpg(t, false, "default", "contiv", "group3", []string{"policy2"}, []string{})
829869
checkEpgPolicyDeleted(t, "default", "contiv", "group3", "policy1")
830870
verifyEpgPolicy(t, "default", "contiv", "group3", "policy2")
831871

@@ -848,14 +888,52 @@ func TestEpgPolicies(t *testing.T) {
848888
checkDeleteNetwork(t, false, "default", "newnet")
849889
}
850890

891+
// TestExtContractsGroups tests management of external contracts groups
892+
func TestExtContractsGroups(t *testing.T) {
893+
// create network for the test
894+
checkCreateNetwork(t, false, "default", "test-net", "data", "vlan", "23.1.1.1/16", "23.1.1.254", 1)
895+
// create contract groups used for the test
896+
checkCreateExtContractsGrp(t, false, "default", "ext-contracts-prov", "provided", []string{"uni/tn-common/brc-default", "uni/tn-common/brc-icmp-contract"})
897+
checkCreateExtContractsGrp(t, false, "default", "ext-contracts-cons", "consumed", []string{"uni/tn-common/brc-default", "uni/tn-common/brc-icmp-contract"})
898+
// Try creating a contract group which is neither "provided" nor "consumed"
899+
checkCreateExtContractsGrp(t, true, "default", "ext-contracts-blah", "something", []string{"uni/tn-common/brc-default", "uni/tn-common/brc-icmp-contract"})
900+
901+
// epg can have a provided contract group
902+
checkCreateEpg(t, false, "default", "test-net", "group1", []string{}, []string{"ext-contracts-prov"})
903+
// epg can have a consumed contract group
904+
checkCreateEpg(t, false, "default", "test-net", "group2", []string{}, []string{"ext-contracts-cons"})
905+
// epg can have both provided and consumed contract groups
906+
checkCreateEpg(t, false, "default", "test-net", "group3", []string{}, []string{"ext-contracts-prov", "ext-contracts-cons"})
907+
// Try deleting a contract group when it is being used by an EPG. Should fail
908+
checkDeleteExtContractsGrp(t, true, "default", "ext-contracts-prov")
909+
// Try creating an EPG with a contract group that does not exist. Must fail
910+
checkCreateEpg(t, true, "default", "test-net", "group4", []string{}, []string{"ext-contracts-blah"})
911+
912+
// create an app profile with the epgs with external contracts
913+
checkCreateAppProfile(t, false, "default", "app-prof-test", []string{"group1", "group2", "group3"})
914+
915+
// delete the app profile
916+
checkDeleteAppProfile(t, false, "default", "app-prof-test")
917+
918+
// delete the groups
919+
checkDeleteEpg(t, false, "default", "test-net", "group1")
920+
checkDeleteEpg(t, false, "default", "test-net", "group2")
921+
checkDeleteEpg(t, false, "default", "test-net", "group3")
922+
// delete the external contract groups.
923+
// since there are no references any more, they should be deleted.
924+
checkDeleteExtContractsGrp(t, false, "default", "ext-contracts-prov")
925+
checkDeleteExtContractsGrp(t, false, "default", "ext-contracts-cons")
926+
checkDeleteNetwork(t, false, "default", "test-net")
927+
}
928+
851929
// TestAppProfile tests app-profile REST objects
852930
func TestAppProfile(t *testing.T) {
853931
// Create two networks and 3 epgs
854932
checkCreateNetwork(t, false, "default", "net1", "data", "vlan", "10.1.1.1/16", "10.1.1.254", 1)
855933
checkCreateNetwork(t, false, "default", "net2", "data", "vlan", "20.1.1.1/16", "20.1.1.254", 2)
856-
checkCreateEpg(t, false, "default", "net1", "group1", []string{})
857-
checkCreateEpg(t, false, "default", "net1", "group2", []string{})
858-
checkCreateEpg(t, false, "default", "net2", "group3", []string{})
934+
checkCreateEpg(t, false, "default", "net1", "group1", []string{}, []string{})
935+
checkCreateEpg(t, false, "default", "net1", "group2", []string{}, []string{})
936+
checkCreateEpg(t, false, "default", "net2", "group3", []string{}, []string{})
859937
checkCreateAppProfile(t, false, "default", "profile1", []string{})
860938
checkCreateAppProfile(t, false, "default", "profile2", []string{"group1"})
861939
checkCreateAppProfile(t, false, "default", "profile3", []string{"group1", "group3"})

0 commit comments

Comments
 (0)