forked from linode/linode_api4-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase_test.py
More file actions
407 lines (341 loc) · 13.4 KB
/
Copy pathdatabase_test.py
File metadata and controls
407 lines (341 loc) · 13.4 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
407
import logging
from test.unit.base import ClientBaseCase
from linode_api4 import (
DatabasePrivateNetwork,
MySQLDatabaseConfigMySQLOptions,
MySQLDatabaseConfigOptions,
PostgreSQLDatabase,
PostgreSQLDatabaseConfigOptions,
PostgreSQLDatabaseConfigPGOptions,
)
from linode_api4.objects import MySQLDatabase
logger = logging.getLogger(__name__)
class MySQLDatabaseTest(ClientBaseCase):
"""
Tests methods of the MySQLDatabase class
"""
def test_create(self):
"""
Test that MySQL databases can be created
"""
logger = logging.getLogger(__name__)
with self.mock_post("/databases/mysql/instances") as m:
# We don't care about errors here; we just want to
# validate the request.
try:
self.client.database.mysql_create(
"cool",
"us-southeast",
"mysql/8.0.26",
"g6-standard-1",
cluster_size=3,
engine_config=MySQLDatabaseConfigOptions(
mysql=MySQLDatabaseConfigMySQLOptions(
connect_timeout=20
),
binlog_retention_period=200,
),
private_network=DatabasePrivateNetwork(
vpc_id=1234,
subnet_id=5678,
public_access=True,
),
)
except Exception as e:
logger.warning(
"An error occurred while validating the request: %s", e
)
self.assertEqual(m.method, "post")
self.assertEqual(m.call_url, "/databases/mysql/instances")
self.assertEqual(m.call_data["label"], "cool")
self.assertEqual(m.call_data["region"], "us-southeast")
self.assertEqual(m.call_data["engine"], "mysql/8.0.26")
self.assertEqual(m.call_data["type"], "g6-standard-1")
self.assertEqual(m.call_data["cluster_size"], 3)
self.assertEqual(
m.call_data["engine_config"]["mysql"]["connect_timeout"], 20
)
self.assertEqual(
m.call_data["engine_config"]["binlog_retention_period"], 200
)
self.assertEqual(m.call_data["private_network"]["vpc_id"], 1234)
self.assertEqual(m.call_data["private_network"]["subnet_id"], 5678)
self.assertEqual(
m.call_data["private_network"]["public_access"], True
)
def test_update(self):
"""
Test that the MySQL database can be updated
"""
with self.mock_put("/databases/mysql/instances/123") as m:
new_allow_list = ["192.168.0.1/32"]
db = MySQLDatabase(self.client, 123)
db.updates.day_of_week = 2
db.allow_list = new_allow_list
db.label = "cool"
db.engine_config = MySQLDatabaseConfigOptions(
mysql=MySQLDatabaseConfigMySQLOptions(connect_timeout=20),
binlog_retention_period=200,
)
db.private_network = DatabasePrivateNetwork(
vpc_id=1234,
subnet_id=5678,
public_access=True,
)
db.save()
self.assertEqual(m.method, "put")
self.assertEqual(m.call_url, "/databases/mysql/instances/123")
self.assertEqual(m.call_data["label"], "cool")
self.assertEqual(m.call_data["updates"]["day_of_week"], 2)
self.assertEqual(m.call_data["allow_list"], new_allow_list)
self.assertEqual(
m.call_data["engine_config"]["mysql"]["connect_timeout"], 20
)
self.assertEqual(
m.call_data["engine_config"]["binlog_retention_period"], 200
)
self.assertEqual(m.call_data["private_network"]["vpc_id"], 1234)
self.assertEqual(m.call_data["private_network"]["subnet_id"], 5678)
self.assertEqual(
m.call_data["private_network"]["public_access"], True
)
def test_patch(self):
"""
Test MySQL Database patching logic.
"""
with self.mock_post("/databases/mysql/instances/123/patch") as m:
db = MySQLDatabase(self.client, 123)
db.patch()
self.assertEqual(m.method, "post")
self.assertEqual(m.call_url, "/databases/mysql/instances/123/patch")
def test_get_ssl(self):
"""
Test MySQL SSL cert logic
"""
db = MySQLDatabase(self.client, 123)
ssl = db.ssl
self.assertEqual(ssl.ca_certificate, "LS0tLS1CRUdJ...==")
def test_get_credentials(self):
"""
Test MySQL credentials logic
"""
db = MySQLDatabase(self.client, 123)
creds = db.credentials
self.assertEqual(creds.password, "s3cur3P@ssw0rd")
self.assertEqual(creds.username, "linroot")
def test_reset_credentials(self):
"""
Test resetting MySQL credentials
"""
with self.mock_post(
"/databases/mysql/instances/123/credentials/reset"
) as m:
db = MySQLDatabase(self.client, 123)
db.credentials_reset()
self.assertEqual(m.method, "post")
self.assertEqual(
m.call_url, "/databases/mysql/instances/123/credentials/reset"
)
def test_suspend(self):
"""
Test MySQL Database suspend logic.
"""
with self.mock_post("/databases/mysql/instances/123/suspend") as m:
db = MySQLDatabase(self.client, 123)
db.suspend()
self.assertEqual(m.method, "post")
self.assertEqual(
m.call_url, "/databases/mysql/instances/123/suspend"
)
def test_resume(self):
"""
Test MySQL Database resume logic.
"""
with self.mock_post("/databases/mysql/instances/123/resume") as m:
db = MySQLDatabase(self.client, 123)
db.resume()
self.assertEqual(m.method, "post")
self.assertEqual(
m.call_url, "/databases/mysql/instances/123/resume"
)
class PostgreSQLDatabaseTest(ClientBaseCase):
"""
Tests methods of the PostgreSQLDatabase class
"""
def test_create(self):
"""
Test that PostgreSQL databases can be created
"""
with self.mock_post("/databases/postgresql/instances") as m:
# We don't care about errors here; we just want to
# validate the request.
try:
self.client.database.postgresql_create(
"cool",
"us-southeast",
"postgresql/13.2",
"g6-standard-1",
cluster_size=3,
engine_config=PostgreSQLDatabaseConfigOptions(
pg=PostgreSQLDatabaseConfigPGOptions(
autovacuum_analyze_scale_factor=0.5,
pg_partman_bgw_interval=3600,
pg_partman_bgw_role="myrolename",
pg_stat_monitor_pgsm_enable_query_plan=False,
pg_stat_monitor_pgsm_max_buckets=10,
pg_stat_statements_track="top",
),
work_mem=4,
),
private_network=DatabasePrivateNetwork(
vpc_id=1234,
subnet_id=5678,
public_access=True,
),
)
except Exception:
pass
self.assertEqual(m.method, "post")
self.assertEqual(m.call_url, "/databases/postgresql/instances")
self.assertEqual(m.call_data["label"], "cool")
self.assertEqual(m.call_data["region"], "us-southeast")
self.assertEqual(m.call_data["engine"], "postgresql/13.2")
self.assertEqual(m.call_data["type"], "g6-standard-1")
self.assertEqual(m.call_data["cluster_size"], 3)
self.assertEqual(
m.call_data["engine_config"]["pg"][
"autovacuum_analyze_scale_factor"
],
0.5,
)
self.assertEqual(
m.call_data["engine_config"]["pg"]["pg_partman_bgw.interval"],
3600,
)
self.assertEqual(
m.call_data["engine_config"]["pg"]["pg_partman_bgw.role"],
"myrolename",
)
self.assertEqual(
m.call_data["engine_config"]["pg"][
"pg_stat_monitor.pgsm_enable_query_plan"
],
False,
)
self.assertEqual(
m.call_data["engine_config"]["pg"][
"pg_stat_monitor.pgsm_max_buckets"
],
10,
)
self.assertEqual(
m.call_data["engine_config"]["pg"]["pg_stat_statements.track"],
"top",
)
self.assertEqual(m.call_data["engine_config"]["work_mem"], 4)
self.assertEqual(m.call_data["private_network"]["vpc_id"], 1234)
self.assertEqual(m.call_data["private_network"]["subnet_id"], 5678)
self.assertEqual(
m.call_data["private_network"]["public_access"], True
)
def test_update(self):
"""
Test that the PostgreSQL database can be updated
"""
with self.mock_put("/databases/postgresql/instances/123") as m:
new_allow_list = ["192.168.0.1/32"]
db = PostgreSQLDatabase(self.client, 123)
db.updates.day_of_week = 2
db.allow_list = new_allow_list
db.label = "cool"
db.engine_config = PostgreSQLDatabaseConfigOptions(
pg=PostgreSQLDatabaseConfigPGOptions(
autovacuum_analyze_scale_factor=0.5
),
work_mem=4,
)
db.private_network = DatabasePrivateNetwork(
vpc_id=1234,
subnet_id=5678,
public_access=True,
)
db.save()
self.assertEqual(m.method, "put")
self.assertEqual(m.call_url, "/databases/postgresql/instances/123")
self.assertEqual(m.call_data["label"], "cool")
self.assertEqual(m.call_data["updates"]["day_of_week"], 2)
self.assertEqual(m.call_data["allow_list"], new_allow_list)
self.assertEqual(
m.call_data["engine_config"]["pg"][
"autovacuum_analyze_scale_factor"
],
0.5,
)
self.assertEqual(m.call_data["engine_config"]["work_mem"], 4)
self.assertEqual(m.call_data["private_network"]["vpc_id"], 1234)
self.assertEqual(m.call_data["private_network"]["subnet_id"], 5678)
self.assertEqual(
m.call_data["private_network"]["public_access"], True
)
def test_patch(self):
"""
Test PostgreSQL Database patching logic.
"""
with self.mock_post("/databases/postgresql/instances/123/patch") as m:
db = PostgreSQLDatabase(self.client, 123)
db.patch()
self.assertEqual(m.method, "post")
self.assertEqual(
m.call_url, "/databases/postgresql/instances/123/patch"
)
def test_get_ssl(self):
"""
Test PostgreSQL SSL cert logic
"""
db = PostgreSQLDatabase(self.client, 123)
ssl = db.ssl
self.assertEqual(ssl.ca_certificate, "LS0tLS1CRUdJ...==")
def test_get_credentials(self):
"""
Test PostgreSQL credentials logic
"""
db = PostgreSQLDatabase(self.client, 123)
creds = db.credentials
self.assertEqual(creds.password, "s3cur3P@ssw0rd")
self.assertEqual(creds.username, "linroot")
def test_reset_credentials(self):
"""
Test resetting PostgreSQL credentials
"""
with self.mock_post(
"/databases/postgresql/instances/123/credentials/reset"
) as m:
db = PostgreSQLDatabase(self.client, 123)
db.credentials_reset()
self.assertEqual(m.method, "post")
self.assertEqual(
m.call_url,
"/databases/postgresql/instances/123/credentials/reset",
)
def test_suspend(self):
"""
Test PostgreSQL Database suspend logic.
"""
with self.mock_post("/databases/postgresql/instances/123/suspend") as m:
db = PostgreSQLDatabase(self.client, 123)
db.suspend()
self.assertEqual(m.method, "post")
self.assertEqual(
m.call_url, "/databases/postgresql/instances/123/suspend"
)
def test_resume(self):
"""
Test PostgreSQL Database resume logic.
"""
with self.mock_post("/databases/postgresql/instances/123/resume") as m:
db = PostgreSQLDatabase(self.client, 123)
db.resume()
self.assertEqual(m.method, "post")
self.assertEqual(
m.call_url, "/databases/postgresql/instances/123/resume"
)