-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathldtest.py
executable file
·39 lines (30 loc) · 1.11 KB
/
ldtest.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
#!/usr/local/bin/python3
#
# load in tests
from eaidb import EAIdb
import csv
import re, sys
################################################################
if __name__ == '__main__':
import argparse
parser = argparse.ArgumentParser(description='Load test descriptions')
parser.add_argument('-t', type=str, help="Test type");
parser.add_argument('-d', action='store_true', help="Debug");
parser.add_argument('tests', type=str, help="CSV file of tests");
args = parser.parse_args();
db = EAIdb(None)
testtype = args.t
flds = ('testid', 'summary', 'description', 'action', 'expected', 'class', 'phase', 'refs')
with open(args.tests, "r", newline='') as f:
crd = csv.reader(f)
first = True
for l in crd:
if first: # skip headers on the first line
first = False
continue
tstdict = dict(zip(flds, l)) # seven fields into
tstdict['testtype'] = testtype
if args.d:
print(tstdict)
r = db.addtest(tstdict)
print(r, tstdict['testid'])