| OLD | NEW |
| 1 # Copyright (C) 2014 Google Inc. All rights reserved. | 1 # Copyright (C) 2014 Google Inc. All rights reserved. |
| 2 # | 2 # |
| 3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
| 4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
| 5 # met: | 5 # met: |
| 6 # | 6 # |
| 7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
| 8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
| 9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
| 10 # copyright notice, this list of conditions and the following disclaimer | 10 # copyright notice, this list of conditions and the following disclaimer |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 from webkitpy.common.system.executive_mock import MockExecutive2 | 31 from webkitpy.common.system.executive_mock import MockExecutive2 |
| 32 from webkitpy.common.system.systemhost_mock import MockSystemHost | 32 from webkitpy.common.system.systemhost_mock import MockSystemHost |
| 33 from webkitpy.tool.mocktool import MockOptions | 33 from webkitpy.tool.mocktool import MockOptions |
| 34 | 34 |
| 35 from webkitpy.layout_tests.models import test_run_results | 35 from webkitpy.layout_tests.models import test_run_results |
| 36 from webkitpy.layout_tests.port import browser_test | 36 from webkitpy.layout_tests.port import browser_test |
| 37 from webkitpy.layout_tests.port import port_testcase | 37 from webkitpy.layout_tests.port import port_testcase |
| 38 from webkitpy.layout_tests.port import browser_test_driver | 38 from webkitpy.layout_tests.port import browser_test_driver |
| 39 | 39 |
| 40 | 40 |
| 41 class BrowserTestLinuxTest(port_testcase.PortTestCase): | 41 class _BrowserTestTestCaseMixin(object): |
| 42 port_name = 'linux' | |
| 43 port_maker = browser_test.BrowserTestLinuxPort | |
| 44 | |
| 45 def test_driver_name_option(self): | |
| 46 self.assertTrue(self.make_port(options=MockOptions(driver_name='browser_
tests'))._path_to_driver().endswith('browser_tests')) | |
| 47 | |
| 48 def test_layout_tests_dir(self): | |
| 49 self.assertTrue(self.make_port().layout_tests_dir().endswith('chrome/tes
t/data/printing/layout_tests')) | |
| 50 | |
| 51 def test_driver_type(self): | |
| 52 self.assertTrue(isinstance(self.make_port(options=MockOptions(driver_nam
e='browser_tests')).create_driver(1), browser_test_driver.BrowserTestDriver)) | |
| 53 | 42 |
| 54 def test_check_sys_deps(self): | 43 def test_check_sys_deps(self): |
| 55 port = self.make_port() | 44 port = self.make_port() |
| 56 port._executive = MockExecutive2(exit_code=0) | 45 port._executive = MockExecutive2(exit_code=0) |
| 57 self.assertEqual(port.check_sys_deps(needs_http=False), test_run_results
.OK_EXIT_STATUS) | 46 self.assertEqual(port.check_sys_deps(needs_http=False), test_run_results
.OK_EXIT_STATUS) |
| 58 | 47 |
| 48 def test_driver_name_option(self): |
| 49 self.assertTrue(self.make_port()._path_to_driver().endswith(self.driver_
name_endswith)) |
| 50 |
| 59 def test_default_timeout_ms(self): | 51 def test_default_timeout_ms(self): |
| 60 self.assertEqual(self.make_port(options=MockOptions(configuration='Relea
se')).default_timeout_ms(), 10000) | 52 self.assertEqual(self.make_port(options=MockOptions(configuration='Relea
se')).default_timeout_ms(), |
| 61 self.assertEqual(self.make_port(options=MockOptions(configuration='Debug
')).default_timeout_ms(), 30000) | 53 self.timeout_ms) |
| 54 self.assertEqual(self.make_port(options=MockOptions(configuration='Debug
')).default_timeout_ms(), |
| 55 3 * self.timeout_ms) |
| 56 |
| 57 def test_driver_type(self): |
| 58 self.assertTrue(isinstance(self.make_port(options=MockOptions(driver_nam
e='browser_tests')).create_driver(1), browser_test_driver.BrowserTestDriver)) |
| 59 |
| 60 def test_layout_tests_dir(self): |
| 61 self.assertTrue(self.make_port().layout_tests_dir().endswith('chrome/tes
t/data/printing/layout_tests')) |
| 62 |
| 63 def test_virtual_test_suites(self): |
| 64 # The browser_tests port do not use virtual test suites, so we are just
testing the stub. |
| 65 port = self.make_port() |
| 66 self.assertEqual(port.virtual_test_suites(), []) |
| 62 | 67 |
| 63 | 68 |
| 64 class BrowserTestWinTest(port_testcase.PortTestCase): | 69 class BrowserTestLinuxTest(_BrowserTestTestCaseMixin, port_testcase.PortTestCase
): |
| 70 port_name = 'linux' |
| 71 port_maker = browser_test.BrowserTestLinuxPort |
| 72 driver_name_endswith = 'browser_tests' |
| 73 timeout_ms = 10 * 1000 |
| 74 |
| 75 |
| 76 class BrowserTestWinTest(_BrowserTestTestCaseMixin, port_testcase.PortTestCase): |
| 65 port_name = 'win' | 77 port_name = 'win' |
| 66 port_maker = browser_test.BrowserTestWinPort | 78 port_maker = browser_test.BrowserTestWinPort |
| 67 os_name = 'win' | 79 os_name = 'win' |
| 68 os_version = 'xp' | 80 os_version = 'xp' |
| 69 | 81 driver_name_endswith = 'browser_tests.exe' |
| 70 def test_driver_name_option(self): | 82 timeout_ms = 20 * 1000 |
| 71 self.assertTrue(self.make_port(options=MockOptions(driver_name='browser_
tests'))._path_to_driver().endswith('browser_tests.exe')) | |
| 72 | |
| 73 def test_layout_tests_dir(self): | |
| 74 self.assertTrue(self.make_port().layout_tests_dir().endswith('chrome/tes
t/data/printing/layout_tests')) | |
| 75 | |
| 76 def test_driver_type(self): | |
| 77 self.assertTrue(isinstance(self.make_port(options=MockOptions(driver_nam
e='browser_tests')).create_driver(1), browser_test_driver.BrowserTestDriver)) | |
| 78 | |
| 79 def test_check_sys_deps(self): | |
| 80 port = self.make_port() | |
| 81 port._executive = MockExecutive2(exit_code=0) | |
| 82 self.assertEqual(port.check_sys_deps(needs_http=False), test_run_results
.OK_EXIT_STATUS) | |
| 83 | |
| 84 def test_default_timeout_ms(self): | |
| 85 self.assertEqual(self.make_port(options=MockOptions(configuration='Relea
se')).default_timeout_ms(), 20000) | |
| 86 self.assertEqual(self.make_port(options=MockOptions(configuration='Debug
')).default_timeout_ms(), 60000) | |
| 87 | 83 |
| 88 | 84 |
| 89 class BrowserTestMacTest(port_testcase.PortTestCase): | 85 class BrowserTestMacTest(_BrowserTestTestCaseMixin, port_testcase.PortTestCase): |
| 90 os_name = 'mac' | 86 os_name = 'mac' |
| 91 os_version = 'snowleopard' | 87 os_version = 'snowleopard' |
| 92 port_name = 'mac' | 88 port_name = 'mac' |
| 93 port_maker = browser_test.BrowserTestMacPort | 89 port_maker = browser_test.BrowserTestMacPort |
| 94 | 90 driver_name_endswith = 'browser_tests' |
| 95 def test_driver_name_option(self): | 91 timeout_ms = 20 * 1000 |
| 96 self.assertTrue(self.make_port(options=MockOptions(driver_name='browser_
tests'))._path_to_driver().endswith('browser_tests')) | |
| 97 | |
| 98 def test_layout_tests_dir(self): | |
| 99 self.assertTrue(self.make_port().layout_tests_dir().endswith('chrome/tes
t/data/printing/layout_tests')) | |
| 100 | |
| 101 def test_driver_type(self): | |
| 102 self.assertTrue(isinstance(self.make_port(options=MockOptions(driver_nam
e='browser_tests')).create_driver(1), browser_test_driver.BrowserTestDriver)) | |
| 103 | 92 |
| 104 def test_driver_path(self): | 93 def test_driver_path(self): |
| 105 test_port = self.make_port(options=MockOptions(driver_name='browser_test
s')) | 94 test_port = self.make_port(options=MockOptions(driver_name='browser_test
s')) |
| 106 self.assertFalse('.app/Contents/MacOS' in test_port._path_to_driver()) | 95 self.assertFalse('.app/Contents/MacOS' in test_port._path_to_driver()) |
| 107 | |
| 108 def test_check_sys_deps(self): | |
| 109 port = self.make_port() | |
| 110 port._executive = MockExecutive2(exit_code=0) | |
| 111 self.assertEqual(port.check_sys_deps(needs_http=False), test_run_results
.OK_EXIT_STATUS) | |
| 112 | |
| 113 def test_default_timeout_ms(self): | |
| 114 self.assertEqual(self.make_port(options=MockOptions(configuration='Relea
se')).default_timeout_ms(), 20000) | |
| 115 self.assertEqual(self.make_port(options=MockOptions(configuration='Debug
')).default_timeout_ms(), 60000) | |
| OLD | NEW |