-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathtest_database_engine_config.py
More file actions
475 lines (394 loc) · 14.9 KB
/
test_database_engine_config.py
File metadata and controls
475 lines (394 loc) · 14.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
import os
from test.integration.helpers import (
get_test_label,
send_request_when_resource_available,
wait_for_condition,
)
from test.integration.models.database.helpers import (
get_db_engine_id,
get_postgres_db_status,
get_sql_db_status,
make_full_mysql_engine_config,
make_full_postgres_engine_config,
make_mysql_engine_config_w_nullable_field,
make_postgres_engine_config_w_password_encryption_null,
)
import pytest
from linode_api4.errors import ApiError
from linode_api4.objects import (
MySQLDatabase,
MySQLDatabaseConfigMySQLOptions,
MySQLDatabaseConfigOptions,
PostgreSQLDatabase,
PostgreSQLDatabaseConfigOptions,
PostgreSQLDatabaseConfigPGOptions,
)
@pytest.fixture(scope="session")
def mysql_db_with_engine_config(test_linode_client):
client = test_linode_client
label = get_test_label() + "-sqldb"
region = "us-ord"
engine_id = get_db_engine_id(client, "mysql")
dbtype = "g6-standard-1"
db = client.database.mysql_create(
label=label,
region=region,
engine=engine_id,
ltype=dbtype,
cluster_size=None,
engine_config=make_full_mysql_engine_config(),
)
def get_db_status():
return db.status == "active"
# Usually take 10-15m to provision
wait_for_condition(60, 2000, get_db_status)
yield db
send_request_when_resource_available(300, db.delete)
@pytest.fixture(scope="session")
def postgres_db_with_engine_config(test_linode_client):
client = test_linode_client
label = get_test_label() + "-postgresqldb"
region = "us-ord"
engine_id = "postgresql/17"
dbtype = "g6-standard-1"
db = client.database.postgresql_create(
label=label,
region=region,
engine=engine_id,
ltype=dbtype,
cluster_size=None,
engine_config=make_full_postgres_engine_config(),
)
def get_db_status():
return db.status == "active"
# Usually take 10-15m to provision
wait_for_condition(60, 2000, get_db_status)
yield db
send_request_when_resource_available(300, db.delete)
# MYSQL
@pytest.mark.skipif(
os.getenv("RUN_DB_TESTS", "").strip().lower() not in {"yes", "true"},
reason="RUN_DB_TESTS environment variable must be set to 'yes' or 'true' (case insensitive)",
)
def test_get_mysql_config(test_linode_client):
config = test_linode_client.database.mysql_config_options()
# Top-level keys
assert "binlog_retention_period" in config
assert "mysql" in config
# binlog_retention_period checks
brp = config["binlog_retention_period"]
assert isinstance(brp, dict)
assert brp["type"] == "integer"
assert brp["minimum"] == 600
assert brp["maximum"] == 9007199254740991
assert brp["requires_restart"] is False
# mysql sub-keys
mysql = config["mysql"]
# mysql valid fields
expected_keys = [
"connect_timeout",
"default_time_zone",
"group_concat_max_len",
"information_schema_stats_expiry",
"innodb_change_buffer_max_size",
"innodb_flush_neighbors",
"innodb_ft_min_token_size",
"innodb_ft_server_stopword_table",
"innodb_lock_wait_timeout",
"innodb_log_buffer_size",
"innodb_online_alter_log_max_size",
"innodb_read_io_threads",
"innodb_rollback_on_timeout",
"innodb_thread_concurrency",
"innodb_write_io_threads",
"interactive_timeout",
"internal_tmp_mem_storage_engine",
"max_allowed_packet",
"max_heap_table_size",
"net_buffer_length",
"net_read_timeout",
"net_write_timeout",
"sort_buffer_size",
"sql_mode",
"sql_require_primary_key",
"tmp_table_size",
"wait_timeout",
]
# Assert all valid fields are present
for key in expected_keys:
assert key in mysql, f"{key} not found in mysql config"
assert mysql["connect_timeout"]["type"] == "integer"
assert mysql["default_time_zone"]["type"] == "string"
assert mysql["innodb_rollback_on_timeout"]["type"] == "boolean"
assert "enum" in mysql["internal_tmp_mem_storage_engine"]
assert "pattern" in mysql["sql_mode"]
@pytest.mark.skipif(
os.getenv("RUN_DB_TESTS", "").strip().lower() not in {"yes", "true"},
reason="RUN_DB_TESTS environment variable must be set to 'yes' or 'true' (case insensitive)",
)
def test_create_mysql_with_engine_config(mysql_db_with_engine_config):
db = mysql_db_with_engine_config
actual_config = db.engine_config.mysql
expected_config = make_full_mysql_engine_config().mysql.__dict__
for key, expected_value in expected_config.items():
actual_value = getattr(actual_config, key)
assert (
actual_value == expected_value
), f"{key} mismatch: expected {expected_value}, got {actual_value}"
@pytest.mark.skipif(
os.getenv("RUN_DB_TESTS", "").strip().lower() not in {"yes", "true"},
reason="RUN_DB_TESTS environment variable must be set to 'yes' or 'true' (case insensitive)",
)
def test_update_mysql_engine_config(
test_linode_client, mysql_db_with_engine_config
):
db = mysql_db_with_engine_config
db.updates.day_of_week = 2
db.engine_config = MySQLDatabaseConfigOptions(
mysql=MySQLDatabaseConfigMySQLOptions(connect_timeout=50),
binlog_retention_period=880,
)
db.save()
wait_for_condition(
30,
300,
get_sql_db_status,
test_linode_client,
db.id,
"active",
)
database = test_linode_client.load(MySQLDatabase, db.id)
assert database.updates.day_of_week == 2
assert database.engine_config.mysql.connect_timeout == 50
assert database.engine_config.binlog_retention_period == 880
@pytest.mark.skipif(
os.getenv("RUN_DB_TESTS", "").strip().lower() not in {"yes", "true"},
reason="RUN_DB_TESTS environment variable must be set to 'yes' or 'true' (case insensitive)",
)
def test_list_mysql_engine_config(
test_linode_client, mysql_db_with_engine_config
):
dbs = test_linode_client.database.mysql_instances()
db_ids = [db.id for db in dbs]
assert mysql_db_with_engine_config.id in db_ids
@pytest.mark.skipif(
os.getenv("RUN_DB_TESTS", "").strip().lower() not in {"yes", "true"},
reason="RUN_DB_TESTS environment variable must be set to 'yes' or 'true' (case insensitive)",
)
def test_get_mysql_engine_config(
test_linode_client, mysql_db_with_engine_config
):
db = test_linode_client.load(MySQLDatabase, mysql_db_with_engine_config.id)
assert isinstance(db, MySQLDatabase)
@pytest.mark.skipif(
os.getenv("RUN_DB_TESTS", "").strip().lower() not in {"yes", "true"},
reason="RUN_DB_TESTS environment variable must be set to 'yes' or 'true' (case insensitive)",
)
def test_create_mysql_db_nullable_field(test_linode_client):
client = test_linode_client
label = get_test_label(5) + "-sqldb"
region = "us-ord"
engine_id = get_db_engine_id(client, "mysql")
dbtype = "g6-standard-1"
db = client.database.mysql_create(
label=label,
region=region,
engine=engine_id,
ltype=dbtype,
cluster_size=None,
engine_config=make_mysql_engine_config_w_nullable_field(),
)
assert db.engine_config.mysql.innodb_ft_server_stopword_table is None
send_request_when_resource_available(300, db.delete)
# POSTGRESQL
@pytest.mark.skipif(
os.getenv("RUN_DB_TESTS", "").strip().lower() not in {"yes", "true"},
reason="RUN_DB_TESTS environment variable must be set to 'yes' or 'true' (case insensitive)",
)
def test_get_postgres_config(test_linode_client):
config = test_linode_client.database.postgresql_config_options()
# Top-level keys and structure
assert "pg" in config
assert "pg_stat_monitor_enable" in config
assert config["pg_stat_monitor_enable"]["type"] == "boolean"
assert "shared_buffers_percentage" in config
assert config["shared_buffers_percentage"]["type"] == "number"
assert config["shared_buffers_percentage"]["minimum"] >= 1
assert "work_mem" in config
assert config["work_mem"]["type"] == "integer"
assert "minimum" in config["work_mem"]
pg = config["pg"]
# postgres valid fields
expected_keys = [
"autovacuum_analyze_scale_factor",
"autovacuum_analyze_threshold",
"autovacuum_max_workers",
"autovacuum_naptime",
"autovacuum_vacuum_cost_delay",
"autovacuum_vacuum_cost_limit",
"autovacuum_vacuum_scale_factor",
"autovacuum_vacuum_threshold",
"bgwriter_delay",
"bgwriter_flush_after",
"bgwriter_lru_maxpages",
"bgwriter_lru_multiplier",
"deadlock_timeout",
"default_toast_compression",
"idle_in_transaction_session_timeout",
"jit",
"max_files_per_process",
"max_locks_per_transaction",
"max_logical_replication_workers",
"max_parallel_workers",
"max_parallel_workers_per_gather",
"max_pred_locks_per_transaction",
"max_replication_slots",
"max_slot_wal_keep_size",
"max_stack_depth",
"max_standby_archive_delay",
"max_standby_streaming_delay",
"max_wal_senders",
"max_worker_processes",
"password_encryption",
"pg_partman_bgw.interval",
"pg_partman_bgw.role",
"pg_stat_monitor.pgsm_enable_query_plan",
"pg_stat_monitor.pgsm_max_buckets",
"pg_stat_statements.track",
"temp_file_limit",
"timezone",
"track_activity_query_size",
"track_commit_timestamp",
"track_functions",
"track_io_timing",
"wal_sender_timeout",
"wal_writer_delay",
]
# Assert all valid fields are present
for key in expected_keys:
assert key in pg, f"{key} not found in postgresql config"
assert pg["autovacuum_analyze_scale_factor"]["type"] == "number"
assert pg["autovacuum_analyze_threshold"]["type"] == "integer"
assert pg["autovacuum_max_workers"]["requires_restart"] is True
assert pg["default_toast_compression"]["enum"] == ["lz4", "pglz"]
assert pg["jit"]["type"] == "boolean"
assert "enum" in pg["password_encryption"]
assert "pattern" in pg["pg_partman_bgw.role"]
assert pg["pg_stat_monitor.pgsm_enable_query_plan"]["type"] == "boolean"
assert pg["pg_stat_monitor.pgsm_max_buckets"]["requires_restart"] is True
assert pg["pg_stat_statements.track"]["enum"] == ["all", "top", "none"]
assert pg["track_commit_timestamp"]["enum"] == ["off", "on"]
assert pg["track_functions"]["enum"] == ["all", "pl", "none"]
assert pg["track_io_timing"]["enum"] == ["off", "on"]
@pytest.mark.skipif(
os.getenv("RUN_DB_TESTS", "").strip().lower() not in {"yes", "true"},
reason="RUN_DB_TESTS environment variable must be set to 'yes' or 'true' (case insensitive)",
)
def test_create_postgres_with_engine_config(
test_linode_client, postgres_db_with_engine_config
):
db = postgres_db_with_engine_config
actual_config = db.engine_config.pg
expected_config = make_full_postgres_engine_config().pg.__dict__
for key, expected_value in expected_config.items():
actual_value = getattr(actual_config, key, None)
assert (
actual_value is None or actual_value == expected_value
), f"{key} mismatch: expected {expected_value}, got {actual_value}"
@pytest.mark.skipif(
os.getenv("RUN_DB_TESTS", "").strip().lower() not in {"yes", "true"},
reason="RUN_DB_TESTS environment variable must be set to 'yes' or 'true' (case insensitive)",
)
def test_update_postgres_engine_config(
test_linode_client, postgres_db_with_engine_config
):
db = postgres_db_with_engine_config
db.updates.day_of_week = 2
db.engine_config = PostgreSQLDatabaseConfigOptions(
pg=PostgreSQLDatabaseConfigPGOptions(
autovacuum_analyze_threshold=70, deadlock_timeout=2000
),
shared_buffers_percentage=25.0,
)
db.save()
wait_for_condition(
30,
300,
get_postgres_db_status,
test_linode_client,
db.id,
"active",
)
database = test_linode_client.load(PostgreSQLDatabase, db.id)
assert database.updates.day_of_week == 2
assert database.engine_config.pg.autovacuum_analyze_threshold == 70
assert database.engine_config.pg.deadlock_timeout == 2000
assert database.engine_config.shared_buffers_percentage == 25.0
@pytest.mark.skipif(
os.getenv("RUN_DB_TESTS", "").strip().lower() not in {"yes", "true"},
reason="RUN_DB_TESTS environment variable must be set to 'yes' or 'true' (case insensitive)",
)
def test_create_pg13_with_lz4_error(test_linode_client):
client = test_linode_client
label = get_test_label() + "-postgresqldb"
region = "us-ord"
engine_id = get_db_engine_id(client, "postgresql/13")
dbtype = "g6-standard-1"
try:
client.database.postgresql_create(
label=label,
region=region,
engine=engine_id,
ltype=dbtype,
cluster_size=None,
engine_config=PostgreSQLDatabaseConfigOptions(
pg=PostgreSQLDatabaseConfigPGOptions(
default_toast_compression="lz4"
),
work_mem=4,
),
)
except ApiError as e:
assert "An error occurred" in str(e.json)
assert e.status == 500
@pytest.mark.skipif(
os.getenv("RUN_DB_TESTS", "").strip().lower() not in {"yes", "true"},
reason="RUN_DB_TESTS environment variable must be set to 'yes' or 'true' (case insensitive)",
)
def test_list_postgres_engine_config(
test_linode_client, postgres_db_with_engine_config
):
dbs = test_linode_client.database.postgresql_instances()
db_ids = [db.id for db in dbs]
assert postgres_db_with_engine_config.id in db_ids
@pytest.mark.skipif(
os.getenv("RUN_DB_TESTS", "").strip().lower() not in {"yes", "true"},
reason="RUN_DB_TESTS environment variable must be set to 'yes' or 'true' (case insensitive)",
)
def test_get_postgres_engine_config(
test_linode_client, postgres_db_with_engine_config
):
db = test_linode_client.load(
PostgreSQLDatabase, postgres_db_with_engine_config.id
)
assert isinstance(db, PostgreSQLDatabase)
@pytest.mark.skipif(
os.getenv("RUN_DB_TESTS", "").strip().lower() not in {"yes", "true"},
reason="RUN_DB_TESTS environment variable must be set to 'yes' or 'true' (case insensitive)",
)
def test_create_postgres_db_password_encryption_default_md5(test_linode_client):
client = test_linode_client
label = get_test_label() + "-postgresqldb"
region = "us-ord"
engine_id = "postgresql/17"
dbtype = "g6-standard-1"
db = client.database.postgresql_create(
label=label,
region=region,
engine=engine_id,
ltype=dbtype,
cluster_size=None,
engine_config=make_postgres_engine_config_w_password_encryption_null(),
)
assert db.engine_config.pg.password_encryption == "md5"
send_request_when_resource_available(300, db.delete)