-
Notifications
You must be signed in to change notification settings - Fork 180
/
Copy pathobjapi_test.go
executable file
·2446 lines (2082 loc) · 104 KB
/
objapi_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/***
Copyright 2014 Cisco Systems Inc. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package objApi
import (
"encoding/json"
"log"
"net"
"net/http"
"os"
"reflect"
"strings"
"testing"
"time"
"github.com/contiv/contivmodel"
"github.com/contiv/contivmodel/client"
"github.com/contiv/netplugin/core"
"github.com/contiv/netplugin/netmaster/gstate"
"github.com/contiv/netplugin/netmaster/intent"
"github.com/contiv/netplugin/netmaster/master"
"github.com/contiv/netplugin/netmaster/mastercfg"
"github.com/contiv/netplugin/netmaster/resources"
"github.com/contiv/netplugin/objdb"
"github.com/contiv/netplugin/state"
"github.com/contiv/netplugin/utils"
"github.com/contiv/netplugin/utils/netutils"
"github.com/contiv/ofnet"
etcdclient "github.com/coreos/etcd/client"
"github.com/gorilla/mux"
"golang.org/x/net/context"
)
const (
netmasterTestURL = "http://localhost:9230"
netmasterTestListenURL = ":9230"
)
var contivClient *client.ContivClient
var apiController *APIController
var stateStore core.StateDriver
// initStateDriver initialize etcd state driver
func initStateDriver() (core.StateDriver, error) {
instInfo := core.InstanceInfo{DbURL: "etcd://127.0.0.1:2379"}
return utils.NewStateDriver(utils.EtcdNameStr, &instInfo)
}
type restAPIFunc func(r *http.Request) (interface{}, error)
func httpWrapper(handlerFunc restAPIFunc) http.HandlerFunc {
// Create a closure and return an anonymous function
return func(w http.ResponseWriter, r *http.Request) {
// Call the handler
resp, err := handlerFunc(r)
if err != nil {
// Log error
log.Fatalf("Handler for %s %s returned error: %s", r.Method, r.URL, err)
} else {
// Send HTTP response as Json
content, err := json.Marshal(resp)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
w.Write(content)
}
}
}
func bgpInspector(r *http.Request) (interface{}, error) {
return nil, nil
}
// setupBgpInspectServer
func setupBgpInspectServer() (net.Listener, error) {
r := mux.NewRouter()
r.HandleFunc("/inspect/bgp", httpWrapper(bgpInspector))
listener, err := net.Listen("tcp", "127.0.0.1:9090")
if err != nil {
log.Fatalf("Error creating listener: %v", err)
return nil, err
}
srv := &http.Server{
Handler: r,
WriteTimeout: 20 * time.Second,
ReadTimeout: 20 * time.Second,
}
go srv.Serve(listener)
return listener, nil
}
// setup the test netmaster REST server and client
func TestMain(m *testing.M) {
var err error
// Setup state store
stateStore, err = initStateDriver()
if err != nil {
log.Fatalf("Error initializing state store. Err: %v", err)
}
// little hack to clear all state from etcd
stateStore.(*state.EtcdStateDriver).KeysAPI.Delete(context.Background(), "/contiv.io", &etcdclient.DeleteOptions{Recursive: true})
// Setup resource manager
if _, err = resources.NewStateResourceManager(stateStore); err != nil {
log.Fatalf("Failed to init resource manager. Error: %s", err)
}
router := mux.NewRouter()
s := router.Headers("Content-Type", "application/json").Methods("Post").Subrouter()
s.HandleFunc("/plugin/updateEndpoint", utils.MakeHTTPHandler(master.UpdateEndpointHandler))
s.HandleFunc("/plugin/createEndpoint", utils.MakeHTTPHandler(master.CreateEndpointHandler))
s = router.Methods("Get").Subrouter()
// create objdb client
objdbClient, err := objdb.NewClient("etcd://127.0.0.1:2379")
if err != nil {
log.Fatalf("Error connecting to state store: etcd://127.0.0.1:2379. Err: %v", err)
}
// Create a new api controller
apiController = NewAPIController(router, objdbClient, "etcd://127.0.0.1:2379")
ofnetMaster := ofnet.NewOfnetMaster("127.0.0.1", ofnet.OFNET_MASTER_PORT)
if ofnetMaster == nil {
log.Fatalf("Error creating ofnet master")
}
// initialize policy manager
mastercfg.InitPolicyMgr(stateStore, ofnetMaster)
// Create HTTP server
go http.ListenAndServe(netmasterTestListenURL, router)
// Create bgp inspect server
l, _ := setupBgpInspectServer()
defer l.Close()
time.Sleep(time.Second)
// create a new contiv client
contivClient, err = client.NewContivClient(netmasterTestURL)
if err != nil {
log.Fatalf("Error creating contiv client. Err: %v", err)
}
exitCode := m.Run()
if exitCode == 0 {
cleanupState()
}
os.Exit(exitCode)
}
// cleanupState cleans up default tenant and other global state
func cleanupState() {
// delete default tenant
err := contivClient.TenantDelete("default")
if err != nil {
log.Fatalf("Error deleting default tenant. Err: %v", err)
}
// clear global state
err = contivClient.GlobalDelete("global")
if err != nil {
log.Fatalf("Error deleting global state. Err: %v", err)
}
}
// checkError checks for error and fails the test
func checkError(t *testing.T, testStr string, err error) {
if err != nil {
t.Fatalf("Error during %s. Err: %v", testStr, err)
}
}
// checkCreateNetwork creates networks and checks for error
func checkCreateNetwork(t *testing.T, expError bool, tenant, network, nwType, encap, subnet, gw string, tag int, v6subnet, v6gw, nwTag string) {
net := client.Network{
TenantName: tenant,
NetworkName: network,
NwType: nwType,
Encap: encap,
Subnet: subnet,
Gateway: gw,
Ipv6Subnet: v6subnet,
Ipv6Gateway: v6gw,
PktTag: tag,
CfgdTag: nwTag,
}
err := contivClient.NetworkPost(&net)
if err != nil && !expError {
t.Fatalf("Error creating network {%+v}. Err: %v", net, err)
} else if err == nil && expError {
t.Fatalf("Create network {%+v} succeeded while expecting error", net)
} else if err == nil {
// verify network is created
_, err := contivClient.NetworkGet(tenant, network)
if err != nil {
t.Fatalf("Error getting network %s/%s. Err: %v", tenant, network, err)
}
}
}
// checkInspectNetwork inspects network and checks for error
func checkInspectNetwork(t *testing.T, expError bool, tenant, network, allocedIPs string, pktTag, addrCount int) {
insp, err := contivClient.NetworkInspect(tenant, network)
if err != nil && !expError {
t.Fatalf("Error inspecting network {%s.%s}. Err: %v", network, tenant, err)
} else if err == nil && expError {
t.Fatalf("Inspect network {%s.%s} succeeded while expecting error", network, tenant)
} else if err == nil {
if insp.Oper.AllocatedAddressesCount != addrCount || insp.Oper.PktTag != pktTag ||
insp.Oper.AllocatedIPAddresses != allocedIPs {
log.Printf("Inspect network {%+v}", insp)
t.Fatalf("addrCount exp: %d got: %d pktTag exp: %d got: %d, allocedIPs exp: %s got: %s",
addrCount, insp.Oper.AllocatedAddressesCount, pktTag, insp.Oper.PktTag,
allocedIPs, insp.Oper.AllocatedIPAddresses)
}
}
}
// verifyNetworkState verifies network state es as expected
func verifyNetworkState(t *testing.T, tenant, network, nwType, encap, subnet, gw string, subnetLen uint, pktTag, extTag int, v6subnet, v6gw string, v6subnetLen uint) {
networkID := network + "." + tenant
nwCfg := &mastercfg.CfgNetworkState{}
nwCfg.StateDriver = stateStore
err := nwCfg.Read(networkID)
if err != nil {
t.Fatalf("Network state for %s not found. Err: %v", networkID, err)
}
// verify network params
if nwCfg.Tenant != tenant || nwCfg.NetworkName != network || nwCfg.NwType != nwType ||
nwCfg.PktTagType != encap || nwCfg.SubnetIP != netutils.GetSubnetAddr(subnet, subnetLen) || nwCfg.Gateway != gw ||
nwCfg.IPv6Subnet != v6subnet || nwCfg.IPv6SubnetLen != v6subnetLen || nwCfg.IPv6Gateway != v6gw {
t.Fatalf("Network state {%+v} did not match expected state", nwCfg)
}
// verify network tags
if (pktTag != 0 && nwCfg.PktTag != pktTag) ||
(extTag != 0 && nwCfg.ExtPktTag != extTag) {
t.Fatalf("Network tags %d/%d did not match expected %d/%d",
nwCfg.PktTag, nwCfg.ExtPktTag, pktTag, extTag)
}
}
// checkDeleteNetwork deletes networks and looks for error
func checkDeleteNetwork(t *testing.T, expError bool, tenant, network string) {
err := contivClient.NetworkDelete(tenant, network)
if err != nil && !expError {
t.Fatalf("Error deleting network %s/%s. Err: %v", tenant, network, err)
} else if err == nil && expError {
t.Fatalf("Delete network %s/%s succeeded while expecting error", tenant, network)
} else if err == nil {
// verify network is gone
_, err := contivClient.NetworkGet(tenant, network)
if err == nil {
t.Fatalf("Network %s/%s not deleted", tenant, network)
}
// verify network state is gone too
networkID := network + "." + tenant
nwCfg := &mastercfg.CfgNetworkState{}
nwCfg.StateDriver = stateStore
err = nwCfg.Read(networkID)
if err == nil {
t.Fatalf("Network state %s not deleted", networkID)
}
}
}
// checkInspectGlobal inspects network and checks for error
func checkInspectGlobal(t *testing.T, expError bool, allocedVlans, allocedVxlans string) {
insp, err := contivClient.GlobalInspect("global")
if err != nil && !expError {
t.Fatalf("Error inspecting global info. Err: %v", err)
} else if err == nil && expError {
t.Fatalf("Inspect global info succeeded while expecting error")
} else if err == nil {
if insp.Oper.VlansInUse != allocedVlans || insp.Oper.VxlansInUse != allocedVxlans {
t.Fatalf("Inspect global {%+v} failed with mismatching vlan/vxlan allocated ", insp)
}
}
}
// checkGlobalSet sets global state and verifies state
func checkGlobalSet(t *testing.T, expError bool, fabMode, vlans, vxlans, fwdMode, arpMode, pvtSubnet string) {
gl := client.Global{
Name: "global",
NetworkInfraType: fabMode,
Vlans: vlans,
Vxlans: vxlans,
FwdMode: fwdMode,
ArpMode: arpMode,
PvtSubnet: pvtSubnet,
}
err := contivClient.GlobalPost(&gl)
if err != nil && !expError {
t.Fatalf("Error setting global {%+v}. Err: %v", gl, err)
} else if err == nil && expError {
t.Fatalf("Set global {%+v} succeeded while expecting error", gl)
} else if err == nil {
// verify global state
gotGl, err := contivClient.GlobalGet("global")
if err != nil {
t.Fatalf("Error getting global object. Err: %v", err)
}
// verify expected values
if gotGl.NetworkInfraType != fabMode || gotGl.Vlans != vlans || gotGl.Vxlans != vxlans || gotGl.PvtSubnet != pvtSubnet {
t.Fatalf("Error Got global state {%+v} does not match expected %s, %s, %s %s", gotGl, fabMode, vlans, vxlans, pvtSubnet)
}
// verify the state created
gCfg := &gstate.Cfg{}
gCfg.StateDriver = stateStore
err = gCfg.Read("")
if err != nil {
t.Fatalf("Error reading global cfg state. Err: %v", err)
}
if gCfg.Auto.VLANs != vlans || gCfg.Auto.VXLANs != vxlans {
t.Fatalf("global config Vlan/Vxlan ranges %s/%s are not same as %s/%s",
gCfg.Auto.VLANs, gCfg.Auto.VXLANs, vlans, vxlans)
}
// verify global oper state
gOper := &gstate.Oper{}
gOper.StateDriver = stateStore
err = gOper.Read("")
if err != nil {
t.Fatalf("Error reading global oper state. Err: %v", err)
}
// verify vxlan resources
vxlanRsrc := &resources.AutoVXLANCfgResource{}
vxlanRsrc.StateDriver = stateStore
if err := vxlanRsrc.Read("global"); err != nil {
t.Fatalf("Error reading vxlan resource. Err: %v", err)
}
// verify vlan resource
vlanRsrc := &resources.AutoVLANCfgResource{}
vlanRsrc.StateDriver = stateStore
if err := vlanRsrc.Read("global"); err != nil {
t.Fatalf("Error reading vlan resource. Err: %v", err)
}
}
}
// checkAciGwSet sets AciGw state and verifies verifies it
func checkAciGwSet(t *testing.T, expError bool, enf, comTen, paths, nodes, domain string) {
aciConf := client.AciGw{
Name: "aciGw",
IncludeCommonTenant: comTen,
EnforcePolicies: enf,
PathBindings: paths,
NodeBindings: nodes,
PhysicalDomain: domain,
}
err := contivClient.AciGwPost(&aciConf)
if err != nil && !expError {
t.Fatalf("Error setting aci {%+v}. Err: %v", aciConf, err)
} else if err == nil && expError {
t.Fatalf("Set aci {%+v} succeeded while expecting error", aciConf)
} else if err == nil {
// verify global state
gotAciGw, err := contivClient.AciGwGet("aciGw")
if err != nil {
t.Fatalf("Error getting aci object. Err: %v", err)
}
// verify expected values
if gotAciGw.EnforcePolicies != enf || gotAciGw.PathBindings != paths || gotAciGw.NodeBindings != nodes || gotAciGw.PhysicalDomain != domain || gotAciGw.IncludeCommonTenant != comTen {
t.Fatalf("Error Got aci state {%+v} does not match expected %s, %s, %s, %s, %s", gotAciGw, enf, comTen, paths, nodes, domain)
}
}
}
func checkAciGwDelete(t *testing.T, expError bool, name string) {
err := contivClient.AciGwDelete(name)
if err != nil && !expError {
t.Fatalf("Error deleting aci. Err: %v", err)
} else if err == nil && expError {
t.Fatalf("Delete aci succeeded while expecting error")
}
}
// checkCreatePolicy creates policy and verifies
func checkCreatePolicy(t *testing.T, expError bool, tenant, policy string) {
pol := client.Policy{
TenantName: tenant,
PolicyName: policy,
}
err := contivClient.PolicyPost(&pol)
if err != nil && !expError {
t.Fatalf("Error creating policy {%+v}. Err: %v", pol, err)
} else if err == nil && expError {
t.Fatalf("Create policy {%+v} succeeded while expecting error", pol)
} else if err == nil {
// verify policy is created
_, err := contivClient.PolicyGet(tenant, policy)
if err != nil {
t.Fatalf("Error getting policy %s/%s. Err: %v", tenant, policy, err)
}
}
}
// checkDeletePolicy deletes policy and verifies
func checkDeletePolicy(t *testing.T, expError bool, tenant, policy string) {
err := contivClient.PolicyDelete(tenant, policy)
if err != nil && !expError {
t.Fatalf("Error deleting policy %s/%s. Err: %v", tenant, policy, err)
} else if err == nil && expError {
t.Fatalf("Delete policy %s/%s succeeded while expecting error", tenant, policy)
} else if err == nil {
// verify policy is gone
_, err := contivClient.PolicyGet(tenant, policy)
if err == nil {
t.Fatalf("Policy %s/%s not deleted", tenant, policy)
}
}
}
// checkCreateRule creates rule and checks for error
func checkCreateRule(t *testing.T, expError bool, tenant, policy, ruleID, dir, fnet, fepg, fip, tnet, tepg, tip, proto, act string, prio, port int) {
pol := client.Rule{
TenantName: tenant,
PolicyName: policy,
RuleID: ruleID,
Direction: dir,
Priority: prio,
FromNetwork: fnet,
FromEndpointGroup: fepg,
FromIpAddress: fip,
ToNetwork: tnet,
ToEndpointGroup: tepg,
ToIpAddress: tip,
Protocol: proto,
Port: port,
Action: act,
}
err := contivClient.RulePost(&pol)
if err != nil && !expError {
t.Fatalf("Error creating rule {%+v}. Err: %v", pol, err)
} else if err == nil && expError {
t.Fatalf("Create rule {%+v} succeeded while expecting error", pol)
} else if err == nil {
// verify rule is created
_, err := contivClient.RuleGet(tenant, policy, ruleID)
if err != nil {
t.Fatalf("Error getting rule %s/%s/%s. Err: %v", tenant, policy, ruleID, err)
}
}
}
// checkDeleteRule deletes rule
func checkDeleteRule(t *testing.T, expError bool, tenant, policy, ruleID string) {
err := contivClient.RuleDelete(tenant, policy, ruleID)
if err != nil && !expError {
t.Fatalf("Error deleting rule %s/%s/%s. Err: %v", tenant, policy, ruleID, err)
} else if err == nil && expError {
t.Fatalf("Delete rule %s/%s/%s succeeded while expecting error", tenant, policy, ruleID)
} else if err == nil {
// verify rule is gone
_, err := contivClient.RuleGet(tenant, policy, ruleID)
if err == nil {
t.Fatalf("Policy %s/%s/%s not deleted", tenant, policy, ruleID)
}
}
}
func checkCreateNetProfile(t *testing.T, expError bool, dscp, burst int, bandwidth, profileName, tenantName string) {
np := client.Netprofile{
DSCP: dscp,
Burst: burst,
Bandwidth: bandwidth,
TenantName: tenantName,
ProfileName: profileName,
}
err := contivClient.NetprofilePost(&np)
if err != nil && !expError {
t.Fatalf("Error creating Netprofile {%+v}. Err: %v", np, err)
} else if err == nil && expError {
t.Fatalf("Create NetProfile {%+v} succeeded while expecing error", np)
} else if err == nil {
//check if netprofile is created.
_, err := contivClient.NetprofileGet(tenantName, profileName)
if err != nil {
t.Fatalf("Error getting netprofile %s/%s. Err: %v", tenantName, profileName, err)
}
}
}
func checkverifyNetProfile(t *testing.T, expError bool, dscp, burst int, bandwidth, profileName, tenantName string) {
paramsKey := GetNetprofileKey(tenantName, profileName)
netprofile := contivModel.FindNetprofile(paramsKey)
if netprofile.Bandwidth != bandwidth {
t.Fatalf("error matching netprofile bandwidth: %s to: %s ", netprofile.Bandwidth, bandwidth)
}
if netprofile.DSCP != dscp {
t.Fatalf("error matching netprofile bandwidth: %d to: %d ", netprofile.DSCP, dscp)
}
if netprofile.Burst != burst {
t.Fatalf("error matching netprofile burst rate: %d to: %d ", netprofile.Burst, burst)
}
}
//checkDeleteNetProfile checks if the netprofile is deleted.
func checkDeleteNetProfile(t *testing.T, expError bool, profileName, tenantName string) {
err := contivClient.NetprofileDelete(tenantName, profileName)
if err != nil && !expError {
t.Fatalf("Error deleting Netprofile %s/%s Err: %v", profileName, tenantName, err)
} else if err == nil && expError {
t.Fatalf("delete NetProfile %s/%s succeeded while expecing error", profileName, tenantName)
} else if err == nil {
//check if netprofile is deleted.
_, err := contivClient.NetprofileGet(tenantName, profileName)
if err == nil {
t.Fatalf("Error deleting netprofile %s/%s. Netprofile still exists. Err: %v", tenantName, profileName, err)
}
}
}
// verifyEpgnetProfile verifies an EPG policy state
func verifyEpgnetProfile(t *testing.T, tenant, group, Bandwidth string, DSCP, burst int) {
// Get the state driver - get the etcd driver state
stateDriver, err := utils.GetStateDriver()
if err != nil {
t.Fatalf("Error getting the state of etcd driver %v", err)
}
epgKey := group + ":" + tenant
//read from etcd
epCfg := mastercfg.EndpointGroupState{}
epCfg.StateDriver = stateDriver
err = epCfg.Read(epgKey)
if err != nil {
t.Fatalf("Error finding endpointgroup %s. Err: %v", epgKey, err)
}
if epCfg.Bandwidth != Bandwidth {
t.Fatalf("Error updating endpoint group %s with bandwidth: %s, prev bandwidth: %s", epCfg.GroupName, Bandwidth, epCfg.Bandwidth)
}
if epCfg.DSCP != DSCP {
t.Fatalf("Error updating endpoint group %s with DSCP %d", epCfg.GroupName, DSCP)
}
if epCfg.Burst != burst {
t.Fatalf("Error updating endpoint group %s with burst %d applied burst:%d", epCfg.GroupName, burst, epCfg.Burst)
}
err = epCfg.Write()
if err != nil {
t.Fatalf("Error saving the etcd state")
}
}
//checkCreateEpgNp creates a group
func checkCreateEpgNp(t *testing.T, expError bool, tenant, ProfileName, network, group string, extContracts []string) {
epg := client.EndpointGroup{
TenantName: tenant,
NetProfile: ProfileName,
NetworkName: network,
GroupName: group,
ExtContractsGrps: extContracts,
}
err := contivClient.EndpointGroupPost(&epg)
if err != nil && !expError {
t.Fatalf("Error creating epg {%+v}. Err: %v", epg, err)
} else if err == nil && expError {
t.Fatalf("Create epg {%+v} succeeded while expecing error", epg)
} else if err == nil {
// verify epg is created
_, err := contivClient.EndpointGroupGet(tenant, group)
if err != nil {
t.Fatalf("Error getting epg %s/%s/%s. Err: %v", tenant, network, group, err)
}
}
}
// checkEpgnetProfileDeleted verifies EPG netprofile is deleted
func checkEpgnetProfileDetached(t *testing.T, tenant, network, group, nProfile string) {
// Get the state driver - get the etcd driver state
stateDriver, err := utils.GetStateDriver()
if err != nil {
t.Fatalf("Error getting the state of etcd driver %v", err)
}
epgKey := tenant + ":" + group
epgCfgKey := group + ":" + tenant
epCfg := mastercfg.EndpointGroupState{}
epCfg.StateDriver = stateDriver
//read the etcd
err = epCfg.Read(epgCfgKey)
if err != nil {
t.Fatalf("Error finding endpointgroup %s. Err: %v", epgCfgKey, err)
}
if epCfg.Bandwidth != "" {
t.Fatalf("Error removing bandwidth %s", epCfg.Bandwidth)
}
if epCfg.DSCP != 0 {
t.Fatalf("Error removing DSCP %d", epCfg.DSCP)
}
epg := contivModel.FindEndpointGroup(epgKey)
if epg == nil {
t.Fatalf("Error finding EPG %s", epgKey)
}
if epg.NetProfile != "" {
t.Fatalf("Error detaching net profile %s", epg.NetProfile)
}
//save the etcd state.
err = epCfg.Write()
if err != nil {
t.Fatalf("Error saving the etcd state")
}
}
// checkCreateEpg creates an EPG
func checkCreateEpg(t *testing.T, expError bool, tenant, network, group string, policies, extContracts []string, groupTag string) {
epg := client.EndpointGroup{
TenantName: tenant,
NetworkName: network,
GroupName: group,
Policies: policies,
ExtContractsGrps: extContracts,
CfgdTag: groupTag,
}
err := contivClient.EndpointGroupPost(&epg)
if err != nil && !expError {
t.Fatalf("Error creating epg {%+v}. Err: %v", epg, err)
} else if err == nil && expError {
t.Fatalf("Create epg {%+v} succeeded while expecting error", epg)
} else if err == nil {
// verify epg is created
_, err := contivClient.EndpointGroupGet(tenant, group)
if err != nil {
t.Fatalf("Error getting epg %s/%s/%s. Err: %v", tenant, network, group, err)
}
}
}
// checkCreateExtContractsGrp creates an external contracts group
func checkCreateExtContractsGrp(t *testing.T, expError bool, tenant, grpName, grpType string, contracts []string) {
extContractsGrp := client.ExtContractsGroup{
TenantName: tenant,
ContractsGroupName: grpName,
ContractsType: grpType,
Contracts: contracts,
}
err := contivClient.ExtContractsGroupPost(&extContractsGrp)
if err != nil && !expError {
t.Fatalf("Error creating extContractsGrp {%+v}. Err: %v", extContractsGrp, err)
} else if err == nil && expError {
t.Fatalf("Create extContrctsGrp {%+v} succeeded while expecting error", extContractsGrp)
} else if err == nil {
// verify extContractsGrp is created
_, err := contivClient.ExtContractsGroupGet(tenant, grpName)
if err != nil {
t.Fatalf("Error getting extContractsGrp %s/%s. Err: %v", tenant, grpName, err)
}
}
}
// checkDeleteExtContractsGrp deletes external contracts group
func checkDeleteExtContractsGrp(t *testing.T, expError bool, tenant, grpName string) {
err := contivClient.ExtContractsGroupDelete(tenant, grpName)
if err != nil && !expError {
t.Fatalf("Error deleting extContractsGrp %s/%s. Err: %v", tenant, grpName, err)
} else if err == nil && expError {
t.Fatalf("Delete extContractsGrp %s/%s succeeded while expecting error", tenant, grpName)
} else if err == nil {
// verify epg is gone
_, err := contivClient.ExtContractsGroupGet(tenant, grpName)
if err == nil {
t.Fatalf("ExtContractsGroup %s/%s not deleted", tenant, grpName)
}
}
}
// verifyEpgPolicy verifies an EPG policy state
func verifyEpgPolicy(t *testing.T, tenant, network, group, policy string) {
epgKey := tenant + ":" + group
policyKey := tenant + ":" + policy
epgpKey := epgKey + ":" + policyKey
// find the endpoint group
epg := contivModel.FindEndpointGroup(epgKey)
if epg == nil {
t.Fatalf("Error finding EPG %s", epgKey)
}
// find the policy
pol := contivModel.FindPolicy(policyKey)
if pol == nil {
t.Fatalf("Error finding policy %s", policyKey)
}
// See if it already exists
gp := mastercfg.FindEpgPolicy(epgpKey)
if gp == nil {
t.Fatalf("Error finding EPG policy %s", epgpKey)
}
// verify all rules exist in epg policy
for ruleKey := range pol.LinkSets.Rules {
if gp.RuleMaps[ruleKey] == nil {
t.Fatalf("Rule %s not found in EPG policy %s", ruleKey, epgpKey)
}
}
}
// checkEpgPolicyDeleted verifies EPG policy is deleted
func checkEpgPolicyDeleted(t *testing.T, tenant, network, group, policy string) {
epgKey := tenant + ":" + group
policyKey := tenant + ":" + policy
epgpKey := epgKey + ":" + policyKey
// See if it already exists
gp := mastercfg.FindEpgPolicy(epgpKey)
if gp != nil {
t.Fatalf("Found EPG policy %s while expecting it to be deleted", epgpKey)
}
}
// checkDeleteEpg deletes EPG
func checkDeleteEpg(t *testing.T, expError bool, tenant, network, group string) {
err := contivClient.EndpointGroupDelete(tenant, group)
if err != nil && !expError {
t.Fatalf("Error deleting epg %s/%s. Err: %v", tenant, group, err)
} else if err == nil && expError {
t.Fatalf("Delete epg %s/%s succeeded while expecting error", tenant, group)
} else if err == nil {
// verify epg is gone
_, err := contivClient.EndpointGroupGet(tenant, group)
if err == nil {
t.Fatalf("EndpointGroup %s/%s/%s not deleted", tenant, network, group)
}
}
}
// checkCreateAppProfile creates app-profiles and checks for error
func checkCreateAppProfile(t *testing.T, expError bool, tenant, profName string, epgs []string) {
prof := client.AppProfile{
TenantName: tenant,
AppProfileName: profName,
EndpointGroups: epgs,
}
err := contivClient.AppProfilePost(&prof)
if err != nil && !expError {
t.Fatalf("Error creating AppProfile {%+v}. Err: %v", prof, err)
} else if err == nil && expError {
t.Fatalf("Create AppProfile {%+v} succeeded while expecting error", prof)
} else if err == nil {
// verify AppProfile is created
_, err := contivClient.AppProfileGet(tenant, profName)
if err != nil {
t.Fatalf("Error getting AppProfile %s/%s. Err: %v", tenant, profName, err)
}
}
}
// verifyAppProfile creates app-profiles and checks for error
func verifyAppProfile(t *testing.T, expError bool, tenant, profName string, epgs []string) {
profKey := tenant + ":" + profName
prof := contivModel.FindAppProfile(profKey)
if prof == nil {
if expError {
return
}
t.Fatalf("Error AppProfile %s/%s not found.", tenant, profName)
}
// Verify the epg map
if len(epgs) != len(prof.EndpointGroups) {
t.Fatalf("Error epgs %v dont match profile %v", epgs, prof.EndpointGroups)
}
epgMap := make(map[string]bool)
for _, epg := range epgs {
epgMap[epg] = true
}
for _, epg := range prof.EndpointGroups {
found, res := epgMap[epg]
if !found || !res {
t.Fatalf("Error epgs %v dont match profile %v", epgs, prof.EndpointGroups)
}
}
}
// checkDeleteAppProfile deletes AppProf and looks for error
func checkDeleteAppProfile(t *testing.T, expError bool, tenant, prof string) {
err := contivClient.AppProfileDelete(tenant, prof)
if err != nil && !expError {
t.Fatalf("Error deleting AppProfile %s/%s. Err: %v", tenant, prof, err)
} else if err == nil && expError {
t.Fatalf("Delete AppProfile %s/%s succeeded while expecting error", tenant, prof)
} else if err == nil {
// verify AppProfile is gone
_, err := contivClient.AppProfileGet(tenant, prof)
if err == nil {
t.Fatalf("AppProfile %s/%s not deleted", tenant, prof)
} else {
t.Logf("AppProfile %s/%s successfully deleted", tenant, prof)
}
}
}
// checkCreateTenant creates Tenant and checks for error
func checkCreateTenant(t *testing.T, expError bool, tenantName string) {
// tenant params
tenant := client.Tenant{
TenantName: tenantName,
}
// create a tenant
err := contivClient.TenantPost(&tenant)
if err != nil && !expError {
t.Fatalf("Error creating tenant {%+v}. Err: %v", tenant, err)
} else if err == nil && expError {
t.Fatalf("Create tenant {%+v} succeeded while expecting error", tenant)
} else if err == nil {
// verify tenant is created
_, err := contivClient.TenantGet(tenantName)
if err != nil {
t.Fatalf("Error getting tenant %s. Err: %v", tenantName, err)
}
}
}
// checkDeleteTenant deletes tenant and looks for error
func checkDeleteTenant(t *testing.T, expError bool, tenant string) {
err := contivClient.TenantDelete(tenant)
if err != nil && !expError {
t.Fatalf("Error deleting tenant %s. Err: %v", tenant, err)
} else if err == nil && expError {
t.Fatalf("Delete tenant %s succeeded while expecting error", tenant)
} else if err == nil {
// verify network is gone
_, err := contivClient.TenantGet(tenant)
if err == nil {
t.Fatalf("Tenant %s not deleted", tenant)
}
}
}
// TestTenantDelete tests deletion of tenant
func TestTenantDelete(t *testing.T) {
// ensure global configs set
checkGlobalSet(t, false, "default", "1-4094", "1-10000", "bridge", "proxy", "172.19.0.0/16")
// Create one tenant, two networks and 3 epgs
checkCreateTenant(t, false, "tenant1")
checkCreateNetwork(t, false, "tenant1", "net1", "data", "vlan", "10.1.1.1/16", "10.1.1.254", 1, "", "", "")
checkCreateNetwork(t, false, "tenant1", "net2", "data", "vlan", "20.1.1.1/16", "20.1.1.254", 2, "", "", "test-tag")
checkCreateEpg(t, false, "tenant1", "net1", "group1", []string{}, []string{}, "")
checkCreateEpg(t, false, "tenant1", "net1", "group2", []string{}, []string{}, "")
checkCreateEpg(t, false, "tenant1", "net2", "group3", []string{}, []string{}, "epg-tag")
checkCreateAppProfile(t, false, "tenant1", "profile1", []string{})
checkCreateAppProfile(t, false, "tenant1", "profile2", []string{"group1"})
checkCreateAppProfile(t, false, "tenant1", "profile3", []string{"group1", "group3"})
// Verify that tenant can not be deleted while app-profile is attached to it
checkDeleteTenant(t, true, "tenant1")
// Delete app-Profiles now
checkDeleteAppProfile(t, false, "tenant1", "profile1")
checkDeleteAppProfile(t, false, "tenant1", "profile2")
checkDeleteAppProfile(t, false, "tenant1", "profile3")
// Verify that tenant can not deleted while EPGs are attached to it.
checkDeleteTenant(t, true, "tenant1")
// Delete EPGs
checkDeleteEpg(t, false, "tenant1", "net1", "group1")
checkDeleteEpg(t, false, "tenant1", "net1", "group2")
checkDeleteEpg(t, false, "tenant1", "net2", "group3")
// Verify that tenant can not deleted while Networks are attached to it.
checkDeleteTenant(t, true, "tenant1")
// Delete Networks
checkDeleteNetwork(t, false, "tenant1", "net1")
checkDeleteNetwork(t, false, "tenant1", "net2")
// Verify that tenant can be delete now
checkDeleteTenant(t, false, "tenant1")
}
// TestTenantAddDelete tests tenant add delete
func TestTenantAddDelete(t *testing.T) {
// tenant params
tenant := client.Tenant{
TenantName: "tenant1",
}
// create a tenant
err := contivClient.TenantPost(&tenant)
checkError(t, "create tenant", err)
err = contivClient.TenantPost(&client.Tenant{TenantName: "tenant-valid"})
checkError(t, "create tenant", err)
// Get the tenant and verify it exists
gotTenant, err := contivClient.TenantGet("tenant1")
checkError(t, "get tenant", err)
if gotTenant.TenantName != tenant.TenantName {
t.Fatalf("Got invalid tenant name. expecting %s. Got %s", tenant.TenantName, gotTenant.TenantName)
}
// Try creating invalid names and verify we get an error
if contivClient.TenantPost(&client.Tenant{TenantName: "tenant:invalid"}) == nil {
t.Fatalf("tenant create succeeded while expecting error")
}
if contivClient.TenantPost(&client.Tenant{TenantName: "tenant|invalid"}) == nil {
t.Fatalf("tenant create succeeded while expecting error")
}
if contivClient.TenantPost(&client.Tenant{TenantName: "tenant\\invalid"}) == nil {
t.Fatalf("tenant create succeeded while expecting error")
}
if contivClient.TenantPost(&client.Tenant{TenantName: "tenant#invalid"}) == nil {
t.Fatalf("tenant create succeeded while expecting error")
}
if contivClient.TenantPost(&client.Tenant{TenantName: "-tenant"}) == nil {
t.Fatalf("tenant create succeeded while expecting error")
}
if contivClient.TenantPost(&client.Tenant{TenantName: "tenant@invalid"}) == nil {
t.Fatalf("tenant create succeeded while expecting error")
}
if contivClient.TenantPost(&client.Tenant{TenantName: "tenant!invalid"}) == nil {
t.Fatalf("tenant create succeeded while expecting error")
}
if contivClient.TenantPost(&client.Tenant{TenantName: "tenant~invalid"}) == nil {
t.Fatalf("tenant create succeeded while expecting error")
}
if contivClient.TenantPost(&client.Tenant{TenantName: "tenant*invalid"}) == nil {
t.Fatalf("tenant create succeeded while expecting error")
}
if contivClient.TenantPost(&client.Tenant{TenantName: "tenant^invalid"}) == nil {
t.Fatalf("tenant create succeeded while expecting error")
}
// delete tenant
err = contivClient.TenantDelete("tenant1")
checkError(t, "delete tenant", err)
err = contivClient.TenantDelete("tenant-valid")
checkError(t, "delete tenant", err)
// find again and make sure its gone
_, err = contivClient.TenantGet("tenant1")
if err == nil {
t.Fatalf("Tenant was not deleted")
}
}
// TestOverlappingSubnets tests overlapping network create/delete REST api
func TestOverlappingSubnets(t *testing.T) {
// ensure global configs set
checkGlobalSet(t, false, "default", "1-4094", "1-10000", "bridge", "proxy", "172.19.0.0/16")
// Non-overlapping subnet for same tenant - vlan & gateway
checkCreateNetwork(t, false, "default", "contiv1", "", "vlan", "10.1.1.0/24", "10.1.1.220", 1, "", "", "")
checkCreateNetwork(t, false, "default", "contiv2", "", "vlan", "10.1.2.0/24", "10.1.2.254", 2, "", "", "")
checkInspectNetwork(t, false, "default", "contiv1", "10.1.1.220", 1, 0)
checkInspectNetwork(t, false, "default", "contiv2", "10.1.2.254", 2, 0)
checkDeleteNetwork(t, false, "default", "contiv1")
checkDeleteNetwork(t, false, "default", "contiv2")
// overlapping subnet for same tenant -- vlan - vxlan combination
checkCreateNetwork(t, false, "default", "contiv", "", "vlan", "10.1.1.0/24", "", 1, "", "", "")
checkCreateNetwork(t, true, "default", "contiv1", "", "vxlan", "10.1.1.0/24", "", 2, "", "", "")
checkInspectNetwork(t, false, "default", "contiv", "", 1, 0)
checkDeleteNetwork(t, false, "default", "contiv")
// Overlapping subnet for same tenant - vxlan
checkCreateNetwork(t, false, "default", "contiv", "", "vxlan", "10.1.1.0/24", "", 1, "", "", "")
checkCreateNetwork(t, true, "default", "contiv1", "", "vxlan", "10.1.1.0/24", "", 2, "", "", "")
checkInspectNetwork(t, false, "default", "contiv", "", 1, 0)
checkDeleteNetwork(t, false, "default", "contiv")
// Overlapping subnet for same tenant - including gateway
checkCreateNetwork(t, false, "default", "contiv", "", "vlan", "10.1.1.0/24", "", 1, "", "", "")
checkCreateNetwork(t, true, "default", "contiv1", "", "vlan", "10.1.1.0/24", "10.1.1.233", 2, "", "", "")