blob: 0667b00e006aec46be2718dc0e0333e2d70d5b47 [file] [log] [blame]
Jamie Hannaford924c09d2014-11-19 12:05:38 +01001package secgroups
2
3import (
4 "fmt"
5 "net/http"
6 "testing"
7
Jon Perritt27249f42016-02-18 10:35:59 -06008 th "github.com/gophercloud/gophercloud/testhelper"
9 fake "github.com/gophercloud/gophercloud/testhelper/client"
Jamie Hannaford924c09d2014-11-19 12:05:38 +010010)
11
Jamie Hannaforda493e642014-11-19 12:40:30 +010012const rootPath = "/os-security-groups"
13
Jamie Hannaford19151792014-11-19 12:46:47 +010014const listGroupsJSON = `
15{
Jamie Hannaford334c8752014-11-20 12:05:09 +010016 "security_groups": [
17 {
18 "description": "default",
Jamie Hannaford2f226172014-11-25 11:52:25 +010019 "id": "{groupID}",
Jamie Hannaford334c8752014-11-20 12:05:09 +010020 "name": "default",
21 "rules": [],
22 "tenant_id": "openstack"
23 }
24 ]
Jamie Hannaford19151792014-11-19 12:46:47 +010025}
26`
27
Jamie Hannaford924c09d2014-11-19 12:05:38 +010028func mockListGroupsResponse(t *testing.T) {
Jamie Hannaforda493e642014-11-19 12:40:30 +010029 th.Mux.HandleFunc(rootPath, func(w http.ResponseWriter, r *http.Request) {
Jamie Hannaford924c09d2014-11-19 12:05:38 +010030 th.TestMethod(t, r, "GET")
31 th.TestHeader(t, r, "X-Auth-Token", fake.TokenID)
32
33 w.Header().Add("Content-Type", "application/json")
34 w.WriteHeader(http.StatusOK)
35
Jamie Hannaford19151792014-11-19 12:46:47 +010036 fmt.Fprintf(w, listGroupsJSON)
37 })
Jamie Hannaford924c09d2014-11-19 12:05:38 +010038}
Jamie Hannaford19151792014-11-19 12:46:47 +010039
40func mockListGroupsByServerResponse(t *testing.T, serverID string) {
Jon Perritt13dd1422015-02-10 17:35:54 -070041 url := fmt.Sprintf("/servers/%s%s", serverID, rootPath)
Jamie Hannaford19151792014-11-19 12:46:47 +010042 th.Mux.HandleFunc(url, func(w http.ResponseWriter, r *http.Request) {
43 th.TestMethod(t, r, "GET")
44 th.TestHeader(t, r, "X-Auth-Token", fake.TokenID)
45
46 w.Header().Add("Content-Type", "application/json")
47 w.WriteHeader(http.StatusOK)
48
49 fmt.Fprintf(w, listGroupsJSON)
Jamie Hannaford924c09d2014-11-19 12:05:38 +010050 })
51}
Jamie Hannaforda493e642014-11-19 12:40:30 +010052
53func mockCreateGroupResponse(t *testing.T) {
54 th.Mux.HandleFunc(rootPath, func(w http.ResponseWriter, r *http.Request) {
55 th.TestMethod(t, r, "POST")
56 th.TestHeader(t, r, "X-Auth-Token", fake.TokenID)
57
58 th.TestJSONRequest(t, r, `
59{
60 "security_group": {
61 "name": "test",
62 "description": "something"
63 }
64}
65 `)
66
67 w.Header().Add("Content-Type", "application/json")
68 w.WriteHeader(http.StatusOK)
69
70 fmt.Fprintf(w, `
71{
72 "security_group": {
73 "description": "something",
Jamie Hannaford2f226172014-11-25 11:52:25 +010074 "id": "{groupID}",
Jamie Hannaforda493e642014-11-19 12:40:30 +010075 "name": "test",
76 "rules": [],
77 "tenant_id": "openstack"
78 }
79}
80`)
81 })
82}
Jamie Hannafordb38dd312014-11-19 13:02:11 +010083
Jamie Hannaford2f226172014-11-25 11:52:25 +010084func mockUpdateGroupResponse(t *testing.T, groupID string) {
85 url := fmt.Sprintf("%s/%s", rootPath, groupID)
Jamie Hannaford30c74662014-11-19 15:37:34 +010086 th.Mux.HandleFunc(url, func(w http.ResponseWriter, r *http.Request) {
Jamie Hannaford740e4a32014-11-19 16:13:30 +010087 th.TestMethod(t, r, "PUT")
Jamie Hannaford30c74662014-11-19 15:37:34 +010088 th.TestHeader(t, r, "X-Auth-Token", fake.TokenID)
89
90 th.TestJSONRequest(t, r, `
91{
Jamie Hannaford334c8752014-11-20 12:05:09 +010092 "security_group": {
Jamie Hannaford0e750962014-11-24 16:04:38 +010093 "name": "new_name",
94 "description": "new_desc"
Jamie Hannaford334c8752014-11-20 12:05:09 +010095 }
Jamie Hannaford30c74662014-11-19 15:37:34 +010096}
97 `)
98
99 w.Header().Add("Content-Type", "application/json")
100 w.WriteHeader(http.StatusOK)
101
102 fmt.Fprintf(w, `
103{
Jamie Hannaford334c8752014-11-20 12:05:09 +0100104 "security_group": {
105 "description": "something",
Jamie Hannaford2f226172014-11-25 11:52:25 +0100106 "id": "{groupID}",
Jamie Hannaford334c8752014-11-20 12:05:09 +0100107 "name": "new_name",
108 "rules": [],
109 "tenant_id": "openstack"
110 }
Jamie Hannaford30c74662014-11-19 15:37:34 +0100111}
112`)
113 })
114}
115
Jamie Hannaford2f226172014-11-25 11:52:25 +0100116func mockGetGroupsResponse(t *testing.T, groupID string) {
117 url := fmt.Sprintf("%s/%s", rootPath, groupID)
Jamie Hannafordb38dd312014-11-19 13:02:11 +0100118 th.Mux.HandleFunc(url, func(w http.ResponseWriter, r *http.Request) {
119 th.TestMethod(t, r, "GET")
120 th.TestHeader(t, r, "X-Auth-Token", fake.TokenID)
121
122 w.Header().Add("Content-Type", "application/json")
123 w.WriteHeader(http.StatusOK)
124
125 fmt.Fprintf(w, `
126{
127 "security_group": {
128 "description": "default",
Jamie Hannaford2f226172014-11-25 11:52:25 +0100129 "id": "{groupID}",
Jamie Hannafordb38dd312014-11-19 13:02:11 +0100130 "name": "default",
131 "rules": [
132 {
133 "from_port": 80,
134 "group": {
135 "tenant_id": "openstack",
136 "name": "default"
137 },
138 "ip_protocol": "TCP",
139 "to_port": 85,
Jamie Hannaford2f226172014-11-25 11:52:25 +0100140 "parent_group_id": "{groupID}",
Jamie Hannafordb38dd312014-11-19 13:02:11 +0100141 "ip_range": {
142 "cidr": "0.0.0.0"
143 },
Jamie Hannaford2f226172014-11-25 11:52:25 +0100144 "id": "{ruleID}"
Jamie Hannafordb38dd312014-11-19 13:02:11 +0100145 }
146 ],
147 "tenant_id": "openstack"
148 }
149}
150 `)
151 })
152}
Jamie Hannafordd276e612014-11-19 13:56:28 +0100153
Jamie Hannafordcb0c19a2014-11-25 11:57:35 +0100154func mockGetNumericIDGroupResponse(t *testing.T, groupID int) {
155 url := fmt.Sprintf("%s/%d", rootPath, groupID)
156 th.Mux.HandleFunc(url, func(w http.ResponseWriter, r *http.Request) {
157 th.TestMethod(t, r, "GET")
158 th.TestHeader(t, r, "X-Auth-Token", fake.TokenID)
159
160 w.Header().Add("Content-Type", "application/json")
161 w.WriteHeader(http.StatusOK)
162
163 fmt.Fprintf(w, `
164{
165 "security_group": {
166 "id": 12345
167 }
168}
169 `)
170 })
171}
172
Jamie Hannaford2f226172014-11-25 11:52:25 +0100173func mockDeleteGroupResponse(t *testing.T, groupID string) {
174 url := fmt.Sprintf("%s/%s", rootPath, groupID)
Jamie Hannafordd276e612014-11-19 13:56:28 +0100175 th.Mux.HandleFunc(url, func(w http.ResponseWriter, r *http.Request) {
176 th.TestMethod(t, r, "DELETE")
177 th.TestHeader(t, r, "X-Auth-Token", fake.TokenID)
178 w.Header().Add("Content-Type", "application/json")
179 w.WriteHeader(http.StatusAccepted)
180 })
181}
Jamie Hannaford8badf1e2014-11-19 14:39:26 +0100182
183func mockAddRuleResponse(t *testing.T) {
184 th.Mux.HandleFunc("/os-security-group-rules", func(w http.ResponseWriter, r *http.Request) {
185 th.TestMethod(t, r, "POST")
186 th.TestHeader(t, r, "X-Auth-Token", fake.TokenID)
187
188 th.TestJSONRequest(t, r, `
189{
190 "security_group_rule": {
191 "from_port": 22,
192 "ip_protocol": "TCP",
193 "to_port": 22,
Jamie Hannaford2f226172014-11-25 11:52:25 +0100194 "parent_group_id": "{groupID}",
Jamie Hannaford8badf1e2014-11-19 14:39:26 +0100195 "cidr": "0.0.0.0/0"
196 }
197} `)
198
199 w.Header().Add("Content-Type", "application/json")
200 w.WriteHeader(http.StatusOK)
201
202 fmt.Fprintf(w, `
203{
204 "security_group_rule": {
205 "from_port": 22,
206 "group": {},
207 "ip_protocol": "TCP",
208 "to_port": 22,
Jamie Hannaford2f226172014-11-25 11:52:25 +0100209 "parent_group_id": "{groupID}",
Jamie Hannaford8badf1e2014-11-19 14:39:26 +0100210 "ip_range": {
211 "cidr": "0.0.0.0/0"
212 },
Jamie Hannaford2f226172014-11-25 11:52:25 +0100213 "id": "{ruleID}"
Jamie Hannaford8badf1e2014-11-19 14:39:26 +0100214 }
215}`)
216 })
217}
218
Jamie Hannaford2f226172014-11-25 11:52:25 +0100219func mockDeleteRuleResponse(t *testing.T, ruleID string) {
220 url := fmt.Sprintf("/os-security-group-rules/%s", ruleID)
Jamie Hannaford8badf1e2014-11-19 14:39:26 +0100221 th.Mux.HandleFunc(url, func(w http.ResponseWriter, r *http.Request) {
222 th.TestMethod(t, r, "DELETE")
223 th.TestHeader(t, r, "X-Auth-Token", fake.TokenID)
224 w.Header().Add("Content-Type", "application/json")
225 w.WriteHeader(http.StatusAccepted)
226 })
227}
Jamie Hannaford740e4a32014-11-19 16:13:30 +0100228
229func mockAddServerToGroupResponse(t *testing.T, serverID string) {
230 url := fmt.Sprintf("/servers/%s/action", serverID)
231 th.Mux.HandleFunc(url, func(w http.ResponseWriter, r *http.Request) {
232 th.TestMethod(t, r, "POST")
233 th.TestHeader(t, r, "X-Auth-Token", fake.TokenID)
234
235 th.TestJSONRequest(t, r, `
236{
237 "addSecurityGroup": {
238 "name": "test"
239 }
240}
241 `)
242
243 w.Header().Add("Content-Type", "application/json")
Jamie Hannaford5b2feb52014-11-20 12:02:15 +0100244 w.WriteHeader(http.StatusAccepted)
Pratik Mallyaee675fd2015-09-14 14:07:30 -0500245 fmt.Fprintf(w, `{}`)
Jamie Hannaford740e4a32014-11-19 16:13:30 +0100246 })
247}
248
249func mockRemoveServerFromGroupResponse(t *testing.T, serverID string) {
250 url := fmt.Sprintf("/servers/%s/action", serverID)
251 th.Mux.HandleFunc(url, func(w http.ResponseWriter, r *http.Request) {
252 th.TestMethod(t, r, "POST")
253 th.TestHeader(t, r, "X-Auth-Token", fake.TokenID)
254
255 th.TestJSONRequest(t, r, `
256{
Jamie Hannaford334c8752014-11-20 12:05:09 +0100257 "removeSecurityGroup": {
258 "name": "test"
259 }
Jamie Hannaford740e4a32014-11-19 16:13:30 +0100260}
261 `)
262
263 w.Header().Add("Content-Type", "application/json")
Jamie Hannaford5b2feb52014-11-20 12:02:15 +0100264 w.WriteHeader(http.StatusAccepted)
Pratik Mallyaee675fd2015-09-14 14:07:30 -0500265 fmt.Fprintf(w, `{}`)
Jamie Hannaford740e4a32014-11-19 16:13:30 +0100266 })
267}