# Copyright (C) 2010 Google Inc. All rights reserved. # Copyright (C) 2013 Samsung Electronics. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following disclaimer # in the documentation and/or other materials provided with the # distribution. # * Neither the Google name nor the names of its # contributors may be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. import os import subprocess import uuid import logging from webkitpy.common.system import path from webkitpy.common.memoized import memoized from webkitpy.layout_tests.models.test_configuration import TestConfiguration from webkitpy.port.base import Port from webkitpy.port.pulseaudio_sanitizer import PulseAudioSanitizer from webkitpy.port.xvfbdriver import XvfbDriver from webkitpy.port.westondriver import WestonDriver from webkitpy.port.xorgdriver import XorgDriver from webkitpy.port.linux_get_crash_log import GDBCrashLogGenerator from webkitpy.port.leakdetector_valgrind import LeakDetectorValgrind _log = logging.getLogger(__name__) class GtkPort(Port): port_name = "gtk" def __init__(self, *args, **kwargs): super(GtkPort, self).__init__(*args, **kwargs) self._pulseaudio_sanitizer = PulseAudioSanitizer() if self.get_option("leaks"): self._leakdetector = LeakDetectorValgrind(self._executive, self._filesystem, self.results_directory()) if not self.get_option("wrapper"): raise ValueError('use --wrapper=\"valgrind\" for memory leak detection on GTK') if self._should_use_jhbuild(): self._jhbuild_wrapper = [self.path_from_webkit_base('Tools', 'jhbuild', 'jhbuild-wrapper'), '--gtk', 'run'] if self.get_option('wrapper'): self.set_option('wrapper', ' '.join(self._jhbuild_wrapper) + ' ' + self.get_option('wrapper')) else: self.set_option_default('wrapper', ' '.join(self._jhbuild_wrapper)) def _built_executables_path(self, *path): return self._build_path(*(('bin',) + path)) def _built_libraries_path(self, *path): return self._build_path(*(('lib',) + path)) def _port_flag_for_scripts(self): return "--gtk" @memoized def _driver_class(self): if os.environ.get("WAYLAND_DISPLAY"): return WestonDriver if os.environ.get("USE_NATIVE_XDISPLAY"): return XorgDriver return XvfbDriver def supports_per_test_timeout(self): return True def default_timeout_ms(self): # Starting an application under Valgrind takes a lot longer than normal # so increase the timeout (empirically 10x is enough to avoid timeouts). multiplier = 10 if self.get_option("leaks") else 1 if self.get_option('configuration') == 'Debug': return multiplier * 12 * 1000 return multiplier * 6 * 1000 def driver_stop_timeout(self): if self.get_option("leaks"): # Wait the default timeout time before killing the process in driver.stop(). return self.default_timeout_ms() return super(GtkPort, self).driver_stop_timeout() def setup_test_run(self): super(GtkPort, self).setup_test_run() self._pulseaudio_sanitizer.unload_pulseaudio_module() if self.get_option("leaks"): self._leakdetector.clean_leaks_files_from_results_directory() def clean_up_test_run(self): super(GtkPort, self).clean_up_test_run() self._pulseaudio_sanitizer.restore_pulseaudio_module() def setup_environ_for_server(self, server_name=None): environment = super(GtkPort, self).setup_environ_for_server(server_name) environment['GSETTINGS_BACKEND'] = 'memory' environment['LIBOVERLAY_SCROLLBAR'] = '0' environment['TEST_RUNNER_INJECTED_BUNDLE_FILENAME'] = self._build_path('lib', 'libTestRunnerInjectedBundle.so') environment['TEST_RUNNER_TEST_PLUGIN_PATH'] = self._build_path('lib', 'plugins') environment['OWR_USE_TEST_SOURCES'] = '1' self._copy_value_from_environ_if_set(environment, 'WEBKIT_OUTPUTDIR') if self._driver_class() == XvfbDriver and self._should_use_jhbuild(): llvmpipe_libgl_path = self.host.executive.run_command(self._jhbuild_wrapper + ['printenv', 'LLVMPIPE_LIBGL_PATH'], error_handler=self.host.executive.ignore_error).strip() if os.path.exists(os.path.join(llvmpipe_libgl_path, "libGL.so")): # Force the Gallium llvmpipe software rasterizer environment['LD_LIBRARY_PATH'] = llvmpipe_libgl_path if os.environ.get('LD_LIBRARY_PATH'): environment['LD_LIBRARY_PATH'] += ':%s' % os.environ.get('LD_LIBRARY_PATH') else: _log.warning("Can't find Gallium llvmpipe driver. Try to run update-webkitgtk-libs") if self.get_option("leaks"): # Turn off GLib memory optimisations https://wiki.gnome.org/Valgrind. environment['G_SLICE'] = 'always-malloc' environment['G_DEBUG'] = 'gc-friendly' xmlfilename = "".join(("drt-%p-", uuid.uuid1().hex, "-leaks.xml")) xmlfile = os.path.join(self.results_directory(), xmlfilename) suppressionsfile = self.path_from_webkit_base('Tools', 'Scripts', 'valgrind', 'suppressions.txt') environment['VALGRIND_OPTS'] = \ "--tool=memcheck " \ "--num-callers=40 " \ "--demangle=no " \ "--trace-children=no " \ "--smc-check=all-non-file " \ "--leak-check=yes " \ "--leak-resolution=high " \ "--show-possibly-lost=no " \ "--show-reachable=no " \ "--leak-check=full " \ "--undef-value-errors=no " \ "--gen-suppressions=all " \ "--xml=yes " \ "--xml-file=%s " \ "--suppressions=%s" % (xmlfile, suppressionsfile) return environment def _generate_all_test_configurations(self): configurations = [] for build_type in self.ALL_BUILD_TYPES: configurations.append(TestConfiguration(version=self._version, architecture='x86', build_type=build_type)) return configurations def _path_to_driver(self): return self._built_executables_path(self.driver_name()) def _path_to_image_diff(self): return self._built_executables_path('ImageDiff') def _path_to_webcore_library(self): gtk_library_names = [ "libwebkitgtk-1.0.so", "libwebkitgtk-3.0.so", "libwebkit2gtk-1.0.so", ] for library in gtk_library_names: full_library = self._built_libraries_path(library) if self._filesystem.isfile(full_library): return full_library return None def _search_paths(self): search_paths = [] search_paths.append(self.port_name) search_paths.append('wk2') search_paths.extend(self.get_option("additional_platform_directory", [])) return search_paths def default_baseline_search_path(self): return map(self._webkit_baseline_path, self._search_paths()) def _port_specific_expectations_files(self): return [self._filesystem.join(self._webkit_baseline_path(p), 'TestExpectations') for p in reversed(self._search_paths())] def print_leaks_summary(self): if not self.get_option('leaks'): return # FIXME: This is a hack, but we don't have a better way to get this information from the workers yet # because we're in the manager process. leaks_files = self._leakdetector.leaks_files_in_results_directory() if not leaks_files: return self._leakdetector.parse_and_print_leaks_detail(leaks_files) def show_results_html_file(self, results_filename): self._run_script("run-minibrowser", [path.abspath_to_uri(self.host.platform, results_filename)]) def check_sys_deps(self, needs_http): return super(GtkPort, self).check_sys_deps(needs_http) and self._driver_class().check_driver(self) def _get_crash_log(self, name, pid, stdout, stderr, newer_than): name = "WebKitWebProcess" if name == "WebProcess" else name return GDBCrashLogGenerator(name, pid, newer_than, self._filesystem, self._path_to_driver).generate_crash_log(stdout, stderr) def test_expectations_file_position(self): # GTK port baseline search path is gtk -> wk2 -> generic (as gtk-wk2 and gtk baselines are merged), so port test expectations file is at third to last position. return 2 def build_webkit_command(self, build_style=None): command = super(GtkPort, self).build_webkit_command(build_style) command.extend(["--gtk", "--update-gtk"]) command.append(super(GtkPort, self).make_args()) return command def run_webkit_tests_command(self): command = super(GtkPort, self).run_webkit_tests_command() command.append("--gtk") return command