Skip to content

Commit 1507125

Browse files
committed
unit tests
1 parent 2c98dd4 commit 1507125

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

netmaster/resources/stateresourcemanager_test.go

+4
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,10 @@ func (r *TestResource) Init(rsrcCfg interface{}) error {
6464
return nil
6565
}
6666

67+
func (r *TestResource) Reinit(rsrcCfg interface{}) error {
68+
return nil
69+
}
70+
6771
func (r *TestResource) Deinit() {
6872
}
6973

netmaster/resources/vlanresource.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ func (r *AutoVLANCfgResource) Allocate(reqVal interface{}) (interface{}, error)
232232
if (reqVal != nil) && (reqVal.(uint) != 0) {
233233
vlan = reqVal.(uint)
234234
if !oper.FreeVLANs.Test(vlan) {
235-
return nil, errors.New("requested vlan not available")
235+
return nil, fmt.Errorf("requested vlan not available - vlan:%d", vlan)
236236
}
237237
} else {
238238
ok := false

netmaster/resources/vxlanresource.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ func (r *AutoVXLANCfgResource) Allocate(reqVal interface{}) (interface{}, error)
245245
if (reqVal != nil) && (reqVal.(uint) != 0) {
246246
vxlan = reqVal.(uint)
247247
if !oper.FreeVXLANs.Test(vxlan) {
248-
return nil, fmt.Errorf("requested vxlan %d not available", vxlan)
248+
return nil, fmt.Errorf("requested vxlan not available")
249249
}
250250
} else {
251251
ok := false

0 commit comments

Comments
 (0)