generated from nogibjj/afraa-n_Mini-Project-5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_main.py
57 lines (47 loc) · 1.15 KB
/
test_main.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
"""
Test goes here
"""
import subprocess
def test_extract():
"""tests extract()"""
result = subprocess.run(
["python", "main.py", "extract"],
capture_output=True,
text=True,
check=True,
)
assert result.returncode == 0
assert "Extracting data..." in result.stdout
def test_transform_load():
"""tests transfrom_load"""
result = subprocess.run(
["python", "main.py", "transform_load"],
capture_output=True,
text=True,
check=True,
)
assert result.returncode == 0
assert "Transforming data..." in result.stdout
def test_run_query():
"""tests run_query"""
result = subprocess.run(
[
"python",
"main.py",
"run_query",
"""SELECT Flavour, Sugars_g, Size
FROM BaskinRobbinsDB
WHERE Size = 'Reg114g'
ORDER BY Sugars_g DESC
LIMIT 5;
""",
],
capture_output=True,
text=True,
check=True,
)
assert result.returncode == 0
if __name__ == "__main__":
test_extract()
test_transform_load()
test_run_query()