-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpreparetest.py
243 lines (188 loc) · 7.59 KB
/
preparetest.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
"""
<Author>
Cosmin Barsan
Edited to add an optional argument to also copy the repy tests by
Brent Couvrette on November 13, 2008.
Conrad Meyer, Thu Nov 26 2009: Move dynamic ports code from run_tests.py
to preparetest.py.
<Start Date>
October 3, 2008
<Description>
This script has been adapted from the bash script preparetest. The
script first erases all the files in the target folder, then copies
the necessary test files to it. Afterwards, the .mix files in the
target folder are run through the preprocessor. It is required that
the folder passed in as an argument to the script exists.
<Usage>
preparetest.py <target_folder> <-t>
if -t is specified, the repy tests will also be included, otherwise, they will not
<Notes>
This file is used as a library by trunk/www/deploy_state_transitions.py
If you make ANY changes to this file please let Ivan know so that the
other script can continue to function correctly. Thanks. (IB 01/19/09)
This file is also used directly by trunk/dist/make_base_installers.py. Also
let Zack know if any adaptions are made to this file so the base installers
can continue to be created correctly. See ticket #501 about removing or
adapting make_base_installer.py's dependence on this file. (Zack 7/2/09)
"""
import sys
import glob
import os
import stat
import random
import shutil
import subprocess
sys.path.insert(0, os.path.join(os.getcwd(), "repy", "tests"))
import testportfiller
sys.path = sys.path[1:]
#define a function to use for copying the files matching the file expression to the target folder
#file_expr may contain wildcards
#target must specify an existing directory with no wildcards
def copy_to_target(file_expr, target):
files_to_copy = glob.glob(file_expr)
for file_path in files_to_copy:
if os.path.isfile(file_path):
shutil.copyfile(file_path,target +"/"+os.path.basename(file_path))
#iterate through the .mix files in current folder and run them through the preprocessor
#script_path must specify the name of the preprocessor script
#the working directory must be set to the directory containing the preprocessor script prior to executing this function.
def process_mix(script_path):
mix_files = glob.glob("*.mix")
for file_path in mix_files:
#generate a .py file for the .mix file specified by file_path
processed_file_path = (os.path.basename(file_path)).replace(".mix",".py")
(theout, theerr, rc) = exec_command(sys.executable + " " + script_path + " " + file_path + " " + processed_file_path)
if rc != 0:
print theout.rstrip()
print "Error: could not preprocess", file_path, "Stopping."
sys.exit(1)
def exec_command(command):
# Windows does not like close_fds and we shouldn't need it so...
p = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
rc = p.wait()
# get the output and close
theout = p.stdout.read()
p.stdout.close()
# get the errput and close
theerr = p.stderr.read()
p.stderr.close()
# FreeBSD prints on stdout, when it gets a signal...
# I want to look at the last line. it ends in \n, so I use index -2
if len(theout.split('\n')) > 1 and theout.split('\n')[-2].strip() == 'Terminated':
# lose the last line
theout = '\n'.join(theout.split('\n')[:-2])
# however we threw away an extra '\n' if anything remains, let's replace it
if theout != '':
theout = theout + '\n'
# everyone but FreeBSD uses stderr
if theerr.strip() == 'Terminated':
theerr = ''
return (theout, theerr, rc)
helpstring = """python2 preparetest.py [-t] <foldername>"""
# Prints the given error message and the help string, then exits
def help_exit(errMsg):
print errMsg
print helpstring
sys.exit(1)
def setup_lind_tests(target):
""" This copies over serialize to be a py file."""
# need to copy over serialize.repy to be a python2 file so it can be imported
shutil.copyfile(target+'/serialize.repy',target +"/serialize.py")
def main():
repytest = False
RANDOMPORTS = False
force_install = False
clean_install = False
target_dir = None
for arg in sys.argv[1:]:
# -t means we will copy repy tests
if arg == '-t':
repytest = True
# The user wants us to fill in the port numbers randomly.
elif arg == '-randomports':
RANDOMPORTS = True
# Force install if target_dir does not exists
elif arg == '-f':
force_install = True
elif arg == '-clean':
clean_install = True
# Not a flag? Assume it's the target directory
else:
target_dir = arg
# We need a target dir. If one isn't found in argv, quit.
if target_dir is None:
help_exit("Please pass the target directory as a parameter.")
#store root directory
current_dir = os.getcwd()
# Make sure they gave us a valid directory
if not os.path.isdir(target_dir) and not force_install:
help_exit("given foldername is not a directory")
# Remove existing file
if os.path.isfile(target_dir):
os.remove(target_dir)
# Make target directory
if not os.path.exists(target_dir):
os.mkdir(target_dir)
if clean_install:
#set working directory to the test folder
os.chdir(target_dir)
files_to_remove = glob.glob("*")
#clean the test folder
for f in files_to_remove:
if os.path.isdir(f):
shutil.rmtree(f)
else:
os.remove(f)
#go back to root project directory
os.chdir(current_dir)
#now we copy the necessary files to the test folder
copy_to_target("repy/*", target_dir)
copy_to_target("nodemanager/*", target_dir)
copy_to_target("portability/*", target_dir)
copy_to_target("seattlelib/*", target_dir)
copy_to_target("seash/*", target_dir)
copy_to_target("shims/*", target_dir)
copy_to_target("fuse/lind_fuse.py", target_dir)
copy_to_target("softwareupdater/*", target_dir)
copy_to_target("autograder/nm_remote_api.mix", target_dir)
copy_to_target("keydaemon/*", target_dir)
copy_to_target("tools/*", target_dir)
# The license must be included in anything we distribute.
copy_to_target("LICENSE.TXT", target_dir)
if repytest:
# Only copy the tests if they were requested.
copy_to_target("repy/tests/restrictions.*", target_dir)
copy_to_target("utf/*.py", target_dir)
copy_to_target("repy/testsV2/*", target_dir)
#copy_to_target("nodemanager/tests/*", target_dir)
#copy_to_target("portability/tests/*", target_dir)
#copy_to_target("seash/tests/*", target_dir)
copy_to_target("seattlelib/tests/*", target_dir)
#copy_to_target("keydaemon/tests/*", target_dir)
copy_to_target("dist/update_crontab_entry.py", target_dir)
copy_to_target("shims/tests/*", target_dir)
copy_to_target("fuse/test_fuse.sh", target_dir)
# The web server is used in the software updater tests
#copy_to_target("assignments/webserver/*", target_dir)
#copy_to_target("softwareupdater/test/*", target_dir)
#insatll lind test files
setup_lind_tests(target_dir)
#set working directory to the test folder
os.chdir(target_dir)
#call the process_mix function to process all mix files in the target directory
process_mix("repypp.py")
# set up dynamic port information
if RANDOMPORTS:
portstouseasints = random.sample(range(52000, 53000), 3)
portstouseasstr = []
for portint in portstouseasints:
portstouseasstr.append(str(portint))
print "Randomly chosen ports: ",portstouseasstr
testportfiller.replace_ports(portstouseasstr, portstouseasstr)
else:
# if this isn't specified, just use the default ports...
testportfiller.replace_ports(['12345','12346','12347'], ['12345','12346','12347'])
#go back to root project directory
os.chdir(current_dir)
if __name__ == '__main__':
main()