3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 from __future__
import absolute_import
, print_function
, with_statement
10 from optparse
import OptionParser
11 from os
import environ
as env
18 import mozrunner
.utils
20 SCRIPT_DIR
= os
.path
.abspath(os
.path
.realpath(os
.path
.dirname(__file__
)))
22 # Export directory js/src for tests that need it.
23 env
["CPP_UNIT_TESTS_DIR_JS_SRC"] = os
.path
.abspath(os
.path
.join(SCRIPT_DIR
, "..", ".."))
26 class CPPUnitTests(object):
27 # Time (seconds) to wait for test process to complete
28 TEST_PROC_TIMEOUT
= 900
29 # Time (seconds) in which process will be killed if it produces no output.
30 TEST_PROC_NO_OUTPUT_TIMEOUT
= 300
33 self
, prog
, env
, symbols_path
=None, interactive
=False, timeout_factor
=1
36 Run a single C++ unit test program.
39 * prog: The path to the test program to run.
40 * env: The environment to use for running the program.
41 * symbols_path: A path to a directory containing Breakpad-formatted
42 symbol files for producing stack traces on crash.
43 * timeout_factor: An optional test-specific timeout multiplier.
45 Return True if the program exits with a zero status, False otherwise.
47 basename
= os
.path
.basename(prog
)
48 self
.log
.test_start(basename
)
49 with mozfile
.TemporaryDirectory() as tempdir
:
51 # For tests run locally, via mach, print output directly
52 proc
= mozprocess
.ProcessHandler(
57 universal_newlines
=True,
60 proc
= mozprocess
.ProcessHandler(
65 processOutputLine
=lambda _
: None,
66 universal_newlines
=True,
68 # TODO: After bug 811320 is fixed, don't let .run() kill the process,
69 # instead use a timeout in .wait() and then kill to get a stack.
70 test_timeout
= CPPUnitTests
.TEST_PROC_TIMEOUT
* timeout_factor
73 outputTimeout
=CPPUnitTests
.TEST_PROC_NO_OUTPUT_TIMEOUT
,
78 procOutput
= [self
.fix_stack(l
) for l
in proc
.output
]
80 procOutput
= proc
.output
82 output
= "\n%s" % "\n".join(procOutput
)
83 self
.log
.process_output(proc
.pid
, output
, command
=[prog
])
85 message
= "timed out after %d seconds" % CPPUnitTests
.TEST_PROC_TIMEOUT
87 basename
, status
="TIMEOUT", expected
="PASS", message
=message
90 if mozcrash
.check_for_crashes(tempdir
, symbols_path
, test_name
=basename
):
91 self
.log
.test_end(basename
, status
="CRASH", expected
="PASS")
93 result
= proc
.proc
.returncode
== 0
99 message
=("test failed with return code %d" % proc
.proc
.returncode
),
102 self
.log
.test_end(basename
, status
="PASS", expected
="PASS")
105 def build_core_environment(self
, env
, enable_webrender
):
107 Add environment variables likely to be used across all platforms, including remote systems.
109 env
["MOZ_XRE_DIR"] = self
.xre_path
110 # TODO: switch this to just abort once all C++ unit tests have
111 # been fixed to enable crash reporting
112 env
["XPCOM_DEBUG_BREAK"] = "stack-and-abort"
113 env
["MOZ_CRASHREPORTER_NO_REPORT"] = "1"
114 env
["MOZ_CRASHREPORTER"] = "1"
117 env
["MOZ_WEBRENDER"] = "1"
118 env
["MOZ_ACCELERATED"] = "1"
120 env
["MOZ_WEBRENDER"] = "0"
124 def build_environment(self
, enable_webrender
=False):
126 Create and return a dictionary of all the appropriate env variables and values.
127 On a remote system, we overload this to set different values and are missing things
128 like os.environ and PATH.
130 if not os
.path
.isdir(self
.xre_path
):
131 raise Exception("xre_path does not exist: %s", self
.xre_path
)
132 env
= dict(os
.environ
)
133 env
= self
.build_core_environment(env
, enable_webrender
)
135 libpath
= self
.xre_path
136 if mozinfo
.os
== "linux":
137 pathvar
= "LD_LIBRARY_PATH"
138 elif mozinfo
.os
== "mac":
139 applibpath
= os
.path
.join(os
.path
.dirname(libpath
), "MacOS")
140 if os
.path
.exists(applibpath
):
141 # Set the library load path to Contents/MacOS if we're run from
144 pathvar
= "DYLD_LIBRARY_PATH"
145 elif mozinfo
.os
== "win":
149 env
[pathvar
] = "%s%s%s" % (libpath
, os
.pathsep
, env
[pathvar
])
151 env
[pathvar
] = libpath
153 if mozinfo
.info
["asan"]:
154 # Use llvm-symbolizer for ASan if available/required
155 llvmsym
= os
.path
.join(
156 self
.xre_path
, "llvm-symbolizer" + mozinfo
.info
["bin_suffix"]
158 if os
.path
.isfile(llvmsym
):
159 env
["ASAN_SYMBOLIZER_PATH"] = llvmsym
160 self
.log
.info("ASan using symbolizer at %s" % llvmsym
)
162 self
.log
.info("Failed to find ASan symbolizer at %s" % llvmsym
)
164 # dom/media/webrtc/transport tests statically link in NSS, which
165 # causes ODR violations. See bug 1215679.
166 assert "ASAN_OPTIONS" not in env
167 env
["ASAN_OPTIONS"] = "detect_leaks=0:detect_odr_violation=0"
177 enable_webrender
=False,
181 Run a set of C++ unit test programs.
184 * programs: An iterable containing (test path, test timeout factor) tuples
185 * xre_path: A path to a directory containing a XUL Runtime Environment.
186 * symbols_path: A path to a directory containing Breakpad-formatted
187 symbol files for producing stack traces on crash.
188 * utility_path: A path to a directory containing utility programs
191 Returns True if all test programs exited with a zero status, False
194 self
.xre_path
= xre_path
195 self
.log
= mozlog
.get_default_logger()
197 self
.fix_stack
= mozrunner
.utils
.get_stack_fixer_function(
198 utility_path
, symbols_path
200 self
.log
.suite_start(programs
, name
="cppunittest")
201 env
= self
.build_environment(enable_webrender
)
204 for prog
in programs
:
206 timeout_factor
= prog
[1]
207 single_result
= self
.run_one_test(
208 test_path
, env
, symbols_path
, interactive
, timeout_factor
216 # Mozharness-parseable summary formatting.
217 self
.log
.info("Result summary:")
218 self
.log
.info("cppunittests INFO | Passed: %d" % pass_count
)
219 self
.log
.info("cppunittests INFO | Failed: %d" % fail_count
)
220 return fail_count
== 0
223 class CPPUnittestOptions(OptionParser
):
225 OptionParser
.__init
__(self
)
232 help="absolute path to directory containing XRE (probably xulrunner)",
240 help="absolute path to directory containing breakpad symbols, or "
241 "the URL of a zip file containing symbols",
247 dest
="manifest_path",
249 help="path to test manifest, if different from the path to test binaries",
257 help="path to directory containing utility programs",
260 "--enable-webrender",
262 dest
="enable_webrender",
264 help="Enable the WebRender compositor in Gecko",
268 def extract_unittests_from_args(args
, environ
, manifest_path
):
269 """Extract unittests from args, expanding directories as needed"""
270 mp
= manifestparser
.TestManifest(strict
=True)
275 mp
.read(manifest_path
)
276 binary_path
= os
.path
.abspath(args
[0])
281 mp
.read(os
.path
.join(p
, "cppunittest.ini"))
283 files
= [os
.path
.abspath(os
.path
.join(p
, x
)) for x
in os
.listdir(p
)]
285 (f
, 1) for f
in files
if os
.access(f
, os
.R_OK | os
.X_OK
)
288 tests
.append((os
.path
.abspath(p
), 1))
290 # we skip the existence check here because not all tests are built
291 # for all platforms (and it will fail on Windows anyway)
292 active_tests
= mp
.active_tests(exists
=False, disabled
=False, **environ
)
293 suffix
= ".exe" if mozinfo
.isWin
else ""
298 os
.path
.join(binary_path
, test
["relpath"] + suffix
),
299 int(test
.get("requesttimeoutfactor", 1)),
301 for test
in active_tests
307 (test
["path"] + suffix
, int(test
.get("requesttimeoutfactor", 1)))
308 for test
in active_tests
312 # skip and warn for any tests in the manifest that are not found
314 log
= mozlog
.get_default_logger()
316 if os
.path
.isfile(test
[0]):
317 final_tests
.append(test
)
319 log
.warning("test file not found: %s - skipped" % test
[0])
324 def update_mozinfo():
325 """walk up directories to find mozinfo.json update the info"""
328 while path
!= os
.path
.expanduser("~"):
332 path
= os
.path
.split(path
)[0]
333 mozinfo
.find_and_update_from_json(*dirs
)
336 def run_test_harness(options
, args
):
338 progs
= extract_unittests_from_args(args
, mozinfo
.info
, options
.manifest_path
)
339 options
.xre_path
= os
.path
.abspath(options
.xre_path
)
340 options
.utility_path
= os
.path
.abspath(options
.utility_path
)
341 tester
= CPPUnitTests()
342 result
= tester
.run_tests(
345 options
.symbols_path
,
346 options
.utility_path
,
347 options
.enable_webrender
,
354 parser
= CPPUnittestOptions()
355 mozlog
.commandline
.add_logging_group(parser
)
356 options
, args
= parser
.parse_args()
359 """Usage: %s <test binary> [<test binary>...]""" % sys
.argv
[0],
363 if not options
.xre_path
:
364 print("""Error: --xre-path is required""", file=sys
.stderr
)
366 if options
.manifest_path
and len(args
) > 1:
368 "Error: multiple arguments not supported with --test-manifest",
372 log
= mozlog
.commandline
.setup_logging(
373 "cppunittests", options
, {"tbpl": sys
.stdout
}
376 result
= run_test_harness(options
, args
)
377 except Exception as e
:
381 sys
.exit(0 if result
else 1)
384 if __name__
== "__main__":