-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcloud_ips_default_test.go
74 lines (66 loc) · 1.28 KB
/
cloud_ips_default_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
// Code generated by go generate; DO NOT EDIT.
package brightbox
import (
"path"
"testing"
"gotest.tools/v3/assert"
)
func TestCloudIPs(t *testing.T) {
instance := testAll(
t,
(*Client).CloudIPs,
"CloudIP",
"cloud_ips",
"CloudIPs",
)
assert.Equal(t, instance.ID, "cip-k4a25")
}
func TestCloudIP(t *testing.T) {
instance := testInstance(
t,
(*Client).CloudIP,
"CloudIP",
path.Join("cloud_ips", "cip-k4a25"),
"cloud_ip",
"cip-k4a25",
)
assert.Equal(t, instance.ID, "cip-k4a25")
}
func TestCreateCloudIP(t *testing.T) {
newResource := CloudIPOptions{}
instance := testModify(
t,
(*Client).CreateCloudIP,
newResource,
"cloud_ip",
"POST",
path.Join("cloud_ips"),
"{}",
)
assert.Equal(t, instance.ID, "cip-k4a25")
}
func TestUpdateCloudIP(t *testing.T) {
updatedResource := CloudIPOptions{ID: "cip-k4a25"}
instance := testModify(
t,
(*Client).UpdateCloudIP,
updatedResource,
"cloud_ip",
"PUT",
path.Join("cloud_ips", updatedResource.ID),
"{}",
)
assert.Equal(t, instance.ID, updatedResource.ID)
}
func TestDestroyCloudIP(t *testing.T) {
deletedResource := testModify(
t,
(*Client).DestroyCloudIP,
"cip-k4a25",
"cloud_ip",
"DELETE",
path.Join("cloud_ips", "cip-k4a25"),
"",
)
assert.Equal(t, deletedResource.ID, "cip-k4a25")
}