示例#1
0
 def _assert_search_path(self, search_paths, sys_platform, use_webkit2=False, qt_version='4.8'):
     # FIXME: Port constructors should not "parse" the port name, but
     # rather be passed components (directly or via setters).  Once
     # we fix that, this method will need a re-write.
     host = MockSystemHost()
     host.executive = MockExecutive2(self._qt_version(qt_version))
     port = QtPort(host, sys_platform=sys_platform, options=MockOptions(webkit_test_runner=use_webkit2, platform='qt'))
     absolute_search_paths = map(port._webkit_baseline_path, search_paths)
     self.assertEquals(port.baseline_search_path(), absolute_search_paths)
示例#2
0
 def _assert_search_path(self, search_paths, sys_platform, use_webkit2=False):
     # FIXME: Port constructors should not "parse" the port name, but
     # rather be passed components (directly or via setters).  Once
     # we fix that, this method will need a re-write.
     port = QtPort(sys_platform=sys_platform,
         options=MockOptions(webkit_test_runner=use_webkit2),
         filesystem=MockFileSystem(),
         user=MockUser(),
         executive=MockExecutive())
     absolute_search_paths = map(port._webkit_baseline_path, search_paths)
     self.assertEquals(port.baseline_search_path(), absolute_search_paths)
示例#3
0
 def _assert_search_path(self,
                         search_paths,
                         sys_platform,
                         use_webkit2=False,
                         qt_version='4.8'):
     # FIXME: Port constructors should not "parse" the port name, but
     # rather be passed components (directly or via setters).  Once
     # we fix that, this method will need a re-write.
     host = MockHost()
     host.executive = MockExecutive2(self._qt_version(qt_version))
     port = QtPort(host,
                   sys_platform=sys_platform,
                   options=MockOptions(webkit_test_runner=use_webkit2,
                                       platform='qt'))
     absolute_search_paths = map(port._webkit_baseline_path, search_paths)
     self.assertEquals(port.baseline_search_path(), absolute_search_paths)