@@ -55,7 +55,7 @@ func TestEgressIP(t *testing.T) {
55
55
}
56
56
err = assertFlowChanges (origFlows , flows ) // no changes
57
57
if err != nil {
58
- t .Fatalf ("Unexpected flow changes: %v" , err )
58
+ t .Fatalf ("Unexpected flow changes: %v\n Orig: %#v \n New: %#v " , err , origFlows , flows )
59
59
}
60
60
61
61
// Assign NetNamespace.EgressIP first, then HostSubnet.EgressIP, with a remote EgressIP
@@ -75,7 +75,7 @@ func TestEgressIP(t *testing.T) {
75
75
},
76
76
)
77
77
if err != nil {
78
- t .Fatalf ("Unexpected flow changes: %v" , err )
78
+ t .Fatalf ("Unexpected flow changes: %v\n Orig: %#v \n New: %#v " , err , origFlows , flows )
79
79
}
80
80
81
81
ns42 := eip .namespacesByVNID [42 ]
@@ -99,7 +99,7 @@ func TestEgressIP(t *testing.T) {
99
99
},
100
100
)
101
101
if err != nil {
102
- t .Fatalf ("Unexpected flow changes: %v" , err )
102
+ t .Fatalf ("Unexpected flow changes: %v\n Orig: %#v \n New: %#v " , err , origFlows , flows )
103
103
}
104
104
origFlows = flows
105
105
@@ -120,7 +120,7 @@ func TestEgressIP(t *testing.T) {
120
120
}
121
121
err = assertFlowChanges (origFlows , flows )
122
122
if err != nil {
123
- t .Fatalf ("Unexpected flow changes: %v" , err )
123
+ t .Fatalf ("Unexpected flow changes: %v\n Orig: %#v \n New: %#v " , err , origFlows , flows )
124
124
}
125
125
126
126
if eip .nodesByEgressIP ["172.17.0.100" ] != node3 || eip .nodesByEgressIP ["172.17.0.101" ] != node3 {
@@ -143,7 +143,7 @@ func TestEgressIP(t *testing.T) {
143
143
},
144
144
)
145
145
if err != nil {
146
- t .Fatalf ("Unexpected flow changes: %v" , err )
146
+ t .Fatalf ("Unexpected flow changes: %v\n Orig: %#v \n New: %#v " , err , origFlows , flows )
147
147
}
148
148
origFlows = flows
149
149
@@ -169,7 +169,7 @@ func TestEgressIP(t *testing.T) {
169
169
},
170
170
)
171
171
if err != nil {
172
- t .Fatalf ("Unexpected flow changes: %v" , err )
172
+ t .Fatalf ("Unexpected flow changes: %v\n Orig: %#v \n New: %#v " , err , origFlows , flows )
173
173
}
174
174
175
175
ns44 := eip .namespacesByVNID [44 ]
@@ -193,7 +193,7 @@ func TestEgressIP(t *testing.T) {
193
193
},
194
194
)
195
195
if err != nil {
196
- t .Fatalf ("Unexpected flow changes: %v" , err )
196
+ t .Fatalf ("Unexpected flow changes: %v\n Orig: %#v \n New: %#v " , err , origFlows , flows )
197
197
}
198
198
origFlows = flows
199
199
@@ -214,7 +214,7 @@ func TestEgressIP(t *testing.T) {
214
214
}
215
215
err = assertFlowChanges (origFlows , flows )
216
216
if err != nil {
217
- t .Fatalf ("Unexpected flow changes: %v" , err )
217
+ t .Fatalf ("Unexpected flow changes: %v\n Orig: %#v \n New: %#v " , err , origFlows , flows )
218
218
}
219
219
220
220
if eip .nodesByEgressIP ["172.17.0.102" ] != node4 || eip .nodesByEgressIP ["172.17.0.103" ] != node4 {
@@ -237,7 +237,7 @@ func TestEgressIP(t *testing.T) {
237
237
},
238
238
)
239
239
if err != nil {
240
- t .Fatalf ("Unexpected flow changes: %v" , err )
240
+ t .Fatalf ("Unexpected flow changes: %v\n Orig: %#v \n New: %#v " , err , origFlows , flows )
241
241
}
242
242
origFlows = flows
243
243
@@ -263,14 +263,40 @@ func TestEgressIP(t *testing.T) {
263
263
},
264
264
)
265
265
if err != nil {
266
- t .Fatalf ("Unexpected flow changes: %v" , err )
266
+ t .Fatalf ("Unexpected flow changes: %v\n Orig: %#v \n New: %#v " , err , origFlows , flows )
267
267
}
268
268
origFlows = flows
269
269
270
270
if eip .namespacesByVNID [44 ] != nil || eip .namespacesByEgressIP ["172.17.0.102" ] != nil || eip .nodesByEgressIP ["172.17.0.102" ] != node4 {
271
271
t .Fatalf ("Unexpected eip state: %#v" , eip )
272
272
}
273
273
274
+ // Add namespace EgressIP back again after having removed it...
275
+ eip .updateNamespaceEgress (44 , "172.17.0.102" )
276
+ err = assertNetlinkChange (eip , "claim 172.17.0.102" )
277
+ if err != nil {
278
+ t .Fatalf ("%v" , err )
279
+ }
280
+ flows , err = ovsif .DumpFlows ("" )
281
+ if err != nil {
282
+ t .Fatalf ("Unexpected error dumping flows: %v" , err )
283
+ }
284
+ err = assertFlowChanges (origFlows , flows ,
285
+ flowChange {
286
+ kind : flowAdded ,
287
+ match : []string {"table=100" , "reg0=44" , "0x0000002c->pkt_mark" , "goto_table:101" },
288
+ },
289
+ )
290
+ if err != nil {
291
+ t .Fatalf ("Unexpected flow changes: %v\n Orig: %#v\n New: %#v" , err , origFlows , flows )
292
+ }
293
+ origFlows = flows
294
+
295
+ ns44 = eip .namespacesByVNID [44 ]
296
+ if ns44 == nil || eip .namespacesByEgressIP ["172.17.0.102" ] != ns44 || eip .nodesByEgressIP ["172.17.0.102" ] != node4 {
297
+ t .Fatalf ("Unexpected eip state: %#v" , eip )
298
+ }
299
+
274
300
// Drop remote node EgressIP
275
301
eip .updateNodeEgress ("172.17.0.3" , []string {"172.17.0.100" })
276
302
err = assertNoNetlinkChanges (eip )
@@ -292,7 +318,7 @@ func TestEgressIP(t *testing.T) {
292
318
},
293
319
)
294
320
if err != nil {
295
- t .Fatalf ("Unexpected flow changes: %v" , err )
321
+ t .Fatalf ("Unexpected flow changes: %v\n Orig: %#v \n New: %#v " , err , origFlows , flows )
296
322
}
297
323
origFlows = flows
298
324
@@ -321,7 +347,7 @@ func TestEgressIP(t *testing.T) {
321
347
},
322
348
)
323
349
if err != nil {
324
- t .Fatalf ("Unexpected flow changes: %v" , err )
350
+ t .Fatalf ("Unexpected flow changes: %v\n Orig: %#v \n New: %#v " , err , origFlows , flows )
325
351
}
326
352
origFlows = flows
327
353
@@ -341,7 +367,7 @@ func TestEgressIP(t *testing.T) {
341
367
}
342
368
err = assertFlowChanges (origFlows , flows )
343
369
if err != nil {
344
- t .Fatalf ("Unexpected flow changes: %v" , err )
370
+ t .Fatalf ("Unexpected flow changes: %v\n Orig: %#v \n New: %#v " , err , origFlows , flows )
345
371
}
346
372
}
347
373
0 commit comments