Add Apps.AppListSearchQueryLength UMA histogram.
[chromium-blink-merge.git] / build / android / buildbot / bb_device_steps.py
blob53646e366eebca9a0a7c4d6f382c09a02b4510ee
1 #!/usr/bin/env python
2 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
6 import collections
7 import glob
8 import hashlib
9 import json
10 import os
11 import random
12 import re
13 import shutil
14 import sys
16 import bb_utils
17 import bb_annotations
19 sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
20 import provision_devices
21 from pylib import android_commands
22 from pylib import constants
23 from pylib.device import device_utils
24 from pylib.gtest import gtest_config
26 CHROME_SRC_DIR = bb_utils.CHROME_SRC
27 DIR_BUILD_ROOT = os.path.dirname(CHROME_SRC_DIR)
28 CHROME_OUT_DIR = bb_utils.CHROME_OUT_DIR
29 BLINK_SCRIPTS_DIR = 'third_party/WebKit/Tools/Scripts'
31 SLAVE_SCRIPTS_DIR = os.path.join(bb_utils.BB_BUILD_DIR, 'scripts', 'slave')
32 LOGCAT_DIR = os.path.join(bb_utils.CHROME_OUT_DIR, 'logcat')
33 GS_URL = 'https://storage.googleapis.com'
34 GS_AUTH_URL = 'https://storage.cloud.google.com'
36 # Describes an instrumation test suite:
37 # test: Name of test we're running.
38 # apk: apk to be installed.
39 # apk_package: package for the apk to be installed.
40 # test_apk: apk to run tests on.
41 # test_data: data folder in format destination:source.
42 # host_driven_root: The host-driven test root directory.
43 # annotation: Annotation of the tests to include.
44 # exclude_annotation: The annotation of the tests to exclude.
45 I_TEST = collections.namedtuple('InstrumentationTest', [
46 'name', 'apk', 'apk_package', 'test_apk', 'test_data', 'isolate_file_path',
47 'host_driven_root', 'annotation', 'exclude_annotation', 'extra_flags'])
50 def SrcPath(*path):
51 return os.path.join(CHROME_SRC_DIR, *path)
54 def I(name, apk, apk_package, test_apk, test_data, isolate_file_path=None,
55 host_driven_root=None, annotation=None, exclude_annotation=None,
56 extra_flags=None):
57 return I_TEST(name, apk, apk_package, test_apk, test_data, isolate_file_path,
58 host_driven_root, annotation, exclude_annotation, extra_flags)
60 INSTRUMENTATION_TESTS = dict((suite.name, suite) for suite in [
61 I('ContentShell',
62 'ContentShell.apk',
63 'org.chromium.content_shell_apk',
64 'ContentShellTest',
65 'content:content/test/data/android/device_files',
66 isolate_file_path='content/content_shell_test_apk.isolate'),
67 I('ChromeShell',
68 'ChromeShell.apk',
69 'org.chromium.chrome.shell',
70 'ChromeShellTest',
71 'chrome:chrome/test/data/android/device_files',
72 isolate_file_path='chrome/chrome_shell_test_apk.isolate',
73 host_driven_root=constants.CHROME_SHELL_HOST_DRIVEN_DIR),
74 I('AndroidWebView',
75 'AndroidWebView.apk',
76 'org.chromium.android_webview.shell',
77 'AndroidWebViewTest',
78 'webview:android_webview/test/data/device_files',
79 isolate_file_path='android_webview/android_webview_test_apk.isolate'),
80 I('ChromeSyncShell',
81 'ChromeSyncShell.apk',
82 'org.chromium.chrome.browser.sync',
83 'ChromeSyncShellTest',
84 None),
87 InstallablePackage = collections.namedtuple('InstallablePackage', [
88 'name', 'apk', 'apk_package'])
90 INSTALLABLE_PACKAGES = dict((package.name, package) for package in (
91 [InstallablePackage(i.name, i.apk, i.apk_package)
92 for i in INSTRUMENTATION_TESTS.itervalues()] +
93 [InstallablePackage('ChromeDriverWebViewShell',
94 'ChromeDriverWebViewShell.apk',
95 'org.chromium.chromedriver_webview_shell')]))
97 VALID_TESTS = set([
98 'base_junit_tests',
99 'chromedriver',
100 'chrome_proxy',
101 'components_browsertests',
102 'gfx_unittests',
103 'gpu',
104 'python_unittests',
105 'telemetry_unittests',
106 'telemetry_perf_unittests',
107 'ui',
108 'unit',
109 'webkit',
110 'webkit_layout'
113 RunCmd = bb_utils.RunCmd
116 def _GetRevision(options):
117 """Get the SVN revision number.
119 Args:
120 options: options object.
122 Returns:
123 The revision number.
125 revision = options.build_properties.get('got_revision')
126 if not revision:
127 revision = options.build_properties.get('revision', 'testing')
128 return revision
131 def _RunTest(options, cmd, suite):
132 """Run test command with runtest.py.
134 Args:
135 options: options object.
136 cmd: the command to run.
137 suite: test name.
139 property_args = bb_utils.EncodeProperties(options)
140 args = [os.path.join(SLAVE_SCRIPTS_DIR, 'runtest.py')] + property_args
141 args += ['--test-platform', 'android']
142 if options.factory_properties.get('generate_gtest_json'):
143 args.append('--generate-json-file')
144 args += ['-o', 'gtest-results/%s' % suite,
145 '--annotate', 'gtest',
146 '--build-number', str(options.build_properties.get('buildnumber',
147 '')),
148 '--builder-name', options.build_properties.get('buildername', '')]
149 if options.target == 'Release':
150 args += ['--target', 'Release']
151 else:
152 args += ['--target', 'Debug']
153 if options.flakiness_server:
154 args += ['--flakiness-dashboard-server=%s' %
155 options.flakiness_server]
156 args += cmd
157 RunCmd(args, cwd=DIR_BUILD_ROOT)
160 def RunTestSuites(options, suites, suites_options=None):
161 """Manages an invocation of test_runner.py for gtests.
163 Args:
164 options: options object.
165 suites: List of suite names to run.
166 suites_options: Command line options dictionary for particular suites.
167 For example,
168 {'content_browsertests', ['--num_retries=1', '--release']}
169 will add the options only to content_browsertests.
172 if not suites_options:
173 suites_options = {}
175 args = ['--verbose']
176 if options.target == 'Release':
177 args.append('--release')
178 if options.asan:
179 args.append('--tool=asan')
180 if options.gtest_filter:
181 args.append('--gtest-filter=%s' % options.gtest_filter)
183 for suite in suites:
184 bb_annotations.PrintNamedStep(suite)
185 cmd = [suite] + args
186 cmd += suites_options.get(suite, [])
187 if suite == 'content_browsertests' or suite == 'components_browsertests':
188 cmd.append('--num_retries=1')
189 _RunTest(options, cmd, suite)
192 def RunJunitSuite(suite):
193 bb_annotations.PrintNamedStep(suite)
194 RunCmd(['build/android/test_runner.py', 'junit', '-s', suite])
197 def RunChromeDriverTests(options):
198 """Run all the steps for running chromedriver tests."""
199 bb_annotations.PrintNamedStep('chromedriver_annotation')
200 RunCmd(['chrome/test/chromedriver/run_buildbot_steps.py',
201 '--android-packages=%s,%s,%s,%s' %
202 ('chrome_shell',
203 'chrome_stable',
204 'chrome_beta',
205 'chromedriver_webview_shell'),
206 '--revision=%s' % _GetRevision(options),
207 '--update-log'])
209 def RunChromeProxyTests(options):
210 """Run the chrome_proxy tests.
212 Args:
213 options: options object.
215 InstallApk(options, INSTRUMENTATION_TESTS['ChromeShell'], False)
216 args = ['--browser', 'android-chrome-shell']
217 devices = android_commands.GetAttachedDevices()
218 if devices:
219 args = args + ['--device', devices[0]]
220 bb_annotations.PrintNamedStep('chrome_proxy')
221 RunCmd(['tools/chrome_proxy/run_tests'] + args)
224 def RunTelemetryTests(options, step_name, run_tests_path):
225 """Runs either telemetry_perf_unittests or telemetry_unittests.
227 Args:
228 options: options object.
229 step_name: either 'telemetry_unittests' or 'telemetry_perf_unittests'
230 run_tests_path: path to run_tests script (tools/perf/run_tests for
231 perf_unittests and tools/telemetry/run_tests for
232 telemetry_unittests)
234 InstallApk(options, INSTRUMENTATION_TESTS['ChromeShell'], False)
235 args = ['--browser', 'android-chrome-shell']
236 devices = android_commands.GetAttachedDevices()
237 if devices:
238 args = args + ['--device', 'android']
239 bb_annotations.PrintNamedStep(step_name)
240 RunCmd([run_tests_path] + args)
243 def InstallApk(options, test, print_step=False):
244 """Install an apk to all phones.
246 Args:
247 options: options object
248 test: An I_TEST namedtuple
249 print_step: Print a buildbot step
251 if print_step:
252 bb_annotations.PrintNamedStep('install_%s' % test.name.lower())
254 args = ['--apk_package', test.apk_package]
255 if options.target == 'Release':
256 args.append('--release')
257 args.append(test.apk)
259 RunCmd(['build/android/adb_install_apk.py'] + args, halt_on_failure=True)
262 def RunInstrumentationSuite(options, test, flunk_on_failure=True,
263 python_only=False, official_build=False):
264 """Manages an invocation of test_runner.py for instrumentation tests.
266 Args:
267 options: options object
268 test: An I_TEST namedtuple
269 flunk_on_failure: Flunk the step if tests fail.
270 Python: Run only host driven Python tests.
271 official_build: Run official-build tests.
273 bb_annotations.PrintNamedStep('%s_instrumentation_tests' % test.name.lower())
275 if test.apk:
276 InstallApk(options, test)
277 args = ['--test-apk', test.test_apk, '--verbose']
278 if test.test_data:
279 args.extend(['--test_data', test.test_data])
280 if options.target == 'Release':
281 args.append('--release')
282 if options.asan:
283 args.append('--tool=asan')
284 if options.flakiness_server:
285 args.append('--flakiness-dashboard-server=%s' %
286 options.flakiness_server)
287 if options.coverage_bucket:
288 args.append('--coverage-dir=%s' % options.coverage_dir)
289 if test.isolate_file_path:
290 args.append('--isolate-file-path=%s' % test.isolate_file_path)
291 if test.host_driven_root:
292 args.append('--host-driven-root=%s' % test.host_driven_root)
293 if test.annotation:
294 args.extend(['-A', test.annotation])
295 if test.exclude_annotation:
296 args.extend(['-E', test.exclude_annotation])
297 if test.extra_flags:
298 args.extend(test.extra_flags)
299 if python_only:
300 args.append('-p')
301 if official_build:
302 # The option needs to be assigned 'True' as it does not have an action
303 # associated with it.
304 args.append('--official-build')
306 RunCmd(['build/android/test_runner.py', 'instrumentation'] + args,
307 flunk_on_failure=flunk_on_failure)
310 def RunWebkitLint():
311 """Lint WebKit's TestExpectation files."""
312 bb_annotations.PrintNamedStep('webkit_lint')
313 RunCmd([SrcPath(os.path.join(BLINK_SCRIPTS_DIR, 'lint-test-expectations'))])
316 def RunWebkitLayoutTests(options):
317 """Run layout tests on an actual device."""
318 bb_annotations.PrintNamedStep('webkit_tests')
319 cmd_args = [
320 '--no-show-results',
321 '--no-new-test-results',
322 '--full-results-html',
323 '--clobber-old-results',
324 '--exit-after-n-failures', '5000',
325 '--exit-after-n-crashes-or-timeouts', '100',
326 '--debug-rwt-logging',
327 '--results-directory', '../layout-test-results',
328 '--target', options.target,
329 '--builder-name', options.build_properties.get('buildername', ''),
330 '--build-number', str(options.build_properties.get('buildnumber', '')),
331 '--master-name', 'ChromiumWebkit', # TODO: Get this from the cfg.
332 '--build-name', options.build_properties.get('buildername', ''),
333 '--platform=android']
335 for flag in 'test_results_server', 'driver_name', 'additional_driver_flag':
336 if flag in options.factory_properties:
337 cmd_args.extend(['--%s' % flag.replace('_', '-'),
338 options.factory_properties.get(flag)])
340 for f in options.factory_properties.get('additional_expectations', []):
341 cmd_args.extend(
342 ['--additional-expectations=%s' % os.path.join(CHROME_SRC_DIR, *f)])
344 # TODO(dpranke): Remove this block after
345 # https://codereview.chromium.org/12927002/ lands.
346 for f in options.factory_properties.get('additional_expectations_files', []):
347 cmd_args.extend(
348 ['--additional-expectations=%s' % os.path.join(CHROME_SRC_DIR, *f)])
350 exit_code = RunCmd(
351 [SrcPath(os.path.join(BLINK_SCRIPTS_DIR, 'run-webkit-tests'))] + cmd_args)
352 if exit_code == 255: # test_run_results.UNEXPECTED_ERROR_EXIT_STATUS
353 bb_annotations.PrintMsg('?? (crashed or hung)')
354 elif exit_code == 254: # test_run_results.NO_DEVICES_EXIT_STATUS
355 bb_annotations.PrintMsg('?? (no devices found)')
356 elif exit_code == 253: # test_run_results.NO_TESTS_EXIT_STATUS
357 bb_annotations.PrintMsg('?? (no tests found)')
358 else:
359 full_results_path = os.path.join('..', 'layout-test-results',
360 'full_results.json')
361 if os.path.exists(full_results_path):
362 full_results = json.load(open(full_results_path))
363 unexpected_passes, unexpected_failures, unexpected_flakes = (
364 _ParseLayoutTestResults(full_results))
365 if unexpected_failures:
366 _PrintDashboardLink('failed', unexpected_failures.keys(),
367 max_tests=25)
368 elif unexpected_passes:
369 _PrintDashboardLink('unexpected passes', unexpected_passes.keys(),
370 max_tests=10)
371 if unexpected_flakes:
372 _PrintDashboardLink('unexpected flakes', unexpected_flakes.keys(),
373 max_tests=10)
375 if exit_code == 0 and (unexpected_passes or unexpected_flakes):
376 # If exit_code != 0, RunCmd() will have already printed an error.
377 bb_annotations.PrintWarning()
378 else:
379 bb_annotations.PrintError()
380 bb_annotations.PrintMsg('?? (results missing)')
382 if options.factory_properties.get('archive_webkit_results', False):
383 bb_annotations.PrintNamedStep('archive_webkit_results')
384 base = 'https://storage.googleapis.com/chromium-layout-test-archives'
385 builder_name = options.build_properties.get('buildername', '')
386 build_number = str(options.build_properties.get('buildnumber', ''))
387 results_link = '%s/%s/%s/layout-test-results/results.html' % (
388 base, EscapeBuilderName(builder_name), build_number)
389 bb_annotations.PrintLink('results', results_link)
390 bb_annotations.PrintLink('(zip)', '%s/%s/%s/layout-test-results.zip' % (
391 base, EscapeBuilderName(builder_name), build_number))
392 gs_bucket = 'gs://chromium-layout-test-archives'
393 RunCmd([os.path.join(SLAVE_SCRIPTS_DIR, 'chromium',
394 'archive_layout_test_results.py'),
395 '--results-dir', '../../layout-test-results',
396 '--build-number', build_number,
397 '--builder-name', builder_name,
398 '--gs-bucket', gs_bucket],
399 cwd=DIR_BUILD_ROOT)
402 def _ParseLayoutTestResults(results):
403 """Extract the failures from the test run."""
404 # Cloned from third_party/WebKit/Tools/Scripts/print-json-test-results
405 tests = _ConvertTrieToFlatPaths(results['tests'])
406 failures = {}
407 flakes = {}
408 passes = {}
409 for (test, result) in tests.iteritems():
410 if result.get('is_unexpected'):
411 actual_results = result['actual'].split()
412 expected_results = result['expected'].split()
413 if len(actual_results) > 1:
414 # We report the first failure type back, even if the second
415 # was more severe.
416 if actual_results[1] in expected_results:
417 flakes[test] = actual_results[0]
418 else:
419 failures[test] = actual_results[0]
420 elif actual_results[0] == 'PASS':
421 passes[test] = result
422 else:
423 failures[test] = actual_results[0]
425 return (passes, failures, flakes)
428 def _ConvertTrieToFlatPaths(trie, prefix=None):
429 """Flatten the trie of failures into a list."""
430 # Cloned from third_party/WebKit/Tools/Scripts/print-json-test-results
431 result = {}
432 for name, data in trie.iteritems():
433 if prefix:
434 name = prefix + '/' + name
436 if len(data) and 'actual' not in data and 'expected' not in data:
437 result.update(_ConvertTrieToFlatPaths(data, name))
438 else:
439 result[name] = data
441 return result
444 def _PrintDashboardLink(link_text, tests, max_tests):
445 """Add a link to the flakiness dashboard in the step annotations."""
446 if len(tests) > max_tests:
447 test_list_text = ' '.join(tests[:max_tests]) + ' and more'
448 else:
449 test_list_text = ' '.join(tests)
451 dashboard_base = ('http://test-results.appspot.com'
452 '/dashboards/flakiness_dashboard.html#'
453 'master=ChromiumWebkit&tests=')
455 bb_annotations.PrintLink('%d %s: %s' %
456 (len(tests), link_text, test_list_text),
457 dashboard_base + ','.join(tests))
460 def EscapeBuilderName(builder_name):
461 return re.sub('[ ()]', '_', builder_name)
464 def SpawnLogcatMonitor():
465 shutil.rmtree(LOGCAT_DIR, ignore_errors=True)
466 bb_utils.SpawnCmd([
467 os.path.join(CHROME_SRC_DIR, 'build', 'android', 'adb_logcat_monitor.py'),
468 LOGCAT_DIR])
470 # Wait for logcat_monitor to pull existing logcat
471 RunCmd(['sleep', '5'])
474 def ProvisionDevices(options):
475 bb_annotations.PrintNamedStep('provision_devices')
477 if not bb_utils.TESTING:
478 # Restart adb to work around bugs, sleep to wait for usb discovery.
479 device_utils.RestartServer()
480 RunCmd(['sleep', '1'])
481 provision_cmd = ['build/android/provision_devices.py', '-t', options.target]
482 if options.auto_reconnect:
483 provision_cmd.append('--auto-reconnect')
484 if options.skip_wipe:
485 provision_cmd.append('--skip-wipe')
486 if options.disable_location:
487 provision_cmd.append('--disable-location')
488 RunCmd(provision_cmd, halt_on_failure=True)
491 def DeviceStatusCheck(options):
492 bb_annotations.PrintNamedStep('device_status_check')
493 cmd = ['build/android/buildbot/bb_device_status_check.py']
494 if options.restart_usb:
495 cmd.append('--restart-usb')
496 RunCmd(cmd, halt_on_failure=True)
499 def GetDeviceSetupStepCmds():
500 return [
501 ('device_status_check', DeviceStatusCheck),
502 ('provision_devices', ProvisionDevices),
506 def RunUnitTests(options):
507 suites = gtest_config.STABLE_TEST_SUITES
508 if options.asan:
509 suites = [s for s in suites
510 if s not in gtest_config.ASAN_EXCLUDED_TEST_SUITES]
511 RunTestSuites(options, suites)
514 def RunTelemetryUnitTests(options):
515 RunTelemetryTests(options, 'telemetry_unittests', 'tools/telemetry/run_tests')
518 def RunTelemetryPerfUnitTests(options):
519 RunTelemetryTests(options, 'telemetry_perf_unittests', 'tools/perf/run_tests')
522 def RunInstrumentationTests(options):
523 for test in INSTRUMENTATION_TESTS.itervalues():
524 RunInstrumentationSuite(options, test)
527 def RunWebkitTests(options):
528 RunTestSuites(options, ['webkit_unit_tests', 'blink_heap_unittests'])
529 RunWebkitLint()
532 def RunGPUTests(options):
533 revision = _GetRevision(options)
534 builder_name = options.build_properties.get('buildername', 'noname')
536 bb_annotations.PrintNamedStep('pixel_tests')
537 RunCmd(['content/test/gpu/run_gpu_test.py',
538 'pixel',
539 '--browser',
540 'android-content-shell',
541 '--build-revision',
542 str(revision),
543 '--upload-refimg-to-cloud-storage',
544 '--refimg-cloud-storage-bucket',
545 'chromium-gpu-archive/reference-images',
546 '--os-type',
547 'android',
548 '--test-machine-name',
549 EscapeBuilderName(builder_name)])
551 bb_annotations.PrintNamedStep('webgl_conformance_tests')
552 RunCmd(['content/test/gpu/run_gpu_test.py',
553 '--browser=android-content-shell', 'webgl_conformance',
554 '--webgl-conformance-version=1.0.1'])
556 bb_annotations.PrintNamedStep('android_webview_webgl_conformance_tests')
557 RunCmd(['content/test/gpu/run_gpu_test.py',
558 '--browser=android-webview-shell', 'webgl_conformance',
559 '--webgl-conformance-version=1.0.1'])
561 bb_annotations.PrintNamedStep('gpu_rasterization_tests')
562 RunCmd(['content/test/gpu/run_gpu_test.py',
563 'gpu_rasterization',
564 '--browser',
565 'android-content-shell',
566 '--build-revision',
567 str(revision),
568 '--test-machine-name',
569 EscapeBuilderName(builder_name)])
572 def RunPythonUnitTests(_options):
573 for suite in constants.PYTHON_UNIT_TEST_SUITES:
574 bb_annotations.PrintNamedStep(suite)
575 RunCmd(['build/android/test_runner.py', 'python', '-s', suite])
578 def GetTestStepCmds():
579 return [
580 ('base_junit_tests',
581 lambda _options: RunJunitSuite('base_junit_tests')),
582 ('chromedriver', RunChromeDriverTests),
583 ('chrome_proxy', RunChromeProxyTests),
584 ('components_browsertests',
585 lambda options: RunTestSuites(options, ['components_browsertests'])),
586 ('gfx_unittests',
587 lambda options: RunTestSuites(options, ['gfx_unittests'])),
588 ('gpu', RunGPUTests),
589 ('python_unittests', RunPythonUnitTests),
590 ('telemetry_unittests', RunTelemetryUnitTests),
591 ('telemetry_perf_unittests', RunTelemetryPerfUnitTests),
592 ('ui', RunInstrumentationTests),
593 ('unit', RunUnitTests),
594 ('webkit', RunWebkitTests),
595 ('webkit_layout', RunWebkitLayoutTests),
599 def MakeGSPath(options, gs_base_dir):
600 revision = _GetRevision(options)
601 bot_id = options.build_properties.get('buildername', 'testing')
602 randhash = hashlib.sha1(str(random.random())).hexdigest()
603 gs_path = '%s/%s/%s/%s' % (gs_base_dir, bot_id, revision, randhash)
604 # remove double slashes, happens with blank revisions and confuses gsutil
605 gs_path = re.sub('/+', '/', gs_path)
606 return gs_path
608 def UploadHTML(options, gs_base_dir, dir_to_upload, link_text,
609 link_rel_path='index.html', gs_url=GS_URL):
610 """Uploads directory at |dir_to_upload| to Google Storage and output a link.
612 Args:
613 options: Command line options.
614 gs_base_dir: The Google Storage base directory (e.g.
615 'chromium-code-coverage/java')
616 dir_to_upload: Absolute path to the directory to be uploaded.
617 link_text: Link text to be displayed on the step.
618 link_rel_path: Link path relative to |dir_to_upload|.
619 gs_url: Google storage URL.
621 gs_path = MakeGSPath(options, gs_base_dir)
622 RunCmd([bb_utils.GSUTIL_PATH, 'cp', '-R', dir_to_upload, 'gs://%s' % gs_path])
623 bb_annotations.PrintLink(link_text,
624 '%s/%s/%s' % (gs_url, gs_path, link_rel_path))
627 def GenerateJavaCoverageReport(options):
628 """Generates an HTML coverage report using EMMA and uploads it."""
629 bb_annotations.PrintNamedStep('java_coverage_report')
631 coverage_html = os.path.join(options.coverage_dir, 'coverage_html')
632 RunCmd(['build/android/generate_emma_html.py',
633 '--coverage-dir', options.coverage_dir,
634 '--metadata-dir', os.path.join(CHROME_OUT_DIR, options.target),
635 '--cleanup',
636 '--output', os.path.join(coverage_html, 'index.html')])
637 return coverage_html
640 def LogcatDump(options):
641 # Print logcat, kill logcat monitor
642 bb_annotations.PrintNamedStep('logcat_dump')
643 logcat_file = os.path.join(CHROME_OUT_DIR, options.target, 'full_log.txt')
644 RunCmd([SrcPath('build', 'android', 'adb_logcat_printer.py'),
645 '--output-path', logcat_file, LOGCAT_DIR])
646 gs_path = MakeGSPath(options, 'chromium-android/logcat_dumps')
647 RunCmd([bb_utils.GSUTIL_PATH, 'cp', '-z', 'txt', logcat_file,
648 'gs://%s' % gs_path])
649 bb_annotations.PrintLink('logcat dump', '%s/%s' % (GS_AUTH_URL, gs_path))
652 def RunStackToolSteps(options):
653 """Run stack tool steps.
655 Stack tool is run for logcat dump, optionally for ASAN.
657 bb_annotations.PrintNamedStep('Run stack tool with logcat dump')
658 logcat_file = os.path.join(CHROME_OUT_DIR, options.target, 'full_log.txt')
659 RunCmd([os.path.join(CHROME_SRC_DIR, 'third_party', 'android_platform',
660 'development', 'scripts', 'stack'),
661 '--more-info', logcat_file])
662 if options.asan_symbolize:
663 bb_annotations.PrintNamedStep('Run stack tool for ASAN')
664 RunCmd([
665 os.path.join(CHROME_SRC_DIR, 'build', 'android', 'asan_symbolize.py'),
666 '-l', logcat_file])
669 def GenerateTestReport(options):
670 bb_annotations.PrintNamedStep('test_report')
671 for report in glob.glob(
672 os.path.join(CHROME_OUT_DIR, options.target, 'test_logs', '*.log')):
673 RunCmd(['cat', report])
674 os.remove(report)
677 def MainTestWrapper(options):
678 try:
679 # Spawn logcat monitor
680 SpawnLogcatMonitor()
682 # Run all device setup steps
683 for _, cmd in GetDeviceSetupStepCmds():
684 cmd(options)
686 if options.install:
687 for i in options.install:
688 install_obj = INSTALLABLE_PACKAGES[i]
689 InstallApk(options, install_obj, print_step=True)
691 if options.test_filter:
692 bb_utils.RunSteps(options.test_filter, GetTestStepCmds(), options)
694 if options.coverage_bucket:
695 coverage_html = GenerateJavaCoverageReport(options)
696 UploadHTML(options, '%s/java' % options.coverage_bucket, coverage_html,
697 'Coverage Report')
698 shutil.rmtree(coverage_html, ignore_errors=True)
700 if options.experimental:
701 RunTestSuites(options, gtest_config.EXPERIMENTAL_TEST_SUITES)
703 finally:
704 # Run all post test steps
705 LogcatDump(options)
706 if not options.disable_stack_tool:
707 RunStackToolSteps(options)
708 GenerateTestReport(options)
709 # KillHostHeartbeat() has logic to check if heartbeat process is running,
710 # and kills only if it finds the process is running on the host.
711 provision_devices.KillHostHeartbeat()
712 if options.cleanup:
713 shutil.rmtree(os.path.join(CHROME_OUT_DIR, options.target),
714 ignore_errors=True)
717 def GetDeviceStepsOptParser():
718 parser = bb_utils.GetParser()
719 parser.add_option('--experimental', action='store_true',
720 help='Run experiemental tests')
721 parser.add_option('-f', '--test-filter', metavar='<filter>', default=[],
722 action='append',
723 help=('Run a test suite. Test suites: "%s"' %
724 '", "'.join(VALID_TESTS)))
725 parser.add_option('--gtest-filter',
726 help='Filter for running a subset of tests of a gtest test')
727 parser.add_option('--asan', action='store_true', help='Run tests with asan.')
728 parser.add_option('--install', metavar='<apk name>', action="append",
729 help='Install an apk by name')
730 parser.add_option('--no-reboot', action='store_true',
731 help='Do not reboot devices during provisioning.')
732 parser.add_option('--coverage-bucket',
733 help=('Bucket name to store coverage results. Coverage is '
734 'only run if this is set.'))
735 parser.add_option('--restart-usb', action='store_true',
736 help='Restart usb ports before device status check.')
737 parser.add_option(
738 '--flakiness-server',
739 help=('The flakiness dashboard server to which the results should be '
740 'uploaded.'))
741 parser.add_option(
742 '--auto-reconnect', action='store_true',
743 help='Push script to device which restarts adbd on disconnections.')
744 parser.add_option('--skip-wipe', action='store_true',
745 help='Do not wipe devices during provisioning.')
746 parser.add_option('--disable-location', action='store_true',
747 help='Disable location settings.')
748 parser.add_option(
749 '--logcat-dump-output',
750 help='The logcat dump output will be "tee"-ed into this file')
751 # During processing perf bisects, a seperate working directory created under
752 # which builds are produced. Therefore we should look for relevent output
753 # file under this directory.(/b/build/slave/<slave_name>/build/bisect/src/out)
754 parser.add_option(
755 '--chrome-output-dir',
756 help='Chrome output directory to be used while bisecting.')
758 parser.add_option('--disable-stack-tool', action='store_true',
759 help='Do not run stack tool.')
760 parser.add_option('--asan-symbolize', action='store_true',
761 help='Run stack tool for ASAN')
762 parser.add_option('--cleanup', action='store_true',
763 help='Delete out/<target> directory at the end of the run.')
764 return parser
767 def main(argv):
768 parser = GetDeviceStepsOptParser()
769 options, args = parser.parse_args(argv[1:])
771 if args:
772 return sys.exit('Unused args %s' % args)
774 unknown_tests = set(options.test_filter) - VALID_TESTS
775 if unknown_tests:
776 return sys.exit('Unknown tests %s' % list(unknown_tests))
778 setattr(options, 'target', options.factory_properties.get('target', 'Debug'))
780 if options.chrome_output_dir:
781 global CHROME_OUT_DIR
782 global LOGCAT_DIR
783 CHROME_OUT_DIR = options.chrome_output_dir
784 LOGCAT_DIR = os.path.join(CHROME_OUT_DIR, 'logcat')
786 if options.coverage_bucket:
787 setattr(options, 'coverage_dir',
788 os.path.join(CHROME_OUT_DIR, options.target, 'coverage'))
790 MainTestWrapper(options)
793 if __name__ == '__main__':
794 sys.exit(main(sys.argv))