forked from eclipse-sumo/sumo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextractTest.py
executable file
·249 lines (233 loc) · 10.6 KB
/
extractTest.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
#!/usr/bin/env python
# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
# Copyright (C) 2009-2019 German Aerospace Center (DLR) and others.
# This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v2.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v20.html
# SPDX-License-Identifier: EPL-2.0
# @file extractTest.py
# @author Daniel Krajzewicz
# @author Jakob Erdmann
# @author Michael Behrisch
# @date 2009-07-08
# @version $Id$
"""
Extract all files for a test case into a new dir.
It may copy more files than needed because it copies everything
that is mentioned in the config under copy_test_path.
"""
from __future__ import absolute_import
from __future__ import print_function
import os
import sys
from os.path import join
import optparse
import glob
import shutil
import subprocess
from collections import defaultdict
THIS_DIR = os.path.abspath(os.path.dirname(__file__))
SUMO_HOME = os.path.dirname(THIS_DIR)
sys.path.append(join(SUMO_HOME, "tools"))
from sumolib import checkBinary # noqa
# cannot use ':' because it is a component of absolute paths on windows
SOURCE_DEST_SEP = ';'
def get_options(args=None):
optParser = optparse.OptionParser(usage="%prog <options> <test directory>")
optParser.add_option("-o", "--output", default=".", help="send output to directory")
optParser.add_option("-f", "--file", help="read list of source and target dirs from")
optParser.add_option("-p", "--python-script",
help="name of a python script to generate for a batch run")
optParser.add_option("-i", "--intelligent-names", dest="names", action="store_true",
default=False, help="generate cfg name from directory name")
optParser.add_option("-v", "--verbose", action="store_true", default=False, help="more information")
optParser.add_option("-a", "--application", help="sets the application to be used")
optParser.add_option("-s", "--skip-configuration", default=False, action="store_true",
help="skips creation of an application config from the options.app file")
optParser.add_option("-x", "--skip-validation", default=False, action="store_true",
help="remove all options related to XML validation")
options, args = optParser.parse_args(args=args)
if not options.file and len(args) == 0:
optParser.print_help()
sys.exit(1)
options.args = args
return options
def copy_merge(srcDir, dstDir, merge, exclude):
"""merge contents of srcDir recursively into dstDir"""
for dir, subdirs, files in os.walk(srcDir):
for ex in exclude:
if ex in subdirs:
subdirs.remove(ex)
dst = dir.replace(srcDir, dstDir)
if os.path.exists(dst) and not merge:
shutil.rmtree(dst)
if not os.path.exists(dst):
# print "creating dir '%s' as a copy of '%s'" % (dst, srcDir)
os.mkdir(dst)
for file in files:
# print("copying file '%s' to '%s'" % (join(dir, file), join(dst, file)))
shutil.copy(join(dir, file), join(dst, file))
def generateTargetName(baseDir, source):
return source[len(os.path.commonprefix([baseDir, source])):].replace(os.sep, '_')
def main(options):
targets = []
if options.file:
dirname = os.path.dirname(options.file)
for line in open(options.file):
line = line.strip()
if line and line[0] != '#':
ls = line.split(SOURCE_DEST_SEP) + [""]
ls[0] = join(dirname, ls[0])
ls[1] = join(dirname, ls[1])
targets.append(ls[:3])
for val in options.args:
source_and_maybe_target = val.split(SOURCE_DEST_SEP) + ["", ""]
targets.append(source_and_maybe_target[:3])
if options.python_script:
if not os.path.exists(os.path.dirname(options.python_script)):
os.makedirs(os.path.dirname(options.python_script))
pyBatch = open(options.python_script, 'w')
pyBatch.write('''import subprocess, sys, os
from os.path import abspath, dirname, join
THIS_DIR = abspath(dirname(__file__))
SUMO_HOME = os.environ.get("SUMO_HOME", dirname(dirname(THIS_DIR)))
os.environ["SUMO_HOME"] = SUMO_HOME
for p in [
''')
for source, target, app in targets:
outputFiles = glob.glob(join(source, "output.[0-9a-z]*"))
# print source, target, outputFiles
# XXX we should collect the options.app.variant files in all parent
# directories instead. This would allow us to save config files for all
# variants
appName = set([f.split('.')[-1] for f in outputFiles])
if len(appName) != 1:
if options.application in appName:
appName = set([options.application])
elif app in appName:
appName = set([app])
else:
print(("Skipping %s because the application was not unique (found %s).") % (
source, appName), file=sys.stderr)
continue
app = next(iter(appName))
optionsFiles = []
configFiles = []
potentials = defaultdict(list)
source = os.path.realpath(source)
curDir = source
if curDir[-1] == os.path.sep:
curDir = os.path.dirname(curDir)
while True:
for f in os.listdir(curDir):
path = join(curDir, f)
if f not in potentials or os.path.isdir(path):
potentials[f].append(path)
if f == "options." + app:
optionsFiles.append(path)
config = join(curDir, "config." + app)
if curDir == join(SUMO_HOME, "tests") or curDir == os.path.dirname(curDir):
break
if os.path.exists(config):
configFiles.append(config)
curDir = os.path.dirname(curDir)
if not configFiles:
print("Config not found for %s." % source, file=sys.stderr)
continue
if target == "":
target = generateTargetName(
os.path.dirname(configFiles[-1]), source)
testPath = os.path.abspath(join(options.output, target))
if not os.path.exists(testPath):
os.makedirs(testPath)
net = None
skip = False
appOptions = []
for f in reversed(optionsFiles):
for o in open(f).read().split():
if skip:
skip = False
continue
if o == "--xml-validation" and options.skip_validation:
skip = True
continue
if o == "{CLEAR}":
appOptions = []
continue
appOptions.append(o)
if "=" in o:
o = o.split("=")[-1]
if o[-8:] == ".net.xml":
net = o
nameBase = "test"
if options.names:
nameBase = os.path.basename(target)
exclude = []
# gather copy_test_path exclusions
for config in configFiles:
for line in open(config):
entry = line.strip().split(':')
if entry and entry[0] == "test_data_ignore":
exclude.append(entry[1])
# copy test data from the tree
for config in configFiles:
for line in open(config):
entry = line.strip().split(':')
if entry and "copy_test_path" in entry[0] and entry[1] in potentials:
if "net" in app or not net or entry[1][-8:] != ".net.xml" or entry[1] == net:
toCopy = potentials[entry[1]][0]
if os.path.isdir(toCopy):
# copy from least specific to most specific
merge = entry[0] == "copy_test_path_merge"
for toCopy in reversed(potentials[entry[1]]):
copy_merge(
toCopy, join(testPath, os.path.basename(toCopy)), merge, exclude)
else:
shutil.copy2(toCopy, testPath)
if options.python_script:
if app == "netgen":
call = ['join(SUMO_HOME, "bin", "netgenerate")'] + ['"%s"' % a for a in appOptions]
elif app == "tools":
call = ['"python"'] + ['"%s"' % a for a in appOptions]
call[1] = 'join(SUMO_HOME, "%s")' % appOptions[0]
elif app == "complex":
call = ['"python"']
for o in appOptions:
if o.endswith(".py"):
call.insert(1, '"%s"' % os.path.join(".", os.path.basename(o)))
else:
call.append('"%s"' % o)
else:
call = ['join(SUMO_HOME, "bin", "%s")' % app] + ['"%s"' % a for a in appOptions]
prefix = os.path.commonprefix((testPath, os.path.abspath(pyBatch.name)))
up = os.path.abspath(pyBatch.name)[len(prefix):].count(os.sep) * "../"
pyBatch.write(' subprocess.Popen([%s], cwd=join(THIS_DIR, r"%s%s")),\n' %
(', '.join(call), up, testPath[len(prefix):]))
if options.skip_configuration:
continue
oldWorkDir = os.getcwd()
os.chdir(testPath)
if app in ["dfrouter", "duarouter", "jtrrouter", "marouter", "netconvert",
"netgen", "netgenerate", "od2trips", "polyconvert", "sumo", "activitygen"]:
appOptions += ['--save-configuration', '%s.%scfg' %
(nameBase, app[:4])]
if app == "netgen":
# binary is now called differently but app still has the old name
app = "netgenerate"
if options.verbose:
print(("calling %s for testPath '%s' with options '%s'") %
(checkBinary(app), testPath, " ".join(appOptions)))
subprocess.call([checkBinary(app)] + appOptions)
elif app == "tools":
if os.name == "posix" or options.file:
tool = join("$SUMO_HOME", appOptions[-1])
open(nameBase + ".sh", "w").write(tool + " " + " ".join(appOptions[:-1]))
if os.name != "posix" or options.file:
tool = join("%SUMO_HOME%", appOptions[-1])
open(nameBase + ".bat", "w").write(tool + " " + " ".join(appOptions[:-1]))
os.chdir(oldWorkDir)
if options.python_script:
pyBatch.write(']:\n if p.wait() != 0:\n sys.exit(1)\n')
if __name__ == "__main__":
main(get_options())