forked from equinixmetal-archive/packngo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
volumes_test.go
66 lines (54 loc) · 1.38 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
package packngo
import (
"fmt"
"testing"
"time"
)
func waitVolumeActive(id string, c *Client) (*Volume, error) {
// 15 minutes = 180 * 5sec-retry
for i := 0; i < 180; i++ {
<-time.After(5 * time.Second)
c, _, err := c.Volumes.Get(id)
if err != nil {
return nil, err
}
if c.State == "active" {
return c, nil
}
}
return nil, fmt.Errorf("volume %s is still not active after timeout", id)
}
func TestAccVolume(t *testing.T) {
skipUnlessAcceptanceTestsAllowed(t)
c, projectID, teardown := setupWithProject(t)
defer teardown()
sp := SnapshotPolicy{
SnapshotFrequency: "1day",
SnapshotCount: 3,
}
vcr := VolumeCreateRequest{
Size: 10,
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)
defer c.Volumes.Delete(v.ID)
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")
}
}