Title: [245981] trunk/Tools
Revision
245981
Author
dewei_...@apple.com
Date
2019-05-31 13:52:31 -0700 (Fri, 31 May 2019)

Log Message

run-benchmark should report an error if the argument to --build-directory is bogus
https://bugs.webkit.org/show_bug.cgi?id=198316

Reviewed by Ryosuke Niwa.

'run-benchmark' should not fallback to system safari when browser or browser build path is
specified but not valid.
Add a run-time check to ensure at least one of the resource from build directory is opened by
Safari when build directory is specified.

* Scripts/webkitpy/benchmark_runner/browser_driver/osx_safari_driver.py:
(OSXSafariDriver.launch_url): Raise an exception when browser or browser build path is
specified but not valid.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (245980 => 245981)


--- trunk/Tools/ChangeLog	2019-05-31 20:23:31 UTC (rev 245980)
+++ trunk/Tools/ChangeLog	2019-05-31 20:52:31 UTC (rev 245981)
@@ -1,3 +1,19 @@
+2019-05-28  Dewei Zhu  <dewei_...@apple.com>
+
+        run-benchmark should report an error if the argument to --build-directory is bogus
+        https://bugs.webkit.org/show_bug.cgi?id=198316
+
+        Reviewed by Ryosuke Niwa.
+
+        'run-benchmark' should not fallback to system safari when browser or browser build path is
+        specified but not valid.
+        Add a run-time check to ensure at least one of the resource from build directory is opened by
+        Safari when build directory is specified.
+
+        * Scripts/webkitpy/benchmark_runner/browser_driver/osx_safari_driver.py:
+        (OSXSafariDriver.launch_url): Raise an exception when browser or browser build path is
+        specified but not valid.
+
 2019-05-31  Tim Horton  <timothy_hor...@apple.com>
 
         Optionally respect device management restrictions when loading from the network

Modified: trunk/Tools/Scripts/webkitpy/benchmark_runner/browser_driver/osx_safari_driver.py (245980 => 245981)


--- trunk/Tools/Scripts/webkitpy/benchmark_runner/browser_driver/osx_safari_driver.py	2019-05-31 20:23:31 UTC (rev 245980)
+++ trunk/Tools/Scripts/webkitpy/benchmark_runner/browser_driver/osx_safari_driver.py	2019-05-31 20:52:31 UTC (rev 245981)
@@ -1,5 +1,6 @@
 #!/usr/bin/env python
 
+import itertools
 import logging
 import os
 import subprocess
@@ -27,18 +28,27 @@
         args = ['/Applications/Safari.app/Contents/MacOS/Safari']
         env = {}
         if browser_build_path:
-            safari_app_in_build_path = os.path.join(browser_build_path, 'Safari.app/Contents/MacOS/Safari')
-            if os.path.exists(safari_app_in_build_path):
+            browser_build_absolute_path = os.path.abspath(browser_build_path)
+            safari_app_in_build_path = os.path.join(browser_build_absolute_path, 'Safari.app/Contents/MacOS/Safari')
+            has_safari_app = os.path.exists(safari_app_in_build_path)
+            content_in_path = os.listdir(browser_build_absolute_path)
+            contains_frameworks = any(itertools.imap(lambda entry: entry.endswith('.framework'), os.listdir(browser_build_absolute_path)))
+
+            if has_safari_app:
                 args = [safari_app_in_build_path]
-                env = {'DYLD_FRAMEWORK_PATH': browser_build_path, 'DYLD_LIBRARY_PATH': browser_build_path, '__XPC_DYLD_FRAMEWORK_PATH': browser_build_path, '__XPC_DYLD_LIBRARY_PATH': browser_build_path}
-            else:
-                _log.info('Could not find Safari.app at %s, using the system Safari instead' % safari_app_in_build_path)
+
+            if contains_frameworks:
+                env = {'DYLD_FRAMEWORK_PATH': browser_build_absolute_path, 'DYLD_LIBRARY_PATH': browser_build_absolute_path,
+                    '__XPC_DYLD_FRAMEWORK_PATH': browser_build_absolute_path, '__XPC_DYLD_LIBRARY_PATH': browser_build_absolute_path}
+            elif not has_safari_app:
+                raise Exception('Could not find any framework "{}"'.format(browser_build_path))
+
         elif browser_path:
             safari_app_in_browser_path = os.path.join(browser_path, 'Contents/MacOS/Safari')
             if os.path.exists(safari_app_in_browser_path):
                 args = [safari_app_in_browser_path]
             else:
-                _log.info('Could not find application at %s, using the system Safari instead' % safari_app_in_browser_path)
+                raise Exception('Could not find Safari.app at {}'.format(safari_app_in_browser_path))
 
         args.extend(self._safari_preferences)
         _log.info('Launching safari: %s with url: %s' % (args[0], url))
@@ -47,6 +57,18 @@
         # Stop for initialization of the safari process, otherwise, open
         # command may use the system safari.
         time.sleep(3)
+
+        if browser_build_path:
+            _log.info('Checking if any open file is from "{}".'.format(browser_build_path))
+            # Cannot use 'check_call' here as '+D' option will have non-zero return code when not all files under
+            # specified folder are used.
+            process = subprocess.Popen(['/usr/sbin/lsof', '-a', '-p', str(self._safari_process.pid), '+D', browser_build_absolute_path], stdout=subprocess.PIPE)
+            output = process.communicate()[0]
+            if has_safari_app:
+                assert 'Safari.app/Contents/MacOS/Safari' in output, 'Safari.app is not launched from "{}"'.format(browser_build_path)
+            if contains_frameworks:
+                assert '.framework' in output, 'No framework is loaded from "{}"'.format(browser_build_path)
+
         subprocess.Popen(['open', '-a', args[0], url])
 
     def launch_driver(self, url, options, browser_build_path):
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to