-
Notifications
You must be signed in to change notification settings - Fork 180
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
global fwd and subnet error msgs fix & test cases #1051
Conversation
Fixed the error message to indicate correctly the state of vlans and vxlans instead of printing an empty string instead of a number when 0. The test cases are testing too many things in one test case, split out the tests for forward mode and subnet as they are doing more validation. Signed-off-by: Chris Plock <[email protected]>
build PR |
build PR |
1 similar comment
build PR |
netmaster/objApi/objapi_test.go
Outdated
@@ -297,7 +297,7 @@ func checkInspectGlobal(t *testing.T, expError bool, allocedVlans, allocedVxlans | |||
} | |||
|
|||
// checkGlobalSet sets global state and verifies state | |||
func checkGlobalSet(t *testing.T, expError bool, fabMode, vlans, vxlans, fwdMode, arpMode, pvtSubnet string) { | |||
func checkGlobalSet(t *testing.T, expError bool, fabMode, vlans, vxlans, fwdMode, arpMode, pvtSubnet string) *error { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return error
instead of *error
here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
netmaster/objApi/objapi_test.go
Outdated
@@ -1318,7 +1320,79 @@ func TestDynamicGlobalVxlanRange(t *testing.T) { | |||
} | |||
|
|||
// TestGlobalSetting tests global REST api | |||
func TestGlobalSettingFwdMode(t *testing.T) { | |||
// set to default values (no-op) | |||
checkGlobalSet(t, false, "default", "1-4094", "1-10000", "bridge", "proxy", "172.19.0.0/16") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this returns an error, we should probably be asserting that it's nil or some expected value...
If there's a legit reason for skipping error checks on a call, maybe add a comment above the call
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah, i was just copy pasting that part, but I can make a helper checkGlobalSetNotNil(..) to avoid if block every call
build PR |
Changes LGTM but let's get a @contiv/reviewers-core-networking review as well because I can't validate the network stuff is correct |
#1043 needs to be merged first. |
build PR |
Fixed the error message to indicate correctly the state of vlans and
vxlans instead of printing an empty string instead of a number when 0.
The test cases are testing too many things in one test case, split out
the tests for forward mode and subnet as they are doing more validation.
Signed-off-by: Chris Plock [email protected]