-
Notifications
You must be signed in to change notification settings - Fork 0
/
uplink_test.go
95 lines (74 loc) · 2.18 KB
/
uplink_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
package instellar
import (
"fmt"
"testing"
"github.com/jarcoal/httpmock"
"github.com/stretchr/testify/assert"
)
const uplinkJSON = `
{
"data": {
"attributes": {
"current_state": "%s",
"id": 8,
"channel_slug": "develop",
"kit_slug": "%s",
"installation_id": %d,
"cluster_id": %d,
"nodes": ["node-01"]
},
"id": "8",
"links": {
"self": "http://localhost:4000/provision/uplinks/8"
},
"relationships": {},
"type": "uplinks"
},
"included": [],
"links": {
"self": "http://localhost:4000/provision/uplinks/8"
}
}
`
func TestGetUplink(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "/provision/uplinks/8",
httpmock.NewStringResponder(200, fmt.Sprintf(uplinkJSON, "active", "pro", 1, 2)))
uplink, _ := client.GetUplink("8")
assert.Equal(t, uplink.Data.Attributes.ID, 8)
assert.Equal(t, uplink.Data.Attributes.Nodes, []string{"node-01"})
}
func TestCreateUplink(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("POST", "/provision/clusters/some-cluster/uplinks",
httpmock.NewStringResponder(200, fmt.Sprintf(uplinkJSON, "created", "pro", 1, 2)))
var uplinkSetupParams = UplinkSetupParams{
ChannelSlug: "develop",
KitSlug: "pro",
}
uplink, _ := client.CreateUplink("some-cluster", uplinkSetupParams)
assert.Equal(t, uplink.Data.Attributes.CurrentState, "created")
}
func TestUpdateUplink(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("PATCH", "/provision/uplinks/8",
httpmock.NewStringResponder(200, fmt.Sprintf(uplinkJSON, "active", "lite", 1, 2)))
uplinkSetupParams := UplinkSetupParams{
ChannelSlug: "develop",
KitSlug: "lite",
}
uplink, _ := client.UpdateUplink("8", uplinkSetupParams)
assert.Equal(t, uplink.Data.Attributes.CurrentState, "active")
assert.Equal(t, uplink.Data.Attributes.KitSlug, "lite")
}
func TestDeleteUplink(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("DELETE", "/provision/uplinks/8",
httpmock.NewStringResponder(200, fmt.Sprintf(uplinkJSON, "deleted", "pro", 1, 2)))
uplink, _ := client.DeleteUplink("8")
assert.Equal(t, uplink.Data.Attributes.CurrentState, "deleted")
}