forked from stmcginnis/gofish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredundancy_test.go
90 lines (72 loc) · 1.94 KB
/
redundancy_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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
//
// SPDX-License-Identifier: BSD-3-Clause
//
package redfish
import (
"encoding/json"
"strings"
"testing"
"github.com/stmcginnis/gofish/common"
)
var redundancyBody = `{
"@odata.id": "/redfish/v1/Redundancy",
"Id": "Redundancy-1",
"Name": "RedundancyOne",
"MaxNumSupported": 2,
"MemberId": "Redundancy1",
"MinNumNeeded": 2,
"Mode": "Sparing",
"RedundancyEnabled": true,
"RedundancySet": [
"One",
"Two"
],
"[email protected]": 2,
"Status": {
"State": "Enabled",
"Health": "OK"
}
}`
// TestRedundancy tests the parsing of Redundancy objects.
func TestRedundancy(t *testing.T) {
var result Redundancy
err := json.NewDecoder(strings.NewReader(redundancyBody)).Decode(&result)
if err != nil {
t.Errorf("Error decoding JSON: %s", err)
}
if result.ID != "Redundancy-1" {
t.Errorf("Received invalid ID: %s", result.ID)
}
if result.Name != "RedundancyOne" {
t.Errorf("Received invalid name: %s", result.Name)
}
if result.MaxNumSupported != 2 {
t.Errorf("Invalid MaxNumSupported: %d", result.MaxNumSupported)
}
if result.Mode != SparingRedundancyMode {
t.Errorf("Invalid mode: %s", result.Mode)
}
}
// TestRedundancyUpdate tests the Update call.
func TestRedundancyUpdate(t *testing.T) {
var result Redundancy
err := json.NewDecoder(strings.NewReader(redundancyBody)).Decode(&result)
if err != nil {
t.Errorf("Error decoding JSON: %s", err)
}
testClient := &common.TestClient{}
result.SetClient(testClient)
result.Mode = NotRedundantRedundancyMode
result.RedundancyEnabled = true
err = result.Update()
if err != nil {
t.Errorf("Error making Update call: %s", err)
}
calls := testClient.CapturedCalls()
if !strings.Contains(calls[0].Payload, "Mode:NotRedundant") {
t.Errorf("Unexpected Mode update payload: %s", calls[0].Payload)
}
if strings.Contains(calls[0].Payload, "RedundancyEnabled") {
t.Errorf("Unexpected update for RedundancyEnabled in payload: %s", calls[0].Payload)
}
}