@@ -350,12 +350,13 @@ func checkDeleteRule(t *testing.T, expError bool, tenant, policy, ruleID string)
350
350
}
351
351
352
352
// 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 ) {
354
354
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 ,
359
360
}
360
361
err := contivClient .EndpointGroupPost (& epg )
361
362
if err != nil && ! expError {
@@ -371,6 +372,45 @@ func checkCreateEpg(t *testing.T, expError bool, tenant, network, group string,
371
372
}
372
373
}
373
374
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
+
374
414
// verifyEpgPolicy verifies an EPG policy state
375
415
func verifyEpgPolicy (t * testing.T , tenant , network , group , policy string ) {
376
416
epgKey := tenant + ":" + group
@@ -702,7 +742,7 @@ func TestNetworkPktRanges(t *testing.T) {
702
742
// TestPolicyRules tests policy and rule REST objects
703
743
func TestPolicyRules (t * testing.T ) {
704
744
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 {} )
706
746
// create policy
707
747
checkCreatePolicy (t , false , "default" , "policy1" )
708
748
@@ -796,7 +836,7 @@ func TestEpgPolicies(t *testing.T) {
796
836
checkCreateRule (t , false , "default" , "policy1" , "3" , "out" , "" , "" , "" , "contiv" , "" , "" , "tcp" , "allow" , 1 , 80 )
797
837
798
838
// 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 {} )
800
840
verifyEpgPolicy (t , "default" , "contiv" , "group1" , "policy1" )
801
841
802
842
// create a policy and rule that matches on other policy
@@ -805,27 +845,27 @@ func TestEpgPolicies(t *testing.T) {
805
845
checkCreateRule (t , false , "default" , "policy2" , "2" , "out" , "" , "" , "" , "" , "group1" , "" , "tcp" , "allow" , 1 , 80 )
806
846
checkCreateRule (t , false , "default" , "policy2" , "3" , "in" , "contiv" , "" , "" , "" , "" , "" , "tcp" , "allow" , 1 , 80 )
807
847
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 {} )
809
849
verifyEpgPolicy (t , "default" , "contiv" , "group2" , "policy2" )
810
850
811
851
// 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 {} )
814
854
815
855
// 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 {} )
818
858
819
859
// 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 {} )
821
861
checkCreateNetwork (t , true , "default" , "group1" , "data" , "vxlan" , "20.1.1.1/16" , "20.1.1.254" , 1 )
822
862
// verify network association cant be changed on epg
823
863
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 {} )
825
865
826
866
// 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 {} )
829
869
checkEpgPolicyDeleted (t , "default" , "contiv" , "group3" , "policy1" )
830
870
verifyEpgPolicy (t , "default" , "contiv" , "group3" , "policy2" )
831
871
@@ -848,14 +888,52 @@ func TestEpgPolicies(t *testing.T) {
848
888
checkDeleteNetwork (t , false , "default" , "newnet" )
849
889
}
850
890
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
+
851
929
// TestAppProfile tests app-profile REST objects
852
930
func TestAppProfile (t * testing.T ) {
853
931
// Create two networks and 3 epgs
854
932
checkCreateNetwork (t , false , "default" , "net1" , "data" , "vlan" , "10.1.1.1/16" , "10.1.1.254" , 1 )
855
933
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 {} )
859
937
checkCreateAppProfile (t , false , "default" , "profile1" , []string {})
860
938
checkCreateAppProfile (t , false , "default" , "profile2" , []string {"group1" })
861
939
checkCreateAppProfile (t , false , "default" , "profile3" , []string {"group1" , "group3" })
0 commit comments