forked from dedupv1/dedupv1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdedupv1_test
executable file
·316 lines (282 loc) · 11.6 KB
/
dedupv1_test
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
#!/usr/bin/python
#
# dedupv1 - iSCSI based Deduplication System for Linux
#
# (C) 2008 Dirk Meister
# (C) 2009 - 2011, Dirk Meister, Paderborn Center for Parallel Computing
# (C) 2012 Dirk Meister, Johannes Gutenberg University Mainz
#
# This file is part of dedupv1.
#
# dedupv1 is free software: you can redistribute it and/or modify it under the terms of the
# GNU General Public License as published by the Free Software Foundation, either version 3
# of the License, or (at your option) any later version.
#
# dedupv1 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with dedupv1. If not, see http://www.gnu.org/licenses/.
#
import sys
import os
import subprocess
import platform
import shutil
import json
def get_valgrind_version():
""" returns the version of valgrind or None
"""
try:
output = subprocess.check_output(["valgrind", "--version"])
version_str = output.split("-")[-1]
return [int(v) for v in version_str.split(".")]
except:
return None
def is_higher_version(v, reference):
for (a, b) in zip(v, reference):
if a > b:
return True
if a < b:
return False
# same version
return True
class TestSuite:
def __init__(self, type, testmode, options, dir, work_dir = None):
self.type = type
self.testmode = testmode.upper()
self.options = options
self.output = options.output
self.textoutput = options.text_output
self.dir = dir
self.work_dir = work_dir
def get_valgrind_prefix(self):
suppression_file = "../../scripts/valgrind/dedupv1.supp"
version = get_valgrind_version()
has_soname_synonyms = version is not None and is_higher_version(version, (3,8,1))
prefix = "valgrind"
if has_soname_synonyms:
prefix = prefix + " --soname-synonyms=somalloc=*tcmalloc*"
suppression_file = "../../scripts/valgrind/dedupv1.supp"
prefix = prefix + " --suppressions=%s" % (suppression_file)
return prefix
def get_prefix_env_for_testmode(self):
suppression_file = "../../scripts/valgrind/dedupv1.supp"
prefix = ""
env = os.environ.copy()
if self.testmode == "VALGRIND-XML":
valgrind_xml_output_file = os.path.normpath(os.path.join("../../",
self.output,
"valgrind/%s-valgrind.xml" % (self.type)))
valgrind_output_file = os.path.normpath(os.path.join("../../",
self.output,
"valgrind/%s-valgrind.txt" % (self.type)))
prefix = "%s -q --leak-check=full --xml=yes --xml-file=%s --log-file=%s" % (
self.get_valgrind_prefix(), valgrind_xml_output_file, valgrind_output_file)
elif self.testmode == "VALGRIND":
prefix = "%s --leak-check=full --show-reachable=yes --malloc-fill=AA --free-fill=BB" % (
self.get_valgrind_prefix())
elif self.testmode == "CACHEGRIND":
prefix = "%s --tool=cachegrind" % (self.get_valgrind_prefix())
elif self.testmode == "PTRCHECK":
prefix = "%s--tool=exp-ptrcheck" % (self.get_valgrind_prefix())
elif self.testmode == "HELGRIND":
prefix = "%s --tool=helgrind" % (self.get_valgrind_prefix())
elif self.testmode == "VALGRIND-SUPP":
prefix = "%s --leak-check=full --show-reachable=yes --gen-suppressions=yes" % (
self.get_valgrind_prefix())
elif self.testmode == "GDB":
prefix = "gdb --args"
elif self.testmode == "DUMA":
env["LD_PRELOAD"] = "/opt/dedupv1/lib/libduma.so"
env["DUMA_DISABLE_BANNER"] = "1"
env["DUMA_REPORT_ALL_LEAKS"] = "1"
elif self.testmode == "COV":
pass
elif self.testmode == "MEMPROFILE":
env["HEAPPROFILE"] = "heapprofile"
elif self.testmode == "MEMCHECK":
env["HEAPCHECK"] = "minimal"
elif self.testmode == "CPUPROFILE":
env["CPUPROFILE"] = "cpuprofile"
elif self.testmode == "":
pass # testmode not set
else:
raise Exception("Illegal testmode %s" % self.testmode)
return (prefix, env)
def get_app_path(self):
return os.path.join(self.get_build_path(),
"%s_test/%s_test" % (self.type, self.type))
def get_build_path(self):
build_path = "../../build/debug"
if self.options.release:
build_path = build_path.replace("debug", "release")
elif self.testmode == "COV":
build_path = build_path.replace("debug", "debug-coverage")
return build_path
def check_work_dir(self):
orig_work_dir = os.path.join(self.dir, "work")
if self.work_dir:
if not os.path.exists(self.work_dir):
os.mkdir(self.work_dir)
if os.path.exists(orig_work_dir):
if os.path.islink(orig_work_dir):
os.unlink(orig_work_dir)
else:
shutil.rmtree(orig_work_dir)
os.symlink(self.work_dir, orig_work_dir)
else:
if os.path.lexists(orig_work_dir):
if os.path.islink(orig_work_dir):
os.unlink(orig_work_dir)
if os.path.exists(orig_work_dir):
shutil.rmtree(orig_work_dir)
os.mkdir(orig_work_dir)
def check_app_for_custom_mallocs(self, app_path):
"""
if a valgrind mode is used with an old valgrind version, there should be no other custom malloc
"""
if self.testmode.find("VALGRIND") >= 0:
version = get_valgrind_version()
if version is None:
raise Exception("Cannot determine valgrind version")
if is_higher_version(version, (3,8,1)):
return
malloc_libs = set(["libtcmalloc", "libtbbmalloc"])
ldd_output = subprocess.check_output(["/usr/bin/ldd", app_path],
cwd = self.dir)
for malloc_lib in malloc_libs:
if ldd_output.find(malloc_lib) >= 0:
raise Exception("Unit test binary for type %s contains malloc library: %s" % (self.type, malloc_lib))
def execute(self, argv):
(prefix, env) = self.get_prefix_env_for_testmode()
app = self.get_app_path()
self.check_work_dir()
self.check_app_for_custom_mallocs(app)
# TODO (dmeister): Really still needed?
if platform.uname()[0] == "Darwin":
env["DYLD_LIBRARY_PATH"] = env.get("DYLD_LIBRARY_PATH","") + ":/opt/dedupv1/lib"
else:
env["LD_LIBRARY_PATH"] = ":".join([env.get("LD_LIBRARY_PATH", ""),
os.path.join(self.get_build_path(), "dedupv1_base_lib"),
os.path.join(self.get_build_path(), "dedupv1_test_util_lib"),
os.path.join(self.get_build_path(), "dedupv1_core_lib"),
os.path.join(self.get_build_path(), "dedupv1d_lib")])
if self.testmode == "COV":
self.prepare_cov()
if not self.textoutput:
output_file = os.path.normpath(os.path.join("../../",
self.output,
"test/%s.xml" % (self.type)))
command = " ".join([prefix, app, '--gtest_output="xml:%s"' % (
output_file)] + argv)
else:
command = " ".join([prefix, app] + argv)
print "Running suite", self.type
rc = run(command, cwd = self.dir, env = env)
if self.testmode == "COV":
self.gather_cov()
return rc == 0
def prepare_cov(self):
run("lcov --zerocounters --directory build/debug-coverage/%s_test/" % (
self.type))
def gather_cov(self):
coverage_dir = os.path.normpath(os.path.join(self.output, "coverage"))
if not os.path.exists(coverage_dir):
os.mkdir(coverage_dir)
if not self.textoutput:
output_file = os.path.join(coverage_dir, "%s_cov.xml" % (self.type))
run("scripts/gcovr -r %s --xml | python filter_path.py --stdin > %s" % (
os.path.abspath("."), output_file))
else:
output_file = os.path.join(coverage_dir, "%s_cov.txt" % (self.type))
run("scripts/gcovr -r %s | python filter_path.py --stdin > %s" % (
os.path.abspath("."), output_file))
def run(command, *args, **kwargs):
def build_command():
command_args = []
command_args.extend(args)
command_args.extend(["%s=%s" % (k, kwargs[k]) for k in kwargs])
command_args = [str(a) for a in command_args]
c = '%s %s' % (command, " ".join(command_args))
return c
cwd = kwargs.get("cwd")
if cwd:
del kwargs["cwd"]
env = kwargs.get("env")
if env:
del kwargs["env"]
c = build_command()
p = subprocess.Popen(c, shell = True, cwd = cwd, env = env)
p.wait()
return p.returncode
test_type_shorthand = {
"base": "dedupv1_base",
"core": "dedupv1_core",
"contrib": "dedupv1_contrib"}
test_type_dir = {"dedupv1_base": "base/unit_test",
"dedupv1_core": "core/unit_test",
"dedupv1d": "dedupv1d/unit_test",
"dedupv1_contrib": "contrib/unit_test"}
def check_configuration_file(options, configuration_file):
if not os.path.exists(configuration_file):
# Configuration files doesn't exist
return
configuration = json.load(open(configuration_file))
if options.temp_dir is None and "temp dir" in configuration:
options.temp_dir = configuration["temp dir"]
print "Using temp dir", options.temp_dir, "(from ~/.dedupv1_test)"
def run_tests():
args = [arg for arg in sys.argv[1:] if not arg.startswith("--gtest")]
gtest_args = [arg for arg in sys.argv[1:] if arg.startswith("--gtest")]
import optparse
parser = optparse.OptionParser()
parser.add_option("--output",
dest="output",
default="./docs")
parser.add_option("--mode",
dest="mode",
default="")
parser.add_option("--release",
dest="release",
action="store_true",
default=False)
parser.add_option("--text",
dest="text_output",
action="store_true",
default=False)
parser.add_option("--temp_dir",
dest="temp_dir",
default=None)
(options, argv) = parser.parse_args(args)
check_configuration_file(options,
os.path.expanduser("~/.dedupv1_test"))
failed = False
try:
if len(argv) == 0:
print "No test type given"
sys.exit(1)
elif len(argv) == 1 and argv[0] == "all":
argv = ["dedupv1_base", "dedupv1_core", "dedupv1d", "dedupv1_contrib"]
for type in argv:
type = test_type_shorthand.get(type, type)
if not type in test_type_dir:
print "Illegal test type", type
sys.exit(1)
dir = test_type_dir[type]
ts = TestSuite(type = type,
testmode = options.mode.upper(),
options = options,
dir = dir,
work_dir = options.temp_dir)
if not ts.execute(gtest_args):
failed = True
if failed:
sys.exit(1)
except KeyboardInterrupt:
pass
except Exception as e:
print >> sys.stderr, str(e)
sys.exit(1)
if __name__ == "__main__":
run_tests()