-
Notifications
You must be signed in to change notification settings - Fork 2
/
config_maps_default_test.go
74 lines (66 loc) · 1.33 KB
/
config_maps_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 TestConfigMaps(t *testing.T) {
instance := testAll(
t,
(*Client).ConfigMaps,
"ConfigMap",
"config_maps",
"ConfigMaps",
)
assert.Equal(t, instance.ID, "cfg-dsse2")
}
func TestConfigMap(t *testing.T) {
instance := testInstance(
t,
(*Client).ConfigMap,
"ConfigMap",
path.Join("config_maps", "cfg-dsse2"),
"config_map",
"cfg-dsse2",
)
assert.Equal(t, instance.ID, "cfg-dsse2")
}
func TestCreateConfigMap(t *testing.T) {
newResource := ConfigMapOptions{}
instance := testModify(
t,
(*Client).CreateConfigMap,
newResource,
"config_map",
"POST",
path.Join("config_maps"),
"{}",
)
assert.Equal(t, instance.ID, "cfg-dsse2")
}
func TestUpdateConfigMap(t *testing.T) {
updatedResource := ConfigMapOptions{ID: "cfg-dsse2"}
instance := testModify(
t,
(*Client).UpdateConfigMap,
updatedResource,
"config_map",
"PUT",
path.Join("config_maps", updatedResource.ID),
"{}",
)
assert.Equal(t, instance.ID, updatedResource.ID)
}
func TestDestroyConfigMap(t *testing.T) {
deletedResource := testModify(
t,
(*Client).DestroyConfigMap,
"cfg-dsse2",
"config_map",
"DELETE",
path.Join("config_maps", "cfg-dsse2"),
"",
)
assert.Equal(t, deletedResource.ID, "cfg-dsse2")
}