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
|
#!/usr/bin/env python
# **********************************************************************
#
# Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
#
# This copy of Ice is licensed to you under the terms described in the
# ICE_LICENSE file included in this distribution.
#
# **********************************************************************
import os, sys, re, getopt
for toplevel in [".", "..", "../..", "../../..", "../../../.."]:
toplevel = os.path.normpath(toplevel)
if os.path.exists(os.path.join(toplevel, "config", "TestUtil.py")):
break
else:
raise "can't find toplevel directory!"
sys.path.append(os.path.join(toplevel, "config"))
import TestUtil
def runTests(args, tests, num = 0):
#
# Run each of the tests.
#
for i in tests:
i = os.path.normpath(i)
dir = os.path.join(toplevel, TestUtil.getDefaultMapping(), "test", i)
print
if num > 0:
print "[" + str(num) + "]",
print "*** running tests in " + dir,
print
if TestUtil.isWin9x():
status = os.system("python " + os.path.join(dir, "run.py " + args))
else:
status = os.system(os.path.join(dir, "run.py " + args))
if status:
if(num > 0):
print "[" + str(num) + "]",
print "test in " + dir + " failed with exit status", status,
sys.exit(status)
#
# List of all basic tests.
#
tests = [
"Ice/proxy",
"Ice/operations",
"Ice/exceptions",
"Ice/inheritance",
"Ice/binding",
"Ice/facets",
"Ice/objects",
"Ice/slicing/exceptions",
"Ice/slicing/objects",
"Slice/keyword",
]
def usage():
print "usage: %s " % (sys.argv[0])
print " --all Run all permutations of the tests."
print " --start=<regex> Start running the tests at the given test."
print " --start-after=<regex> Start running the tests after the given test."
print " --loop Run the tests in a loop."
print " --filter=<regex> Run all the tests that match the given regex."
print " --rfilter=<regex> Run all the tests that do not match the given regex."
print " --debug Display debugging information on each test."
print " --protocol=tcp|ssl Run with the given protocol."
print " --compress Run the tests with protocol compression."
print " --host=host Set --Ice.Default.Host=<host>."
print " --threadPerConnection Run with thread-per-connection concurrency model."
sys.exit(2)
try:
opts, args = getopt.getopt(sys.argv[1:], "lr:R:",
["start=", "start-after=", "filter=", "rfilter=", "all", "loop", "debug", "protocol=",
"compress", "host=", "threadPerConnection"])
except getopt.GetoptError:
usage()
# Extra args cause a usage error.
if args:
usage()
def index(l, re):
"""Find the index of the first item in the list that matches the given re"""
for i in range(0, len(l)):
if re.search(l[i]):
return i
return -1
# Process the command line args.
loop = False
arg = ""
all = False
for o, a in opts:
if o in ("-l", "--loop"):
loop = True
elif o in ("-r", "-R", "--filter", '--rfilter'):
regexp = re.compile(a)
if o in ("--rfilter", "-R"):
tests = [ x for x in tests if not regexp.search(x) ]
else:
tests = [ x for x in tests if regexp.search(x) ]
elif o == "--all" :
all = True
elif o in ( "--protocol", "--host", "--debug", "--compress", "--threadPerConnection" ):
if o == "--protocol":
if a not in ( "ssl", "tcp"):
usage()
arg += " " + o
if len(a) > 0:
arg += " " + a
elif o in ('--start', "--start-after"):
start = index(tests, re.compile(a))
if start == -1:
print "test %s not found. no tests to run" % (a)
sys.exit(2)
if o == "--start-after":
start += 1
tests = tests[start:]
args = []
if all and len(arg) > 0:
usage()
if all:
for protocol in ["ssl", "tcp"]:
for compress in [0, 1]:
for threadPerConnection in [0, 1]:
arg = ""
if compress:
arg += "--compress"
if threadPerConnection:
arg += " --threadPerConnection"
arg += " --protocol %s" % (protocol)
args.append(arg)
else:
args.append(arg)
# Run the tests.
if loop:
num = 1
while 1:
for arg in args:
runTests(arg, tests, num)
num += 1
else:
for arg in args:
runTests(arg, tests)
|