-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode_test.go
90 lines (69 loc) · 1.99 KB
/
node_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
package instellar
import (
"fmt"
"testing"
"github.com/jarcoal/httpmock"
"github.com/stretchr/testify/assert"
)
const nodeJSON = `
{
"data": {
"attributes": {
"current_state": "%s",
"slug": "%s",
"cluster_id": 1,
"id": 8,
"public_ip": "127.0.0.1"
},
"id": "8",
"links": {
"self": "http://localhost:4000/provision/nodes/8"
},
"relationships": {},
"type": "nodes"
},
"included": [],
"links": {
"self": "http://localhost:4000/provision/nodes/8"
}
}
`
func TestGetNode(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "/provision/nodes/8",
httpmock.NewStringResponder(200, fmt.Sprintf(nodeJSON, "healthy", "pizza-node-ham")))
node, _ := client.GetNode("8")
assert.Equal(t, node.Data.Attributes.ID, 8)
assert.Equal(t, node.Data.Attributes.PublicIP, "127.0.0.1")
}
func TestCreateNode(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("PUT", "/provision/clusters/1/nodes/pizza-node-ham",
httpmock.NewStringResponder(200, fmt.Sprintf(nodeJSON, "created", "pizza-node-ham")))
var nodeParams = NodeParams{
PublicIP: "127.0.0.1",
}
node, _ := client.CreateNode("1", "pizza-node-ham", nodeParams)
assert.Equal(t, node.Data.Attributes.CurrentState, "created")
}
func TestUpdateNode(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("PUT", "/provision/clusters/1/nodes/pizza-node-ham",
httpmock.NewStringResponder(200, fmt.Sprintf(nodeJSON, "healthy", "pizza-node-ham")))
var nodeParams = NodeParams{
PublicIP: "127.0.0.1",
}
node, _ := client.CreateNode("1", "pizza-node-ham", nodeParams)
assert.Equal(t, node.Data.Attributes.CurrentState, "healthy")
}
func TestDeleteNode(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("DELETE", "/provision/nodes/8",
httpmock.NewStringResponder(200, fmt.Sprintf(nodeJSON, "deleted", "pizza-node-ham")))
node, _ := client.DeleteNode("8")
assert.Equal(t, node.Data.Attributes.CurrentState, "deleted")
}