-
Notifications
You must be signed in to change notification settings - Fork 0
/
address_test.go
149 lines (110 loc) · 3.39 KB
/
address_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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
package eygo
import (
"encoding/json"
//"fmt"
"testing"
)
func TestNewAddressService(t *testing.T) {
driver := NewMockDriver()
service := NewAddressService(driver)
t.Run("it is configured with the given driver", func(t *testing.T) {
if service.Driver != driver {
t.Errorf("Expected the service to use the given driver")
}
})
}
func TestAddressService_All(t *testing.T) {
driver := NewMockDriver()
service := NewAddressService(driver)
t.Run("when there are matching addresss", func(t *testing.T) {
address1 := &Address{ID: 1, IPAddress: "127.0.0.1"}
address2 := &Address{ID: 2, IPAddress: "127.0.0.2"}
address3 := &Address{ID: 3, IPAddress: "127.0.0.3"}
stubAddresss(driver, address1, address2, address3)
all := service.All(nil)
t.Run("it contains all matching addresss", func(t *testing.T) {
addresss := []*Address{address1, address2, address3}
if len(all) != len(addresss) {
t.Errorf("Expected %d addresss, got %d", len(addresss), len(all))
}
for _, address := range addresss {
found := false
for _, other := range all {
if address.ID == other.ID {
found = true
}
}
if !found {
t.Errorf("Address %d was not present", address.ID)
}
}
})
})
t.Run("when there are no matching addresss", func(t *testing.T) {
driver.Reset()
t.Run("it is empty", func(t *testing.T) {
all := service.All(nil)
if len(all) != 0 {
t.Errorf("Expected 0 addresss, got")
}
})
})
}
func TestAddressService_ForAccount(t *testing.T) {
account := &Account{ID: "1", Name: "Account 1"}
driver := NewMockDriver()
service := NewAddressService(driver)
t.Run("when there are matching addresss", func(t *testing.T) {
address1 := &Address{ID: 1, IPAddress: "127.0.0.1"}
address2 := &Address{ID: 2, IPAddress: "127.0.0.2"}
address3 := &Address{ID: 3, IPAddress: "127.0.0.3"}
stubAccountAddresss(driver, account, address1, address2, address3)
all := service.ForAccount(account, nil)
t.Run("it contains all matching addresss", func(t *testing.T) {
addresss := []*Address{address1, address2, address3}
if len(all) != len(addresss) {
t.Errorf("Expected %d addresss, got %d", len(addresss), len(all))
}
for _, address := range addresss {
found := false
for _, other := range all {
if address.ID == other.ID {
found = true
}
}
if !found {
t.Errorf("Address %d was not present", address.ID)
}
}
})
})
t.Run("when there are no matching addresss", func(t *testing.T) {
driver.Reset()
t.Run("it is empty", func(t *testing.T) {
all := service.ForAccount(account, nil)
if len(all) != 0 {
t.Errorf("Expected 0 addresss, got")
}
})
})
}
func stubAddresss(driver *MockDriver, addresss ...*Address) {
pages := make([][]byte, 0)
wrapper := struct {
Addresss []*Address `json:"addresses,omitempty"`
}{Addresss: addresss}
if encoded, err := json.Marshal(&wrapper); err == nil {
pages = append(pages, encoded)
driver.AddResponse("get", "addresses", Response{Pages: pages})
}
}
func stubAccountAddresss(driver *MockDriver, account *Account, addresss ...*Address) {
pages := make([][]byte, 0)
wrapper := struct {
Addresss []*Address `json:"addresses,omitempty"`
}{Addresss: addresss}
if encoded, err := json.Marshal(&wrapper); err == nil {
pages = append(pages, encoded)
driver.AddResponse("get", "accounts/"+account.ID+"/addresses", Response{Pages: pages})
}
}