forked from contiv/ofnet
-
Notifications
You must be signed in to change notification settings - Fork 8
/
ofnet_route_test.go
585 lines (504 loc) · 18.3 KB
/
ofnet_route_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
package ofnet
import (
"fmt"
"net"
"os/exec"
"strings"
"testing"
"time"
log "github.com/Sirupsen/logrus"
api "github.com/osrg/gobgp/api"
bgp "github.com/osrg/gobgp/packet/bgp"
table "github.com/osrg/gobgp/table"
"golang.org/x/net/context"
"google.golang.org/grpc"
)
func verifyHostNAT(t *testing.T, flowList []string, tableId int, flow string, expectFlow bool) {
if expectFlow != ofctlFlowMatch(flowList, tableId, flow) {
if expectFlow {
t.Errorf("Expected %s in table %d -- not found", flow, tableId)
} else {
t.Errorf("Unexpected %s in table %d", flow, tableId)
}
log.Infof("Flowlist: %v", flowList)
}
}
// Test adding/deleting Vrouter routes
func TestOfnetVrouteAddDelete(t *testing.T) {
for iter := 0; iter < NUM_ITER; iter++ {
setupHostPorts()
for i := 0; i < NUM_AGENT; i++ {
j := i + 1
macAddr, _ := net.ParseMAC(fmt.Sprintf("02:02:02:%02x:%02x:%02x", j, j, j))
ipAddr := net.ParseIP(fmt.Sprintf("10.10.%d.%d", j, j))
var ipv6Addr net.IP
if j%2 == 0 {
ipv6Addr = net.ParseIP(fmt.Sprintf("2016::%d:%d", j, j))
}
hostPvtIP := net.ParseIP(fmt.Sprintf("172.20.20.%d", uint32(NUM_AGENT+2)))
endpoint := EndpointInfo{
PortNo: uint32(NUM_AGENT + 2),
MacAddr: macAddr,
Vlan: 1,
IpAddr: ipAddr,
Ipv6Addr: ipv6Addr,
HostPvtIP: hostPvtIP,
}
log.Infof("Installing local vrouter endpoint: %+v", endpoint)
// Install the local endpoint
err := vrtrAgents[i].AddLocalEndpoint(endpoint)
if err != nil {
t.Fatalf("Error installing endpoint: %+v. Err: %v", endpoint, err)
return
}
}
log.Infof("Finished adding local vrouter endpoint")
// verify all ovs switches have this route
for i := 0; i < NUM_AGENT; i++ {
brName := "vrtrBridge" + fmt.Sprintf("%d", i)
flowList, err := ofctlFlowDump(brName)
if err != nil {
t.Errorf("Error getting flow entries. Err: %v", err)
}
log.Infof("Flowlist: %v", flowList)
// verify ingress host NAT flows
hpInMatch := fmt.Sprintf("priority=99,in_port=%d actions=goto_table:%d", testHostPort+i, HOST_DNAT_TBL_ID)
verifyHostNAT(t, flowList, 0, hpInMatch, true)
hpDnatMatch := fmt.Sprintf("priority=100,ip,in_port=%d,nw_dst=172.20.20.%d actions=set_field:02:02:02:%02x:%02x:%02x->eth_dst,set_field:10.10.%d.%d->ip_dst,write_metadata:0x100000000/0xff00000000,goto_table:%d", testHostPort+i, NUM_AGENT+2, i+1, i+1, i+1, i+1, i+1, SRV_PROXY_SNAT_TBL_ID)
verifyHostNAT(t, flowList, HOST_DNAT_TBL_ID, hpDnatMatch, true)
// verify egress host NAT flows
ipMiss := fmt.Sprintf("priority=1 actions=goto_table:%d", HOST_SNAT_TBL_ID)
verifyHostNAT(t, flowList, IP_TBL_ID, ipMiss, true)
hostSnat := fmt.Sprintf("priority=100,ip,in_port=%d actions=set_field:00:11:22:33:44:%02x->eth_dst,set_field:172.20.20.%d->ip_src,output:%d", NUM_AGENT+2, i, NUM_AGENT+2, testHostPort+i)
verifyHostNAT(t, flowList, HOST_SNAT_TBL_ID, hostSnat, true)
denyFlow := "priority=101,ip,nw_dst=172.20.0.0/16 actions=drop"
verifyHostNAT(t, flowList, HOST_SNAT_TBL_ID, denyFlow, true)
// verify flow entry exists
for j := 0; j < NUM_AGENT; j++ {
k := j + 1
ipFlowMatch := fmt.Sprintf("priority=100,ip,metadata=0x100000000/0xff00000000,nw_dst=10.10.%d.%d", k, k)
ipTableId := IP_TBL_ID
if !ofctlFlowMatch(flowList, ipTableId, ipFlowMatch) {
t.Errorf("Could not find the route %s on ovs %s", ipFlowMatch, brName)
}
log.Infof("Found ipflow %s on ovs %s", ipFlowMatch, brName)
if k%2 == 0 {
ipv6FlowMatch := fmt.Sprintf("priority=100,ipv6,metadata=0x100000000/0xff00000000,ipv6_dst=2016::%d:%d", k, k)
if !ofctlFlowMatch(flowList, ipTableId, ipv6FlowMatch) {
t.Errorf("Could not find IPv6 route %s on ovs %s", ipv6FlowMatch, brName)
return
}
log.Infof("Found IPv6 ipflow %s on ovs %s", ipv6FlowMatch, brName)
}
}
}
log.Infof("Adding Vrouter endpoint successful.\n Testing Delete")
for i := 0; i < NUM_AGENT; i++ {
j := i + 1
macAddr, _ := net.ParseMAC(fmt.Sprintf("02:02:02:%02x:%02x:%02x", j, j, j))
ipAddr := net.ParseIP(fmt.Sprintf("10.10.%d.%d", j, j))
var ipv6Addr net.IP
if j%2 == 0 {
ipv6Addr = net.ParseIP(fmt.Sprintf("2016::%d:%d", j, j))
}
endpoint := EndpointInfo{
PortNo: uint32(NUM_AGENT + 2),
MacAddr: macAddr,
Vlan: 1,
IpAddr: ipAddr,
Ipv6Addr: ipv6Addr,
}
log.Infof("Deleting local vrouter endpoint: %+v", endpoint)
// Install the local endpoint
err := vrtrAgents[i].RemoveLocalEndpoint(uint32(NUM_AGENT + 2))
if err != nil {
t.Fatalf("Error deleting endpoint: %+v. Err: %v", endpoint, err)
return
}
}
cleanupHostPorts()
log.Infof("Deleted endpoints. Verifying they are gone")
// verify flows are deleted
for i := 0; i < NUM_AGENT; i++ {
brName := "vrtrBridge" + fmt.Sprintf("%d", i)
flowList, err := ofctlFlowDump(brName)
if err != nil {
t.Errorf("Error getting flow entries. Err: %v", err)
}
// verify ingress host NAT flows
hpInMatch := fmt.Sprintf("priority=99,in_port=%d actions=goto_table:%d", testHostPort+i, HOST_DNAT_TBL_ID)
verifyHostNAT(t, flowList, 0, hpInMatch, false)
hpDnatMatch := fmt.Sprintf("priority=100,ip,in_port=%d,nw_dst=172.20.20.%d actions=set_field:02:02:02:%02x:%02x:%02x->eth_dst,set_field:10.10.%d.%d->ip_dst,write_metadata:0x100000000/0xff00000000,goto_table:%d", testHostPort+i, NUM_AGENT+2, i+1, i+1, i+1, i+1, i+1, SRV_PROXY_SNAT_TBL_ID)
verifyHostNAT(t, flowList, HOST_DNAT_TBL_ID, hpDnatMatch, false)
hostSnat := fmt.Sprintf("priority=100,ip,in_port=%d actions=set_field:00:11:22:33:44:%02x->eth_dst,set_field:172.20.20.%d->ip_src,output:%d", NUM_AGENT+2, i, NUM_AGENT+2, testHostPort+i)
verifyHostNAT(t, flowList, HOST_SNAT_TBL_ID, hostSnat, false)
denyFlow := "priority=101,ip,nw_dst=172.20.0.0/16 actions=drop"
verifyHostNAT(t, flowList, HOST_SNAT_TBL_ID, denyFlow, false)
// verify flow entry exists
for j := 0; j < NUM_AGENT; j++ {
k := j + 1
ipFlowMatch := fmt.Sprintf("priority=100,ip,metadata=0x100000000/0xff00000000,nw_dst=10.10.%d.%d", k, k)
ipTableId := IP_TBL_ID
if ofctlFlowMatch(flowList, ipTableId, ipFlowMatch) {
t.Errorf("Still found the flow %s on ovs %s", ipFlowMatch, brName)
}
if k%2 == 0 {
ipv6FlowMatch := fmt.Sprintf("priority=100,ipv6,metadata=0x100000000/0xff00000000,ipv6_dst=2016::%d:%d", k, k)
if ofctlFlowMatch(flowList, ipTableId, ipv6FlowMatch) {
t.Errorf("Still found the flow %s on ovs %s", ipv6FlowMatch, brName)
}
}
}
}
log.Infof("Verified all flows are deleted")
}
}
// Test adding/deleting Vxlan routes
func TestOfnetVxlanAddDelete(t *testing.T) {
for iter := 0; iter < NUM_ITER; iter++ {
for i := 0; i < NUM_AGENT; i++ {
j := i + 1
macAddr, _ := net.ParseMAC(fmt.Sprintf("02:02:02:%02x:%02x:%02x", j, j, j))
ipAddr := net.ParseIP(fmt.Sprintf("10.10.%d.%d", j, j))
var ipv6Addr net.IP
if j%2 == 0 {
ipv6Addr = net.ParseIP(fmt.Sprintf("2016::%d:%d", j, j))
}
endpoint := EndpointInfo{
PortNo: uint32(NUM_AGENT + 2),
MacAddr: macAddr,
Vlan: 1,
IpAddr: ipAddr,
Ipv6Addr: ipv6Addr,
}
log.Infof("Installing local vxlan endpoint: %+v", endpoint)
// Install the local endpoint
err := vxlanAgents[i].AddLocalEndpoint(endpoint)
if err != nil {
t.Errorf("Error installing endpoint: %+v. Err: %v", endpoint, err)
}
}
log.Infof("Finished adding local vxlan endpoint")
// verify all ovs switches have this route
for i := 0; i < NUM_AGENT; i++ {
brName := "vxlanBridge" + fmt.Sprintf("%d", i)
flowList, err := ofctlFlowDump(brName)
if err != nil {
t.Errorf("Error getting flow entries. Err: %v", err)
}
// verify flow entry exists
for j := 0; j < NUM_AGENT; j++ {
k := j + 1
macFlowMatch := fmt.Sprintf("priority=100,dl_vlan=1,dl_dst=02:02:02:%02x:%02x:%02x", k, k, k)
macTableId := MAC_DEST_TBL_ID
if !ofctlFlowMatch(flowList, macTableId, macFlowMatch) {
t.Errorf("Could not find the mac flow %s on ovs %s", macFlowMatch, brName)
}
log.Infof("Found macFlow %s on ovs %s", macFlowMatch, brName)
}
}
log.Infof("Add vxlan endpoint successful.\n Testing Delete")
for i := 0; i < NUM_AGENT; i++ {
j := i + 1
macAddr, _ := net.ParseMAC(fmt.Sprintf("02:02:02:%02x:%02x:%02x", j, j, j))
ipAddr := net.ParseIP(fmt.Sprintf("10.10.%d.%d", j, j))
var ipv6Addr net.IP
if j%2 == 0 {
ipv6Addr = net.ParseIP(fmt.Sprintf("2016::%d:%d", j, j))
}
endpoint := EndpointInfo{
PortNo: uint32(NUM_AGENT + 2),
MacAddr: macAddr,
Vlan: 1,
IpAddr: ipAddr,
Ipv6Addr: ipv6Addr,
}
log.Infof("Deleting local vxlan endpoint: %+v", endpoint)
// Install the local endpoint
err := vxlanAgents[i].RemoveLocalEndpoint(uint32(NUM_AGENT + 2))
if err != nil {
t.Errorf("Error deleting endpoint: %+v. Err: %v", endpoint, err)
}
}
log.Infof("Deleted endpoints. Verifying they are gone")
// verify flow is deleted
for i := 0; i < NUM_AGENT; i++ {
brName := "vxlanBridge" + fmt.Sprintf("%d", i)
flowList, err := ofctlFlowDump(brName)
if err != nil {
t.Errorf("Error getting flow entries. Err: %v", err)
}
// verify flow entry exists
for j := 0; j < NUM_AGENT; j++ {
k := j + 1
macFlowMatch := fmt.Sprintf("priority=100,dl_vlan=1,dl_dst=02:02:02:%02x:%02x:%02x", k, k, k)
macTableId := MAC_DEST_TBL_ID
if ofctlFlowMatch(flowList, macTableId, macFlowMatch) {
t.Errorf("Still found the mac flow %s on ovs %s", macFlowMatch, brName)
}
}
}
}
}
// Run an ovs-ofctl command
func runOfctlCmd(cmd, brName string) ([]byte, error) {
cmdStr := fmt.Sprintf("sudo /usr/bin/ovs-ofctl -O Openflow13 %s %s", cmd, brName)
out, err := exec.Command("/bin/sh", "-c", cmdStr).Output()
if err != nil {
log.Errorf("error running ovs-ofctl %s %s. Error: %v", cmd, brName, err)
return nil, err
}
return out, nil
}
// dump the flows and parse the Output
func ofctlFlowDump(brName string) ([]string, error) {
flowDump, err := runOfctlCmd("dump-flows", brName)
if err != nil {
log.Errorf("Error running dump-flows on %s. Err: %v", brName, err)
return nil, err
}
log.Debugf("Flow dump: %s", flowDump)
flowOutStr := string(flowDump)
flowDb := strings.Split(flowOutStr, "\n")[1:]
log.Debugf("flowDb: %+v", flowDb)
var flowList []string
for _, flow := range flowDb {
felem := strings.Fields(flow)
if len(felem) > 2 {
felem = append(felem[:1], felem[2:]...)
felem = append(felem[:2], felem[4:]...)
fstr := strings.Join(felem, " ")
flowList = append(flowList, fstr)
}
}
log.Debugf("flowList: %+v", flowList)
return flowList, nil
}
// Find a flow in flow list and match its action
func ofctlFlowMatch(flowList []string, tableId int, matchStr string) bool {
mtStr := fmt.Sprintf("table=%d, %s", tableId, matchStr)
for _, flowEntry := range flowList {
log.Debugf("Looking for %s in %s", mtStr, flowEntry)
if strings.Contains(flowEntry, mtStr) {
return true
}
}
return false
}
func TestOfnetBgpPeerAddDelete(t *testing.T) {
neighborAs := "500"
peer := "50.1.1.2"
routerIP := "50.1.1.1/24"
as := "65002"
//Add Bgp neighbor and check if it is successful
uplinkSinglePort := createPort("upPort")
for i := 0; i < NUM_VLRTR_AGENT; i++ {
err := addUplink(vlrtrAgents[0], uplinkSinglePort)
if err != nil {
t.Fatalf("Uplink port creation failed for vlrouter agent: %+v", err)
}
time.Sleep(2 * time.Second)
err = vlrtrAgents[i].AddBgp(routerIP, as, neighborAs, peer)
if err != nil {
t.Errorf("Error adding Bgp Neighbor: %v", err)
return
}
timeout := grpc.WithTimeout(time.Second)
conn, err := grpc.Dial("127.0.0.1:50051", timeout, grpc.WithBlock(), grpc.WithInsecure())
if err != nil {
t.Fatal(err)
}
defer conn.Close()
client := api.NewGobgpApiClient(conn)
if client == nil {
t.Errorf("GoBgpApiclient is invalid")
}
//Check if neighbor is added to bgp server
bgpPeer, err := client.GetNeighbor(context.Background(), &api.GetNeighborRequest{})
if err != nil {
t.Errorf("GetNeighbor failed: %v", err)
return
}
//Delete BGP neighbor
err = vlrtrAgents[i].DeleteBgp()
if err != nil {
t.Errorf("Error Deleting Bgp Neighbor: %v", err)
return
}
//Check if neighbor is added to bgp server
bgpPeer, err = client.GetNeighbor(context.Background(), &api.GetNeighborRequest{})
if len(bgpPeer.Peers) != 0 {
t.Errorf("Neighbor is not deleted: %v", err)
return
}
err = delUplink(vlrtrAgents[0], uplinkSinglePort)
if err != nil {
t.Fatalf("Uplink port deletion failed for vlrouter agent: %+v", err)
}
}
}
// Test adding/deleting Vlrouter routes
func TestOfnetVlrouteAddDelete(t *testing.T) {
neighborAs := "500"
peer := "50.1.1.2"
routerIP := "50.1.1.1/24"
as := "65002"
//Add Bgp neighbor and check if it is successful
uplinkSinglePort := createPort("upPort")
for i := 0; i < NUM_VLRTR_AGENT; i++ {
err := addUplink(vlrtrAgents[0], uplinkSinglePort)
if err != nil {
t.Fatalf("Uplink port creation failed for vlrouter agent: %+v", err)
}
time.Sleep(2 * time.Second)
err = vlrtrAgents[i].AddBgp(routerIP, as, neighborAs, peer)
if err != nil {
t.Errorf("Error adding Bgp Neighbor: %v", err)
return
}
macAddr, _ := net.ParseMAC("02:02:01:06:06:06")
ipAddr := net.ParseIP("20.20.20.20")
// ipv6Addr := net.ParseIP("2020::20:20")
endpoint := EndpointInfo{
PortNo: uint32(NUM_AGENT + 3),
MacAddr: macAddr,
Vlan: 1,
IpAddr: ipAddr,
// Ipv6Addr: ipv6Addr,
}
log.Infof("Installing local vlrouter endpoint: %+v", endpoint)
err = vlrtrAgents[i].AddNetwork(uint16(1), uint32(1), "20.20.20.254", "default")
if err != nil {
t.Errorf("Error adding vlan 1 . Err: %v", err)
}
// Install the local endpoint
err = vlrtrAgents[i].AddLocalEndpoint(endpoint)
if err != nil {
t.Fatalf("Error installing endpoint: %+v. Err: %v", endpoint, err)
return
}
log.Infof("Finished adding local vlrouter endpoint")
// verify all ovs switches have this route
brName := "vlrtrBridge" + fmt.Sprintf("%d", i)
flowList, err := ofctlFlowDump(brName)
if err != nil {
t.Errorf("Error getting flow entries. Err: %v", err)
return
}
// verify flow entry exists
ipFlowMatch := fmt.Sprintf("priority=102,ip,nw_dst=20.20.20.20")
ipTableId := IP_TBL_ID
if !ofctlFlowMatch(flowList, ipTableId, ipFlowMatch) {
t.Errorf("Could not find the route %s on ovs %s", ipFlowMatch, brName)
return
}
log.Infof("Found ipflow %s on ovs %s", ipFlowMatch, brName)
// verify IPv6 flow entry exists
// ipv6FlowMatch := fmt.Sprintf("priority=100,ipv6,ipv6_dst=2020::20:20")
// if !ofctlFlowMatch(flowList, ipTableId, ipv6FlowMatch) {
// t.Errorf("Could not find the route %s on ovs %s", ipv6FlowMatch, brName)
// return
// }
// log.Infof("Found ipv6 flow %s on ovs %s", ipv6FlowMatch, brName)
log.Infof("Adding Vlrouter endpoint successful.\n Testing Delete")
macAddr, _ = net.ParseMAC("02:02:01:06:06:06")
ipAddr = net.ParseIP("20.20.20.20")
endpoint = EndpointInfo{
PortNo: uint32(NUM_AGENT + 3),
MacAddr: macAddr,
Vlan: 1,
IpAddr: ipAddr,
}
log.Infof("Deleting local vlrouter endpoint: %+v", endpoint)
// Install the local endpoint
err = vlrtrAgents[i].RemoveLocalEndpoint(uint32(NUM_AGENT + 3))
if err != nil {
t.Fatalf("Error deleting endpoint: %+v. Err: %v", endpoint, err)
return
}
log.Infof("Deleted endpoints. Verifying they are gone")
// verify flows are deleted
brName = "vlrtrBridge" + fmt.Sprintf("%d", i)
flowList, err = ofctlFlowDump(brName)
if err != nil {
t.Errorf("Error getting flow entries. Err: %v", err)
}
// verify flow entry exists
ipFlowMatch = fmt.Sprintf("priority=102,ip,nw_dst=20.20.20.20")
ipTableId = IP_TBL_ID
if ofctlFlowMatch(flowList, ipTableId, ipFlowMatch) {
t.Errorf("Still found the flow %s on ovs %s", ipFlowMatch, brName)
}
// verify IPv6 flow entry exists
vlrtrAgents[i].DeleteBgp()
err = delUplink(vlrtrAgents[0], uplinkSinglePort)
if err != nil {
t.Fatalf("Uplink port deletion failed for vlrouter agent: %+v", err)
}
log.Infof("Verified all flows are deleted")
}
}
// Test adding/deleting Vlrouter routes
func TestOfnetBgpVlrouteAddDelete(t *testing.T) {
neighborAs := "500"
peer := "50.1.1.3"
routerIP := "50.1.1.2/24"
as := "65002"
//Add Bgp neighbor and check if it is successful
uplinkSinglePort := createPort("upPort")
for i := 0; i < NUM_VLRTR_AGENT; i++ {
err := addUplink(vlrtrAgents[0], uplinkSinglePort)
if err != nil {
t.Fatalf("Uplink port creation failed for vlrouter agent: %+v", err)
}
err = vlrtrAgents[i].AddBgp(routerIP, as, neighborAs, peer)
time.Sleep(5 * time.Second)
if err != nil {
t.Errorf("Error adding Bgp Neighbor: %v", err)
return
}
attrs := []bgp.PathAttributeInterface{
bgp.NewPathAttributeOrigin(1),
bgp.NewPathAttributeNextHop("50.1.1.3"),
bgp.NewPathAttributeAsPath([]bgp.AsPathParamInterface{bgp.NewAs4PathParam(bgp.BGP_ASPATH_ATTR_TYPE_SEQ, []uint32{65002})}),
}
path := table.NewPath(nil, bgp.NewIPAddrPrefix(32, "20.20.20.20"), false, attrs, time.Now(), false)
vlrtrAgents[i].protopath.ModifyProtoRib(path)
log.Infof("Adding path to the Bgp Rib")
time.Sleep(2 * time.Second)
// verify flow entry exists
brName := "vlrtrBridge" + fmt.Sprintf("%d", i)
flowList, err := ofctlFlowDump(brName)
if err != nil {
t.Errorf("Error getting flow entries. Err: %v", err)
}
ipFlowMatch := fmt.Sprintf("priority=101,ip,nw_dst=20.20.20.20")
ipTableId := IP_TBL_ID
if !ofctlFlowMatch(flowList, ipTableId, ipFlowMatch) {
t.Errorf("Could not find the route %s on ovs %s", ipFlowMatch, brName)
return
}
log.Infof("Found ipflow %s on ovs %s", ipFlowMatch, brName)
// withdraw the route
path.IsWithdraw = true
vlrtrAgents[i].protopath.ModifyProtoRib(path)
log.Infof("Withdrawing route from BGP rib")
// verify flow entry exists
brName = "vlrtrBridge" + fmt.Sprintf("%d", i)
flowList, err = ofctlFlowDump(brName)
if err != nil {
t.Errorf("Error getting flow entries. Err: %v", err)
}
ipFlowMatch = fmt.Sprintf("priority=101,ip,nw_dst=20.20.20.20")
ipTableId = IP_TBL_ID
if ofctlFlowMatch(flowList, ipTableId, ipFlowMatch) {
t.Errorf("Found the route %s on ovs %s which was withdrawn", ipFlowMatch, brName)
return
}
log.Infof("ipflow %s on ovs %s has been deleted from OVS", ipFlowMatch, brName)
err = delUplink(vlrtrAgents[0], uplinkSinglePort)
if err != nil {
t.Fatalf("Uplink port deletion failed for vlrouter agent: %+v", err)
}
}
}