@@ -24,7 +24,7 @@ import (
24
24
"testing"
25
25
"time"
26
26
27
- "github.com/contiv/contivmodel"
27
+ contivModel "github.com/contiv/contivmodel"
28
28
"github.com/contiv/contivmodel/client"
29
29
"github.com/contiv/netplugin/core"
30
30
"github.com/contiv/netplugin/netmaster/gstate"
@@ -297,7 +297,10 @@ func checkInspectGlobal(t *testing.T, expError bool, allocedVlans, allocedVxlans
297
297
}
298
298
299
299
// checkGlobalSet sets global state and verifies state
300
- func checkGlobalSet (t * testing.T , expError bool , fabMode , vlans , vxlans , fwdMode , arpMode , pvtSubnet string ) {
300
+ // the return error can be used for validating the error produced
301
+ // by contivClient.GlobalPost, a non-nil return is not an error, 'expError'
302
+ // parameter determines if an err for GlobalPost is a failure for the test
303
+ func checkGlobalSet (t * testing.T , expError bool , fabMode , vlans , vxlans , fwdMode , arpMode , pvtSubnet string ) error {
301
304
gl := client.Global {
302
305
Name : "global" ,
303
306
NetworkInfraType : fabMode ,
@@ -358,7 +361,9 @@ func checkGlobalSet(t *testing.T, expError bool, fabMode, vlans, vxlans, fwdMode
358
361
if err := vlanRsrc .Read ("global" ); err != nil {
359
362
t .Fatalf ("Error reading vlan resource. Err: %v" , err )
360
363
}
364
+ return nil
361
365
}
366
+ return err
362
367
}
363
368
364
369
// checkAciGwSet sets AciGw state and verifies verifies it
@@ -1325,8 +1330,80 @@ func TestDynamicGlobalVxlanRange(t *testing.T) {
1325
1330
1326
1331
}
1327
1332
1333
+ // TestGlobalSetting tests global REST api
1334
+ func TestGlobalSettingFwdMode (t * testing.T ) {
1335
+ // set to default values (no-op)
1336
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1337
+
1338
+ // Create a vxlan network to verify you cannot change forward mode
1339
+ checkCreateNetwork (t , false , "default" , "contiv7" , "" , "vxlan" , "16.1.1.1/24" , "16.1.1.254" , 3200 , "" , "" , "" )
1340
+
1341
+ // Should fail when changing the forwarding mode whenever there is a network
1342
+ var err error
1343
+ var expErr string
1344
+ err = checkGlobalSet (t , true , "default" , "1-4094" , "1-10000" , "routing" , "proxy" , "172.19.0.0/16" )
1345
+ expErr = "Unable to update forwarding mode due to existing 1 vxlans"
1346
+ if strings .TrimSpace (err .Error ()) != expErr {
1347
+ t .Fatalf ("Wrong error message, expected: '%v', got '%v'" , expErr , err .Error ())
1348
+ }
1349
+ // remove the vxlan network and add a vlan network
1350
+ checkDeleteNetwork (t , false , "default" , "contiv7" )
1351
+ checkCreateNetwork (t , false , "default" , "contiv7" , "" , "vlan" , "16.1.1.1/24" , "16.1.1.254" , 3200 , "" , "" , "" )
1352
+ err = checkGlobalSet (t , true , "default" , "1-4094" , "1-10000" , "routing" , "proxy" , "172.19.0.0/16" )
1353
+ expErr = "Unable to update forwarding mode due to existing 1 vlans"
1354
+ if strings .TrimSpace (err .Error ()) != expErr {
1355
+ t .Fatalf ("Wrong error message, expected: '%v', got '%v'" , expErr , err .Error ())
1356
+ }
1357
+
1358
+ // remove the vlan network
1359
+ checkDeleteNetwork (t , false , "default" , "contiv7" )
1360
+
1361
+ // make sure can change forwarding mode after network deleted
1362
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "routing" , "proxy" , "172.21.0.0/16" )
1363
+
1364
+ // reset back to default values
1365
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1366
+ }
1367
+
1368
+ func TestGlobalSettingSubnet (t * testing.T ) {
1369
+ // set to default values (no-op)
1370
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1371
+ // Create a network to see if global subnet changes are blocked
1372
+ checkCreateNetwork (t , false , "default" , "contiv7" , "" , "vxlan" , "16.1.1.1/24" , "16.1.1.254" , 3200 , "" , "" , "" )
1373
+
1374
+ var err error
1375
+ var expErr string
1376
+ // This should fail
1377
+ err = checkGlobalSet (t , true , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.21.0.0/16" )
1378
+ expErr = "Unable to update private subnet due to existing 1 vxlans"
1379
+ if strings .TrimSpace (err .Error ()) != expErr {
1380
+ t .Fatalf ("Wrong error message, expected: '%v', got '%v'" , expErr , err .Error ())
1381
+ }
1382
+
1383
+ // remove the vxlan network and add a vlan network
1384
+ checkDeleteNetwork (t , false , "default" , "contiv7" )
1385
+ checkCreateNetwork (t , false , "default" , "contiv7" , "" , "vlan" , "16.1.1.1/24" , "16.1.1.254" , 3200 , "" , "" , "" )
1386
+
1387
+ // This should still fail
1388
+ err = checkGlobalSet (t , true , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.21.0.0/16" )
1389
+ expErr = "Unable to update private subnet due to existing 1 vlans"
1390
+ if strings .TrimSpace (err .Error ()) != expErr {
1391
+ t .Fatalf ("Wrong error message, expected: '%v', got '%v'" , expErr , err .Error ())
1392
+ }
1393
+
1394
+ // remove the network
1395
+ checkDeleteNetwork (t , false , "default" , "contiv7" )
1396
+ // make sure can change subnet after network deleted
1397
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.21.0.0/16" )
1398
+ // reset back to default values
1399
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1400
+ }
1401
+
1328
1402
// TestGlobalSetting tests global REST api
1329
1403
func TestGlobalSetting (t * testing.T ) {
1404
+ // set to default values (no-op)
1405
+ checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1406
+
1330
1407
// try basic modification
1331
1408
checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.20.0.0/16" )
1332
1409
// set aci mode
@@ -1350,11 +1427,6 @@ func TestGlobalSetting(t *testing.T) {
1350
1427
checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.21.0.0/16" )
1351
1428
// Try invalid pvt subnet
1352
1429
checkGlobalSet (t , true , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.21.0.0/24" )
1353
- // Try changing subnet with active network
1354
- checkCreateNetwork (t , false , "default" , "contiv7" , "" , "vxlan" , "16.1.1.1/24" , "16.1.1.254" , 3200 , "" , "" , "" )
1355
- checkGlobalSet (t , true , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1356
- checkDeleteNetwork (t , false , "default" , "contiv7" )
1357
- checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
1358
1430
1359
1431
// reset back to default values
1360
1432
checkGlobalSet (t , false , "default" , "1-4094" , "1-10000" , "bridge" , "proxy" , "172.19.0.0/16" )
0 commit comments