forked from stmcginnis/gofish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvlannetworkinterface_test.go
76 lines (59 loc) · 1.83 KB
/
vlannetworkinterface_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
//
// SPDX-License-Identifier: BSD-3-Clause
//
package redfish
import (
"encoding/json"
"strings"
"testing"
"github.com/stmcginnis/gofish/common"
)
var vlanNetworkInterfaceBody = `{
"@odata.context": "/redfish/v1/$metadata#VlanNetworkInterface.VlanNetworkInterface",
"@odata.type": "#VLanNetworkInterface.v1_1_3.VLanNetworkInterface",
"@odata.id": "/redfish/v1/VlanNetworkInterface",
"Id": "VlanNetworkInterface-1",
"Name": "VlanNetworkInterfaceOne",
"Description": "VlanNetworkInterface One",
"VLANEnable": true,
"VLANId": 200
}`
// TestVlanNetworkInterface tests the parsing of VlanNetworkInterface objects.
func TestVlanNetworkInterface(t *testing.T) {
var result VLanNetworkInterface
err := json.NewDecoder(strings.NewReader(vlanNetworkInterfaceBody)).Decode(&result)
if err != nil {
t.Errorf("Error decoding JSON: %s", err)
}
if result.ID != "VlanNetworkInterface-1" {
t.Errorf("Received invalid ID: %s", result.ID)
}
if result.Name != "VlanNetworkInterfaceOne" {
t.Errorf("Received invalid name: %s", result.Name)
}
if !result.VLANEnable {
t.Error("VLAN should be enabled")
}
if result.VLANID != 200 {
t.Errorf("Invalid VLAN ID: %d", result.VLANID)
}
}
// TestVlanNetworkInterfaceUpdate tests the Update call.
func TestVlanNetworkInterfaceUpdate(t *testing.T) {
var result VLanNetworkInterface
err := json.NewDecoder(strings.NewReader(vlanNetworkInterfaceBody)).Decode(&result)
if err != nil {
t.Errorf("Error decoding JSON: %s", err)
}
testClient := &common.TestClient{}
result.SetClient(testClient)
result.VLANEnable = false
err = result.Update()
if err != nil {
t.Errorf("Error making Update call: %s", err)
}
calls := testClient.CapturedCalls()
if !strings.Contains(calls[0].Payload, "VLANEnable:false") {
t.Errorf("Unexpected VLANEnable update payload: %s", calls[0].Payload)
}
}