1 | #!/usr/bin/python
|
---|
2 | #
|
---|
3 | # gathers all Actions in pyMoleCuilder module and tests them with some default
|
---|
4 | # values.
|
---|
5 | #
|
---|
6 | # date: Oct 5, 2011
|
---|
7 | # author: Gregor Bollerhey
|
---|
8 |
|
---|
9 | import pyMoleCuilder as mol
|
---|
10 | import sys, re, subprocess
|
---|
11 |
|
---|
12 | cmds = filter(lambda s: s[0] != '_', dir(mol))
|
---|
13 |
|
---|
14 | # options.dat einlesen
|
---|
15 |
|
---|
16 | Defaults = {}
|
---|
17 |
|
---|
18 | with open('options.dat') as f:
|
---|
19 | for line in f:
|
---|
20 | if len(line) > 0 and line[0] != '#':
|
---|
21 | key, value = line.split('\t', 1)
|
---|
22 | value = value[1:-2] # quotes entfernen
|
---|
23 |
|
---|
24 | Defaults[key] = value
|
---|
25 |
|
---|
26 | # aufrufen
|
---|
27 |
|
---|
28 | Allparams = []
|
---|
29 |
|
---|
30 | def ParseParameters(docstring):
|
---|
31 | result = []
|
---|
32 | params = re.findall(r'\(str\)([-a-zA-Z]*)', docstring)
|
---|
33 |
|
---|
34 | for param in params:
|
---|
35 | if not param in Allparams:
|
---|
36 | Allparams.append(param)
|
---|
37 |
|
---|
38 | if not param in Defaults:
|
---|
39 | print 'Fehlender Defaultwert:', param
|
---|
40 |
|
---|
41 | # direkt substituieren, oder erst beim aufruf?
|
---|
42 | if param in Defaults:
|
---|
43 | param = Defaults[param]
|
---|
44 |
|
---|
45 | result.append(param)
|
---|
46 |
|
---|
47 | return result
|
---|
48 |
|
---|
49 | for cmd in cmds:
|
---|
50 | doc = eval('mol.%s.__doc__' % cmd)
|
---|
51 | params = ParseParameters(doc)
|
---|
52 |
|
---|
53 | print '--BEGIN-- %s mit %s --------' % (cmd, params)
|
---|
54 |
|
---|
55 | # write command to file
|
---|
56 | output=open("test.py", "w")
|
---|
57 | output.write('import pyMoleCuilder as mol\nparams = %s\nmol.%s(*params)\n' % (params, cmd))
|
---|
58 | output.close()
|
---|
59 | # call python externally on this file and catch retcode
|
---|
60 | p = subprocess.Popen(["python", "test.py"], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
---|
61 | stdout, stderr = p.communicate()
|
---|
62 | print ' --- STDOUT ---'
|
---|
63 | print ' %s ' % (stdout)
|
---|
64 | print ' --- STDERR ---'
|
---|
65 | print ' %s ' % (stderr)
|
---|
66 | retcode = p.returncode
|
---|
67 | if retcode == 134 or retcode == 0:
|
---|
68 | print ' ---- ok ----'
|
---|
69 | else:
|
---|
70 | print ' -- FAILED with %s --' % (retcode)
|
---|
71 | #exec('mol.%s(*params)' % cmd)
|
---|
72 |
|
---|
73 | print '---END--- %s mit %s --------' % (cmd, params)
|
---|
74 |
|
---|
75 | sys.exit(0)
|
---|