forked from mozilla/fx-desktop-qa-automation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fixturize_test_cases.py
52 lines (50 loc) · 1.93 KB
/
fixturize_test_cases.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
import os
import re
TEST_CASE_RE = re.compile(r'("""|#|)\s*C(\d+)')
for root, _, files in os.walk("tests"):
for file in files:
if file.startswith("test") and file.endswith(".py"):
case_num = None
filepath = os.path.join(root, file)
script = open(filepath).readlines()
for line in script:
if "def test_case" in line:
break
m = TEST_CASE_RE.match(line.strip())
if not m:
continue
if case_num and case_num != m[2]:
print(filepath)
print(f"Found multiple case_nums: {case_num} and {m[2]}")
case_num = m[2]
if case_num:
with open(filepath, "w") as fh:
lines = "\n".join(
[
"",
"@pytest.fixture()",
"def test_case():",
f' return "{case_num}"\n',
"",
]
)
fh.write("import pytest\n")
imports = True
for i in range(len(script)):
line = script[i]
if (
not (
len(line.strip()) == 0
or line.strip().startswith("import")
or line.strip().startswith("from")
)
and imports
):
fh.write(lines)
imports = False
fh.write(f"{line}")
# print(filepath)
# print(lines)
# print("-=----=-")
else:
print(f"Case not found for {filepath}")