-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathtest_client.py
More file actions
406 lines (337 loc) · 12.3 KB
/
test_client.py
File metadata and controls
406 lines (337 loc) · 12.3 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
from __future__ import annotations
from unittest import mock
import pytest
from hcloud import Client
from hcloud.floating_ips import BoundFloatingIP, FloatingIP, FloatingIPsClient
from hcloud.locations import BoundLocation, Location
from hcloud.servers import BoundServer, Server
from ..conftest import BoundModelTestCase
class TestBoundFloatingIP(BoundModelTestCase):
methods = [
BoundFloatingIP.update,
BoundFloatingIP.delete,
BoundFloatingIP.change_protection,
BoundFloatingIP.change_dns_ptr,
BoundFloatingIP.assign,
BoundFloatingIP.unassign,
]
@pytest.fixture()
def resource_client(self, client: Client):
return client.floating_ips
@pytest.fixture()
def bound_model(self, resource_client, floating_ip_response):
return BoundFloatingIP(
resource_client, data=floating_ip_response["floating_ip"]
)
def test_init(self, bound_model: BoundFloatingIP):
o = bound_model
assert o.id == 4711
assert o.description == "Web Frontend"
assert o.name == "Web Frontend"
assert o.ip == "131.232.99.1"
assert o.type == "ipv4"
assert o.protection == {"delete": False}
assert o.labels == {}
assert o.blocked is False
assert isinstance(o.server, BoundServer)
assert o.server.id == 42
assert isinstance(o.home_location, BoundLocation)
assert o.home_location.id == 1
assert o.home_location.name == "fsn1"
assert o.home_location.description == "Falkenstein DC Park 1"
assert o.home_location.country == "DE"
assert o.home_location.city == "Falkenstein"
assert o.home_location.latitude == 50.47612
assert o.home_location.longitude == 12.370071
class TestFloatingIPsClient:
@pytest.fixture()
def floating_ips_client(self, client: Client):
return FloatingIPsClient(client)
def test_get_by_id(
self,
request_mock: mock.MagicMock,
floating_ips_client: FloatingIPsClient,
floating_ip_response,
):
request_mock.return_value = floating_ip_response
bound_floating_ip = floating_ips_client.get_by_id(1)
request_mock.assert_called_with(
method="GET",
url="/floating_ips/1",
)
assert bound_floating_ip._client is floating_ips_client
assert bound_floating_ip.id == 4711
assert bound_floating_ip.description == "Web Frontend"
def test_get_by_name(
self,
request_mock: mock.MagicMock,
floating_ips_client: FloatingIPsClient,
one_floating_ips_response,
):
request_mock.return_value = one_floating_ips_response
bound_floating_ip = floating_ips_client.get_by_name("Web Frontend")
request_mock.assert_called_with(
method="GET",
url="/floating_ips",
params={"name": "Web Frontend"},
)
assert bound_floating_ip._client is floating_ips_client
assert bound_floating_ip.id == 4711
assert bound_floating_ip.name == "Web Frontend"
assert bound_floating_ip.description == "Web Frontend"
@pytest.mark.parametrize(
"params",
[{"label_selector": "label1", "page": 1, "per_page": 10}, {"name": ""}, {}],
)
def test_get_list(
self,
request_mock: mock.MagicMock,
floating_ips_client: FloatingIPsClient,
two_floating_ips_response,
params,
):
request_mock.return_value = two_floating_ips_response
result = floating_ips_client.get_list(**params)
request_mock.assert_called_with(
method="GET",
url="/floating_ips",
params=params,
)
bound_floating_ips = result.floating_ips
assert result.meta is not None
assert len(bound_floating_ips) == 2
bound_floating_ip1 = bound_floating_ips[0]
bound_floating_ip2 = bound_floating_ips[1]
assert bound_floating_ip1._client is floating_ips_client
assert bound_floating_ip1.id == 4711
assert bound_floating_ip1.description == "Web Frontend"
assert bound_floating_ip2._client is floating_ips_client
assert bound_floating_ip2.id == 4712
assert bound_floating_ip2.description == "Web Backend"
@pytest.mark.parametrize("params", [{"label_selector": "label1"}, {}])
def test_get_all(
self,
request_mock: mock.MagicMock,
floating_ips_client: FloatingIPsClient,
two_floating_ips_response,
params,
):
request_mock.return_value = two_floating_ips_response
bound_floating_ips = floating_ips_client.get_all(**params)
params.update({"page": 1, "per_page": 50})
request_mock.assert_called_with(
method="GET",
url="/floating_ips",
params=params,
)
assert len(bound_floating_ips) == 2
bound_floating_ip1 = bound_floating_ips[0]
bound_floating_ip2 = bound_floating_ips[1]
assert bound_floating_ip1._client is floating_ips_client
assert bound_floating_ip1.id == 4711
assert bound_floating_ip1.description == "Web Frontend"
assert bound_floating_ip2._client is floating_ips_client
assert bound_floating_ip2.id == 4712
assert bound_floating_ip2.description == "Web Backend"
def test_create_with_location(
self,
request_mock: mock.MagicMock,
floating_ips_client: FloatingIPsClient,
floating_ip_response,
):
request_mock.return_value = floating_ip_response
response = floating_ips_client.create(
"ipv6", "Web Frontend", home_location=Location(name="location")
)
request_mock.assert_called_with(
method="POST",
url="/floating_ips",
json={
"description": "Web Frontend",
"type": "ipv6",
"home_location": "location",
},
)
bound_floating_ip = response.floating_ip
action = response.action
assert bound_floating_ip._client is floating_ips_client
assert bound_floating_ip.id == 4711
assert bound_floating_ip.description == "Web Frontend"
assert action is None
@pytest.mark.parametrize(
"server", [Server(id=1), BoundServer(mock.MagicMock(), dict(id=1))]
)
def test_create_with_server(
self,
request_mock: mock.MagicMock,
floating_ips_client: FloatingIPsClient,
server,
floating_ip_create_response,
):
request_mock.return_value = floating_ip_create_response
response = floating_ips_client.create(
type="ipv6", description="Web Frontend", server=server
)
request_mock.assert_called_with(
method="POST",
url="/floating_ips",
json={"description": "Web Frontend", "type": "ipv6", "server": 1},
)
bound_floating_ip = response.floating_ip
action = response.action
assert bound_floating_ip._client is floating_ips_client
assert bound_floating_ip.id == 4711
assert bound_floating_ip.description == "Web Frontend"
assert action.id == 13
def test_create_with_name(
self,
request_mock: mock.MagicMock,
floating_ips_client: FloatingIPsClient,
floating_ip_create_response,
):
request_mock.return_value = floating_ip_create_response
response = floating_ips_client.create(
type="ipv6", description="Web Frontend", name="Web Frontend"
)
request_mock.assert_called_with(
method="POST",
url="/floating_ips",
json={
"description": "Web Frontend",
"type": "ipv6",
"name": "Web Frontend",
},
)
bound_floating_ip = response.floating_ip
action = response.action
assert bound_floating_ip._client is floating_ips_client
assert bound_floating_ip.id == 4711
assert bound_floating_ip.description == "Web Frontend"
assert bound_floating_ip.name == "Web Frontend"
assert action.id == 13
@pytest.mark.parametrize(
"floating_ip", [FloatingIP(id=1), BoundFloatingIP(mock.MagicMock(), dict(id=1))]
)
def test_update(
self,
request_mock: mock.MagicMock,
floating_ips_client: FloatingIPsClient,
floating_ip,
response_update_floating_ip,
):
request_mock.return_value = response_update_floating_ip
floating_ip = floating_ips_client.update(
floating_ip, description="New description", name="New name"
)
request_mock.assert_called_with(
method="PUT",
url="/floating_ips/1",
json={"description": "New description", "name": "New name"},
)
assert floating_ip.id == 4711
assert floating_ip.description == "New description"
assert floating_ip.name == "New name"
@pytest.mark.parametrize(
"floating_ip", [FloatingIP(id=1), BoundFloatingIP(mock.MagicMock(), dict(id=1))]
)
def test_change_protection(
self,
request_mock: mock.MagicMock,
floating_ips_client: FloatingIPsClient,
floating_ip,
action_response,
):
request_mock.return_value = action_response
action = floating_ips_client.change_protection(floating_ip, True)
request_mock.assert_called_with(
method="POST",
url="/floating_ips/1/actions/change_protection",
json={"delete": True},
)
assert action.id == 1
assert action.progress == 0
@pytest.mark.parametrize(
"floating_ip", [FloatingIP(id=1), BoundFloatingIP(mock.MagicMock(), dict(id=1))]
)
def test_delete(
self,
request_mock: mock.MagicMock,
floating_ips_client: FloatingIPsClient,
floating_ip,
action_response,
):
request_mock.return_value = action_response
delete_success = floating_ips_client.delete(floating_ip)
request_mock.assert_called_with(
method="DELETE",
url="/floating_ips/1",
)
assert delete_success is True
@pytest.mark.parametrize(
"server,floating_ip",
[
(Server(id=1), FloatingIP(id=12)),
(
BoundServer(mock.MagicMock(), dict(id=1)),
BoundFloatingIP(mock.MagicMock(), dict(id=12)),
),
],
)
def test_assign(
self,
request_mock: mock.MagicMock,
floating_ips_client: FloatingIPsClient,
server,
floating_ip,
action_response,
):
request_mock.return_value = action_response
action = floating_ips_client.assign(floating_ip, server)
request_mock.assert_called_with(
method="POST",
url="/floating_ips/12/actions/assign",
json={"server": 1},
)
assert action.id == 1
assert action.progress == 0
@pytest.mark.parametrize(
"floating_ip",
[FloatingIP(id=12), BoundFloatingIP(mock.MagicMock(), dict(id=12))],
)
def test_unassign(
self,
request_mock: mock.MagicMock,
floating_ips_client: FloatingIPsClient,
floating_ip,
action_response,
):
request_mock.return_value = action_response
action = floating_ips_client.unassign(floating_ip)
request_mock.assert_called_with(
method="POST",
url="/floating_ips/12/actions/unassign",
)
assert action.id == 1
assert action.progress == 0
@pytest.mark.parametrize(
"floating_ip",
[FloatingIP(id=12), BoundFloatingIP(mock.MagicMock(), dict(id=12))],
)
def test_change_dns_ptr(
self,
request_mock: mock.MagicMock,
floating_ips_client: FloatingIPsClient,
floating_ip,
action_response,
):
request_mock.return_value = action_response
action = floating_ips_client.change_dns_ptr(
floating_ip, "1.2.3.4", "server02.example.com"
)
request_mock.assert_called_with(
method="POST",
url="/floating_ips/12/actions/change_dns_ptr",
json={"ip": "1.2.3.4", "dns_ptr": "server02.example.com"},
)
assert action.id == 1
assert action.progress == 0