-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathtest_client.py
More file actions
341 lines (283 loc) · 10.1 KB
/
test_client.py
File metadata and controls
341 lines (283 loc) · 10.1 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
from __future__ import annotations
from unittest import mock
import pytest
from hcloud import Client
from hcloud.datacenters import BoundDatacenter, Datacenter
from hcloud.primary_ips import BoundPrimaryIP, PrimaryIP, PrimaryIPsClient
from ..conftest import BoundModelTestCase
class TestBoundPrimaryIP(BoundModelTestCase):
methods = [
BoundPrimaryIP.update,
BoundPrimaryIP.delete,
BoundPrimaryIP.change_dns_ptr,
BoundPrimaryIP.change_protection,
BoundPrimaryIP.assign,
BoundPrimaryIP.unassign,
]
@pytest.fixture()
def resource_client(self, client: Client):
return client.primary_ips
@pytest.fixture()
def bound_model(self, resource_client: PrimaryIPsClient):
return BoundPrimaryIP(resource_client, data=dict(id=14))
def test_init(self, primary_ip_response):
bound_primary_ip = BoundPrimaryIP(
client=mock.MagicMock(), data=primary_ip_response["primary_ip"]
)
assert bound_primary_ip.id == 42
assert bound_primary_ip.name == "my-resource"
assert bound_primary_ip.ip == "131.232.99.1"
assert bound_primary_ip.type == "ipv4"
assert bound_primary_ip.protection == {"delete": False}
assert bound_primary_ip.labels == {}
assert bound_primary_ip.blocked is False
assert bound_primary_ip.assignee_id == 17
assert bound_primary_ip.assignee_type == "server"
with pytest.deprecated_call():
datacenter = bound_primary_ip.datacenter
assert isinstance(datacenter, BoundDatacenter)
assert datacenter.id == 42
assert datacenter.name == "fsn1-dc8"
assert datacenter.description == "Falkenstein DC Park 8"
assert datacenter.location.country == "DE"
assert datacenter.location.city == "Falkenstein"
assert datacenter.location.latitude == 50.47612
assert datacenter.location.longitude == 12.370071
class TestPrimaryIPsClient:
@pytest.fixture()
def primary_ips_client(self, client: Client):
return PrimaryIPsClient(client)
def test_get_by_id(
self,
request_mock: mock.MagicMock,
primary_ips_client: PrimaryIPsClient,
primary_ip_response,
):
request_mock.return_value = primary_ip_response
bound_primary_ip = primary_ips_client.get_by_id(1)
request_mock.assert_called_with(
method="GET",
url="/primary_ips/1",
)
assert bound_primary_ip._client is primary_ips_client
assert bound_primary_ip.id == 42
def test_get_by_name(
self,
request_mock: mock.MagicMock,
primary_ips_client: PrimaryIPsClient,
one_primary_ips_response,
):
request_mock.return_value = one_primary_ips_response
bound_primary_ip = primary_ips_client.get_by_name("my-resource")
request_mock.assert_called_with(
method="GET",
url="/primary_ips",
params={"name": "my-resource"},
)
assert bound_primary_ip._client is primary_ips_client
assert bound_primary_ip.id == 42
assert bound_primary_ip.name == "my-resource"
@pytest.mark.parametrize("params", [{"label_selector": "label1"}])
def test_get_all(
self,
request_mock: mock.MagicMock,
primary_ips_client: PrimaryIPsClient,
all_primary_ips_response,
params,
):
request_mock.return_value = all_primary_ips_response
bound_primary_ips = primary_ips_client.get_all(**params)
params.update({"page": 1, "per_page": 50})
request_mock.assert_called_with(
method="GET",
url="/primary_ips",
params=params,
)
assert len(bound_primary_ips) == 1
bound_primary_ip1 = bound_primary_ips[0]
assert bound_primary_ip1._client is primary_ips_client
assert bound_primary_ip1.id == 42
assert bound_primary_ip1.name == "my-resource"
def test_create_with_datacenter(
self,
request_mock: mock.MagicMock,
primary_ips_client: PrimaryIPsClient,
primary_ip_response,
):
request_mock.return_value = primary_ip_response
with pytest.deprecated_call():
response = primary_ips_client.create(
type="ipv6",
name="my-resource",
datacenter=Datacenter(name="datacenter"),
)
request_mock.assert_called_with(
method="POST",
url="/primary_ips",
json={
"name": "my-resource",
"type": "ipv6",
"assignee_type": "server",
"datacenter": "datacenter",
"auto_delete": False,
},
)
bound_primary_ip = response.primary_ip
action = response.action
assert bound_primary_ip._client is primary_ips_client
assert bound_primary_ip.id == 42
assert bound_primary_ip.name == "my-resource"
assert action is None
def test_create_with_assignee_id(
self,
request_mock: mock.MagicMock,
primary_ips_client: PrimaryIPsClient,
primary_ip_create_response,
):
request_mock.return_value = primary_ip_create_response
response = primary_ips_client.create(
type="ipv6",
name="my-ip",
assignee_id=17,
assignee_type="server",
)
request_mock.assert_called_with(
method="POST",
url="/primary_ips",
json={
"name": "my-ip",
"type": "ipv6",
"assignee_id": 17,
"assignee_type": "server",
"auto_delete": False,
},
)
bound_primary_ip = response.primary_ip
action = response.action
assert bound_primary_ip._client is primary_ips_client
assert bound_primary_ip.id == 42
assert bound_primary_ip.name == "my-ip"
assert bound_primary_ip.assignee_id == 17
assert action.id == 13
@pytest.mark.parametrize(
"primary_ip", [PrimaryIP(id=1), BoundPrimaryIP(mock.MagicMock(), dict(id=1))]
)
def test_update(
self,
request_mock: mock.MagicMock,
primary_ips_client: PrimaryIPsClient,
primary_ip,
response_update_primary_ip,
):
request_mock.return_value = response_update_primary_ip
primary_ip = primary_ips_client.update(
primary_ip, auto_delete=True, name="my-resource"
)
request_mock.assert_called_with(
method="PUT",
url="/primary_ips/1",
json={"auto_delete": True, "name": "my-resource"},
)
assert primary_ip.id == 42
assert primary_ip.auto_delete is True
assert primary_ip.name == "my-resource"
@pytest.mark.parametrize(
"primary_ip", [PrimaryIP(id=1), BoundPrimaryIP(mock.MagicMock(), dict(id=1))]
)
def test_change_protection(
self,
request_mock: mock.MagicMock,
primary_ips_client: PrimaryIPsClient,
primary_ip,
action_response,
):
request_mock.return_value = action_response
action = primary_ips_client.change_protection(primary_ip, True)
request_mock.assert_called_with(
method="POST",
url="/primary_ips/1/actions/change_protection",
json={"delete": True},
)
assert action.id == 1
assert action.progress == 0
@pytest.mark.parametrize(
"primary_ip", [PrimaryIP(id=1), BoundPrimaryIP(mock.MagicMock(), dict(id=1))]
)
def test_delete(
self,
request_mock: mock.MagicMock,
primary_ips_client: PrimaryIPsClient,
primary_ip,
action_response,
):
request_mock.return_value = action_response
delete_success = primary_ips_client.delete(primary_ip)
request_mock.assert_called_with(
method="DELETE",
url="/primary_ips/1",
)
assert delete_success is True
@pytest.mark.parametrize(
"assignee_id,assignee_type,primary_ip",
[
(1, "server", PrimaryIP(id=12)),
(1, "server", BoundPrimaryIP(mock.MagicMock(), dict(id=12))),
],
)
def test_assign(
self,
request_mock: mock.MagicMock,
primary_ips_client: PrimaryIPsClient,
assignee_id,
assignee_type,
primary_ip,
action_response,
):
request_mock.return_value = action_response
action = primary_ips_client.assign(primary_ip, assignee_id, assignee_type)
request_mock.assert_called_with(
method="POST",
url="/primary_ips/12/actions/assign",
json={"assignee_id": 1, "assignee_type": "server"},
)
assert action.id == 1
assert action.progress == 0
@pytest.mark.parametrize(
"primary_ip", [PrimaryIP(id=12), BoundPrimaryIP(mock.MagicMock(), dict(id=12))]
)
def test_unassign(
self,
request_mock: mock.MagicMock,
primary_ips_client: PrimaryIPsClient,
primary_ip,
action_response,
):
request_mock.return_value = action_response
action = primary_ips_client.unassign(primary_ip)
request_mock.assert_called_with(
method="POST",
url="/primary_ips/12/actions/unassign",
)
assert action.id == 1
assert action.progress == 0
@pytest.mark.parametrize(
"primary_ip", [PrimaryIP(id=12), BoundPrimaryIP(mock.MagicMock(), dict(id=12))]
)
def test_change_dns_ptr(
self,
request_mock: mock.MagicMock,
primary_ips_client: PrimaryIPsClient,
primary_ip,
action_response,
):
request_mock.return_value = action_response
action = primary_ips_client.change_dns_ptr(
primary_ip, "1.2.3.4", "server02.example.com"
)
request_mock.assert_called_with(
method="POST",
url="/primary_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