forked from equinixmetal-archive/packngo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
volumes_test.go
265 lines (213 loc) · 5.51 KB
/
volumes_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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
package packngo
import (
"fmt"
"testing"
"time"
)
const (
minVolumeSize = 100
)
func waitVolumeActive(id string, c *Client) (*Volume, error) {
// 15 minutes = 180 * 5sec-retry
for i := 0; i < 180; i++ {
c, _, err := c.Volumes.Get(id, nil)
if err != nil {
return nil, err
}
if c.State == "active" {
return c, nil
}
<-time.After(5 * time.Second)
}
return nil, fmt.Errorf("volume %s is still not active after timeout", id)
}
func TestAccVolumeBasic(t *testing.T) {
skipUnlessAcceptanceTestsAllowed(t)
c, projectID, teardown := setupWithProject(t)
defer teardown()
sp := SnapshotPolicy{
SnapshotFrequency: "1day",
SnapshotCount: 3,
}
vcr := VolumeCreateRequest{
Size: minVolumeSize,
BillingCycle: "hourly",
PlanID: "storage_1",
FacilityID: testFacility(),
SnapshotPolicies: []*SnapshotPolicy{&sp},
Description: "ahoj!",
Locked: true,
}
v, _, err := c.Volumes.Create(&vcr, projectID)
if err != nil {
t.Fatal(err)
}
v, err = waitVolumeActive(v.ID, c)
if err != nil {
t.Fatal(err)
}
defer deleteVolume(t, c, v.ID)
v, _, err = c.Volumes.Get(v.ID,
&GetOptions{Includes: []string{"snapshot_policies", "facility"}})
if err != nil {
t.Fatal(err)
}
if len(v.SnapshotPolicies) != 1 {
t.Fatal("Test volume should have one snapshot policy")
}
if v.SnapshotPolicies[0].SnapshotFrequency != sp.SnapshotFrequency {
t.Fatal("Test volume has wrong snapshot frequency")
}
if v.SnapshotPolicies[0].SnapshotCount != sp.SnapshotCount {
t.Fatal("Test volume has wrong snapshot count")
}
if v.Facility.Code != testFacility() {
t.Fatal("Test volume has wrong facility")
}
_, err = c.Volumes.Unlock(v.ID)
if err != nil {
t.Fatal(err)
}
}
func TestAccVolumeUpdate(t *testing.T) {
skipUnlessAcceptanceTestsAllowed(t)
c, projectID, teardown := setupWithProject(t)
defer teardown()
sp := SnapshotPolicy{
SnapshotFrequency: "1day",
SnapshotCount: 3,
}
vcr := VolumeCreateRequest{
Size: minVolumeSize,
BillingCycle: "hourly",
PlanID: "storage_1",
FacilityID: testFacility(),
SnapshotPolicies: []*SnapshotPolicy{&sp},
}
v, _, err := c.Volumes.Create(&vcr, projectID)
if err != nil {
t.Fatal(err)
}
v, err = waitVolumeActive(v.ID, c)
if err != nil {
t.Fatal(err)
}
defer deleteVolume(t, c, v.ID)
vDesc := "new Desc"
vur := VolumeUpdateRequest{Description: &vDesc}
_, _, err = c.Volumes.Update(v.ID, &vur)
if err != nil {
t.Fatal(err)
}
v, _, err = c.Volumes.Get(v.ID, nil)
if err != nil {
t.Fatal(err)
}
if v.Description != vDesc {
t.Fatalf("Volume desc should be %q, but is %q", vDesc, v.Description)
}
newSize := 15
vur = VolumeUpdateRequest{Size: &newSize}
_, _, err = c.Volumes.Update(v.ID, &vur)
if err != nil {
t.Fatal(err)
}
v, _, err = c.Volumes.Get(v.ID, nil)
if err != nil {
t.Fatal(err)
}
if v.Size != newSize {
t.Fatalf("Volume size should be %q, but is %q", newSize, v.Size)
}
newPlan := "storage_2"
vur = VolumeUpdateRequest{PlanID: &newPlan}
_, _, err = c.Volumes.Update(v.ID, &vur)
if err != nil {
t.Fatal(err)
}
v, _, err = c.Volumes.Get(v.ID, nil)
if err != nil {
t.Fatal(err)
}
if v.Plan.Slug != newPlan {
t.Fatalf("Plan should be %q, but is %q", newPlan, v.Plan.Slug)
}
}
func TestAccVolumeLargeList(t *testing.T) {
skipUnlessAcceptanceTestsAllowed(t)
t.Parallel()
c, projectID, teardown := setupWithProject(t)
defer teardown()
sp := SnapshotPolicy{
SnapshotFrequency: "1day",
SnapshotCount: 3,
}
vcr := VolumeCreateRequest{
Size: minVolumeSize,
BillingCycle: "hourly",
PlanID: "storage_1",
FacilityID: testFacility(),
SnapshotPolicies: []*SnapshotPolicy{&sp},
}
numOfVolumes := 11
createdVolumes := make([]Volume, numOfVolumes)
for i := 0; i < numOfVolumes; i++ {
vcr.Description = randString8()
v, _, err := c.Volumes.Create(&vcr, projectID)
if err != nil {
t.Fatal(err)
}
defer deleteVolume(t, c, v.ID)
createdVolumes[i] = *v
}
for _, volume := range createdVolumes {
if _, err := waitVolumeActive(volume.ID, c); err != nil {
t.Fatal(err)
}
}
volumes, _, err := c.Volumes.List(projectID, nil)
if err != nil {
t.Fatalf("failed to get list of volumes: %v", err)
}
if len(volumes) < numOfVolumes {
t.Fatalf("failed due to expecting at least %d volumes, but actually got %d", numOfVolumes, len(volumes))
}
volumeMap := map[string]Volume{}
for _, volume := range volumes {
volumeMap[volume.ID] = volume
}
for _, k := range createdVolumes {
if _, ok := volumeMap[k.ID]; !ok {
t.Fatalf("failed to find expected volume in list: %s", k.ID)
}
}
perPage := 4
listOpt := &ListOptions{
Page: 2,
PerPage: perPage,
}
volumes, _, err = c.Volumes.List(projectID, listOpt)
if err != nil {
t.Fatalf("failed to get list of volumes: %v", err)
}
if len(volumes) != perPage {
t.Fatalf("failed due to expecting %d volumes, but actually got %d", perPage, len(volumes))
}
// Last test get all volume, 5 per page and includes
listOpt2 := &ListOptions{
Includes: []string{"snapshot_policies", "facility"},
PerPage: 5,
}
volumes, _, err = c.Volumes.List(projectID, listOpt2)
if err != nil {
t.Fatalf("failed to get list of volumes: %v", err)
}
if len(volumes) != numOfVolumes {
t.Fatalf("failed due to expecting at %d volumes, but actually got %d", numOfVolumes, len(volumes))
}
for _, v := range volumes {
if v.SnapshotPolicies[0].SnapshotCount != 3 {
t.Fatalf("Wrong SpanshotCount, perhaps it's not included?")
}
}
}