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
509 lines (407 loc) · 15.9 KB
/
database_test.py
File metadata and controls
509 lines (407 loc) · 15.9 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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
import logging
from test.unit.base import ClientBaseCase
from linode_api4 import PostgreSQLDatabase
from linode_api4.objects import MySQLDatabase
logger = logging.getLogger(__name__)
class DatabaseTest(ClientBaseCase):
"""
Tests methods of the DatabaseGroup class
"""
def test_get_types(self):
"""
Test that database types are properly handled
"""
types = self.client.database.types()
self.assertEqual(len(types), 1)
self.assertEqual(types[0].type_class, "nanode")
self.assertEqual(types[0].id, "g6-nanode-1")
self.assertEqual(types[0].engines.mysql[0].price.monthly, 20)
def test_get_engines(self):
"""
Test that database engines are properly handled
"""
engines = self.client.database.engines()
self.assertEqual(len(engines), 2)
self.assertEqual(engines[0].engine, "mysql")
self.assertEqual(engines[0].id, "mysql/8.0.26")
self.assertEqual(engines[0].version, "8.0.26")
self.assertEqual(engines[1].engine, "postgresql")
self.assertEqual(engines[1].id, "postgresql/10.14")
self.assertEqual(engines[1].version, "10.14")
def test_get_databases(self):
"""
Test that databases are properly handled
"""
dbs = self.client.database.instances()
self.assertEqual(len(dbs), 1)
self.assertEqual(dbs[0].allow_list[1], "192.0.1.0/24")
self.assertEqual(dbs[0].cluster_size, 3)
self.assertEqual(dbs[0].encrypted, False)
self.assertEqual(dbs[0].engine, "mysql")
self.assertEqual(
dbs[0].hosts.primary,
"lin-123-456-mysql-mysql-primary.servers.linodedb.net",
)
self.assertEqual(
dbs[0].hosts.secondary,
"lin-123-456-mysql-primary-private.servers.linodedb.net",
)
self.assertEqual(dbs[0].id, 123)
self.assertEqual(dbs[0].region, "us-east")
self.assertEqual(dbs[0].updates.duration, 3)
self.assertEqual(dbs[0].version, "8.0.26")
def test_database_instance(self):
"""
Ensures that the .instance attribute properly translates database types
"""
dbs = self.client.database.instances()
db_translated = dbs[0].instance
self.assertTrue(isinstance(db_translated, MySQLDatabase))
self.assertEqual(db_translated.ssl_connection, True)
class MySQLDatabaseTest(ClientBaseCase):
"""
Tests methods of the MySQLDatabase class
"""
def test_get_instances(self):
"""
Test that database types are properly handled
"""
dbs = self.client.database.mysql_instances()
self.assertEqual(len(dbs), 1)
self.assertEqual(dbs[0].allow_list[1], "192.0.1.0/24")
self.assertEqual(dbs[0].cluster_size, 3)
self.assertEqual(dbs[0].encrypted, False)
self.assertEqual(dbs[0].engine, "mysql")
self.assertEqual(
dbs[0].hosts.primary,
"lin-123-456-mysql-mysql-primary.servers.linodedb.net",
)
self.assertEqual(
dbs[0].hosts.secondary,
"lin-123-456-mysql-primary-private.servers.linodedb.net",
)
self.assertEqual(dbs[0].id, 123)
self.assertEqual(dbs[0].region, "us-east")
self.assertEqual(dbs[0].updates.duration, 3)
self.assertEqual(dbs[0].version, "8.0.26")
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,
)
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)
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.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)
def test_list_backups(self):
"""
Test that MySQL backups list properly
"""
db = MySQLDatabase(self.client, 123)
backups = db.backups
self.assertEqual(len(backups), 1)
self.assertEqual(backups[0].id, 456)
self.assertEqual(
backups[0].label, "Scheduled - 02/04/22 11:11 UTC-XcCRmI"
)
self.assertEqual(backups[0].type, "auto")
def test_create_backup(self):
"""
Test that MySQL database backups can be updated
"""
with self.mock_post("/databases/mysql/instances/123/backups") as m:
db = MySQLDatabase(self.client, 123)
# We don't care about errors here; we just want to
# validate the request.
try:
db.backup_create("mybackup", target="secondary")
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/123/backups"
)
self.assertEqual(m.call_data["label"], "mybackup")
self.assertEqual(m.call_data["target"], "secondary")
def test_backup_restore(self):
"""
Test that MySQL database backups can be restored
"""
with self.mock_post(
"/databases/mysql/instances/123/backups/456/restore"
) as m:
db = MySQLDatabase(self.client, 123)
db.backups[0].restore()
self.assertEqual(m.method, "post")
self.assertEqual(
m.call_url, "/databases/mysql/instances/123/backups/456/restore"
)
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_get_instances(self):
"""
Test that database types are properly handled
"""
dbs = self.client.database.postgresql_instances()
self.assertEqual(len(dbs), 1)
self.assertEqual(dbs[0].allow_list[1], "192.0.1.0/24")
self.assertEqual(dbs[0].cluster_size, 3)
self.assertEqual(dbs[0].encrypted, False)
self.assertEqual(dbs[0].engine, "postgresql")
self.assertEqual(
dbs[0].hosts.primary,
"lin-0000-000-pgsql-primary.servers.linodedb.net",
)
self.assertEqual(
dbs[0].hosts.secondary,
"lin-0000-000-pgsql-primary-private.servers.linodedb.net",
)
self.assertEqual(dbs[0].id, 123)
self.assertEqual(dbs[0].region, "us-east")
self.assertEqual(dbs[0].updates.duration, 3)
self.assertEqual(dbs[0].version, "13.2")
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,
)
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)
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.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)
def test_list_backups(self):
"""
Test that PostgreSQL backups list properly
"""
db = PostgreSQLDatabase(self.client, 123)
backups = db.backups
self.assertEqual(len(backups), 1)
self.assertEqual(backups[0].id, 456)
self.assertEqual(
backups[0].label, "Scheduled - 02/04/22 11:11 UTC-XcCRmI"
)
self.assertEqual(backups[0].type, "auto")
def test_create_backup(self):
"""
Test that PostgreSQL database backups can be created
"""
with self.mock_post("/databases/postgresql/instances/123/backups") as m:
db = PostgreSQLDatabase(self.client, 123)
# We don't care about errors here; we just want to
# validate the request.
try:
db.backup_create("mybackup", target="secondary")
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/postgresql/instances/123/backups"
)
self.assertEqual(m.call_data["label"], "mybackup")
self.assertEqual(m.call_data["target"], "secondary")
def test_backup_restore(self):
"""
Test that PostgreSQL database backups can be restored
"""
with self.mock_post(
"/databases/postgresql/instances/123/backups/456/restore"
) as m:
db = PostgreSQLDatabase(self.client, 123)
db.backups[0].restore()
self.assertEqual(m.method, "post")
self.assertEqual(
m.call_url,
"/databases/postgresql/instances/123/backups/456/restore",
)
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"
)