-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_load_runner.py
437 lines (359 loc) · 11.9 KB
/
test_load_runner.py
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
from eneel.load_runner import *
from eneel.adapters.postgres import *
import datetime
import pytest
from dotenv import find_dotenv, load_dotenv
load_dotenv(find_dotenv())
@pytest.fixture
def run_project_fixture(tmp_path):
project_yml = """# Project info
csv_delimiter: "|"
parallel_loads: 2
# Connection details
source: db
source_columntypes_to_exclude: timestamp, boolean
target: db
logdb: db
logschema: test_logging
logtable: run_log
# Source to Destination Schema mapping
schemas:
- source_schema: "run_project" # You can replicate from multiple schemas
target_schema: "run_project_tgt" # Target schema
tables: # List Tables to replicate
- table_name: "test1"
"""
project_yml_path = tmp_path / "test_project.yml"
project_yml_path.write_text(project_yml)
connections_yml = """db:
type: postgres
outputs:
dev:
"""
connections_yml += " host: " + os.getenv("POSTGRES_TEST_HOST") + "\n"
connections_yml += " port: " + os.getenv("POSTGRES_TEST_PORT") + "\n"
connections_yml += " user: " + os.getenv("POSTGRES_TEST_USER") + "\n"
connections_yml += " password: " + os.getenv("POSTGRES_TEST_PASS") + "\n"
connections_yml += " database: " + os.getenv("POSTGRES_TEST_DBNAME") + "\n"
connections_yml += " target: dev"
connections_yml_path = tmp_path / "connections.yml"
connections_yml_path.write_text(connections_yml)
db = Database(
os.getenv("POSTGRES_TEST_HOST"),
os.getenv("POSTGRES_TEST_USER"),
os.getenv("POSTGRES_TEST_PASS"),
os.getenv("POSTGRES_TEST_DBNAME"),
os.getenv("POSTGRES_TEST_PORT"),
)
setup_sql = """
drop schema if exists run_project cascade;
create schema run_project;
create table run_project.test1(
id_col int,
name_col varchar(64),
datetime_col timestamp
);
insert into run_project.test1 values(1, 'First', '2019-10-01 11:00:00');
insert into run_project.test1 values(2, 'Second', '2019-10-02 12:00:00');
insert into run_project.test1 values(3, 'Third', '2019-10-03 13:00:00');
"""
db.execute(setup_sql)
db.create_log_table("test_logging", "run_log")
current_run_dir = os.getcwd()
run_dir = os.fspath(tmp_path)
os.chdir(run_dir)
yield db
teardown_sql = """
drop schema run_project CASCADE;
"""
db.execute(teardown_sql)
db.close()
os.chdir(current_run_dir)
@pytest.fixture
def project_load(tmp_path):
db = Database(
os.getenv("POSTGRES_TEST_HOST"),
os.getenv("POSTGRES_TEST_USER"),
os.getenv("POSTGRES_TEST_PASS"),
os.getenv("POSTGRES_TEST_DBNAME"),
os.getenv("POSTGRES_TEST_PORT"),
)
setup_sql = """
drop schema if exists test_run_load cascade;
create schema test_run_load;
create table test_run_load.test1(
id_col int,
name_col varchar(64),
datetime_col timestamp
);
insert into test_run_load.test1 values(1, 'First', '2019-10-01 11:00:00');
insert into test_run_load.test1 values(2, 'Second', '2019-10-02 12:00:00');
insert into test_run_load.test1 values(3, 'Third', '2019-10-03 13:00:00');
"""
db.execute(setup_sql)
db.create_log_table("test_logging", "run_log")
project_load = {
"load_order": 1,
"num_tables_to_load": 2,
"project_name": "test_project",
"source_conninfo": {
"name": "source",
"type": "postgres",
"read_only": None,
"target": "dev",
"credentials": {
"host": os.getenv("POSTGRES_TEST_HOST"),
"port": os.getenv("POSTGRES_TEST_PORT"),
"user": os.getenv("POSTGRES_TEST_USER"),
"password": os.getenv("POSTGRES_TEST_PASS"),
"database": os.getenv("POSTGRES_TEST_DBNAME"),
"table_parallel_loads": 10,
"table_parallel_batch_size": 500,
},
},
"target_conninfo": {
"name": "target",
"type": "postgres",
"read_only": None,
"target": "dev",
"credentials": {
"host": os.getenv("POSTGRES_TEST_HOST"),
"port": os.getenv("POSTGRES_TEST_PORT"),
"user": os.getenv("POSTGRES_TEST_USER"),
"password": os.getenv("POSTGRES_TEST_PASS"),
"database": os.getenv("POSTGRES_TEST_DBNAME"),
},
},
"logdb": {
"conninfo": {
"name": "logging",
"type": "postgres",
"read_only": None,
"target": "dev",
"credentials": {
"host": os.getenv("POSTGRES_TEST_HOST"),
"port": os.getenv("POSTGRES_TEST_PORT"),
"user": os.getenv("POSTGRES_TEST_USER"),
"password": os.getenv("POSTGRES_TEST_PASS"),
"database": os.getenv("POSTGRES_TEST_DBNAME"),
},
},
"schema": "test_logging",
"table": "run_log",
},
"project": {
"id": "project id",
"name": "Postgres to postgres",
"owner": "[email protected]",
"temp_path": "/Users/mikaelene/Dev/eneel_projects/tempfiles",
"keep_tempfiles": False,
"csv_delimiter": "|",
"parallel_loads": 2,
"source": "pg_source",
"source_columntypes_to_exclude": "timestamp, boolean",
"target": "pg_target",
"logdb": "pg_logging",
"logtable": "run_log",
},
"schema": {
"source_schema": "test_run_load",
"target_schema": "test_run_load_target",
},
"table": {
"table_name": "test1",
"replication_method": "FULL_TABLE",
"parallelization_key": "id_col",
},
"temp_path": tmp_path,
"project_started_at": datetime.datetime(2019, 10, 11, 19, 31, 15, 809923),
}
current_run_dir = os.getcwd()
run_dir = os.fspath(tmp_path)
os.chdir(run_dir)
yield project_load
teardown_sql = """
drop schema test_run_load CASCADE;
drop schema test_logging CASCADE;
"""
db.execute(teardown_sql)
db.close()
os.chdir(current_run_dir)
@pytest.fixture
def db(tmp_path):
db = Database(
os.getenv("POSTGRES_TEST_HOST"),
os.getenv("POSTGRES_TEST_USER"),
os.getenv("POSTGRES_TEST_PASS"),
os.getenv("POSTGRES_TEST_DBNAME"),
os.getenv("POSTGRES_TEST_PORT"),
)
setup_sql = """
drop schema if exists load_runner cascade;
create schema load_runner;
create table load_runner.test1(
id_col int,
name_col varchar(64),
datetime_col timestamp
);
insert into load_runner.test1 values(1, 'First', '2019-10-01 11:00:00');
insert into load_runner.test1 values(2, 'Second', '2019-10-02 12:00:00');
insert into load_runner.test1 values(3, 'Third', '2019-10-03 13:00:00');
create table load_runner.test1_tmp_test(
id_col int,
name_col varchar(64),
datetime_col timestamp
);
insert into load_runner.test1_tmp_test values(1, 'First', '2019-10-01 11:00:00');
insert into load_runner.test1_tmp_test values(2, 'Second', '2019-10-02 12:00:00');
insert into load_runner.test1_tmp_test values(3, 'Third', '2019-10-03 13:00:00');
create table load_runner.test1_tmp_empty(
id_col int,
name_col varchar(64),
datetime_col timestamp
);
create table load_runner.test1_inc_test(
id_col int,
name_col varchar(64),
datetime_col timestamp
);
insert into load_runner.test1_inc_test values(1, 'First', '2019-10-01 11:00:00');
insert into load_runner.test1_inc_test values(2, 'Second', '2019-10-02 12:00:00');
insert into load_runner.test1_inc_test values(3, 'Third', '2019-10-03 13:00:00');
insert into load_runner.test1_inc_test values(4, 'Forth', '2019-10-04 12:00:00');
insert into load_runner.test1_inc_test values(5, 'Fifth', '2019-10-05 13:00:00');
"""
db.execute(setup_sql)
# export table
table_columns = db.table_columns("load_runner", "test1")
_, _, _, _ = export_table(
"ERROR",
1,
1,
db,
"load_runner",
"test1",
table_columns,
tmp_path,
"|",
replication_key=None,
max_replication_key=None,
parallelization_key=None,
)
yield db
teardown_sql = """
drop schema load_runner CASCADE;
"""
db.execute(teardown_sql)
db.close()
# I NEED TO TEST FAILING FOR THESE AS WELL
def test_export_table(db, tmp_path):
table_columns = db.table_columns("load_runner", "test1")
return_code, temp_path_load, delimiter, export_row_count = export_table(
"ERROR",
1,
1,
db,
"load_runner",
"test1",
table_columns,
tmp_path,
"|",
replication_key=None,
max_replication_key=None,
parallelization_key=None,
)
assert return_code == "RUN"
assert temp_path_load == tmp_path
assert delimiter == "|"
assert export_row_count == 3
def test_create_temp_table(db):
table_columns = db.table_columns("load_runner", "test1")
return_code = create_temp_table(
"ERROR",
1,
1,
db,
"load_runner",
"test1_tmp_tmp",
table_columns,
"load_runner.test1",
)
assert return_code == "RUN"
assert db.check_table_exist("load_runner.test1") is True
def test_import_into_temp_table(db, tmp_path):
# import into tmp table
return_code, import_row_count = import_into_temp_table(
"ERROR",
1,
1,
db,
"load_runner",
"test1_tmp_empty",
tmp_path,
"|",
"load_runner.test1_tmp",
)
assert return_code == "RUN"
assert import_row_count == 3
def test_switch_table(db, tmp_path):
return_code = switch_table(
"ERROR", 1, 1, db, "load_runner", "test1", "test1_tmp_test", "load_runner.test1"
)
assert return_code == "RUN"
def test_insert_from_table_and_drop_tmp(db, tmp_path):
return_code = insert_from_table_and_drop_tmp(
"ERROR", 1, 1, db, "load_runner", "test1", "test1_tmp_test", "load_runner.test1"
)
assert return_code == "RUN"
def test_strategy_full_table_load(db, tmp_path):
table_columns = db.table_columns("load_runner", "test1")
full_load_path = tmp_path / "full_load"
full_load_path.mkdir()
return_code, export_row_count, import_row_count = strategy_full_table_load(
"ERROR",
1,
1,
db,
"load_runner",
"test1",
table_columns,
full_load_path,
"|",
db,
"load_runner",
"test1_target",
"id_col",
)
assert return_code == "DONE"
assert export_row_count == 3
assert import_row_count == 3
def test_strategy_incremental(db, tmp_path):
table_columns = db.table_columns("load_runner", "test1_inc_test")
inc_load_path = tmp_path / "inc_load"
inc_load_path.mkdir()
return_code, export_row_count, import_row_count = strategy_incremental(
"ERROR",
1,
1,
db,
"load_runner",
"test1_inc_test",
table_columns,
inc_load_path,
"|",
db,
"load_runner",
"test1",
"id_col",
"id_col",
)
assert return_code == "DONE"
assert export_row_count == 2
assert import_row_count == 2
def test_run_load(project_load):
return_code = run_load(project_load)
assert return_code == "DONE"
def test_run_project(run_project_fixture, tmp_path):
connections_path = tmp_path / "connections.yml"
run_project("test_project", connections_path)
assert run_project_fixture.check_table_exist("run_project_tgt.test1") is True