| Index: Tools/Scripts/webkitpy/layout_tests/port/driver_unittest.py
|
| diff --git a/Tools/Scripts/webkitpy/layout_tests/port/driver_unittest.py b/Tools/Scripts/webkitpy/layout_tests/port/driver_unittest.py
|
| index 47f87fb884264c126269ae16dbb98033a6d108a9..a5f7d7971c67a63539c20ee73fc545224039a3cb 100644
|
| --- a/Tools/Scripts/webkitpy/layout_tests/port/driver_unittest.py
|
| +++ b/Tools/Scripts/webkitpy/layout_tests/port/driver_unittest.py
|
| @@ -64,6 +64,8 @@ class DriverTest(unittest.TestCase):
|
| self.assertEqual(driver.test_to_uri('foo/bar.html'), 'file://%s/foo/bar.html' % port.layout_tests_dir())
|
| self.assertEqual(driver.test_to_uri('http/tests/foo.html'), 'http://127.0.0.1:8000/foo.html')
|
| self.assertEqual(driver.test_to_uri('http/tests/https/bar.html'), 'https://127.0.0.1:8443/https/bar.html')
|
| + self.assertEqual(driver.test_to_uri('http/tests/bar.https.html'), 'https://127.0.0.1:8443/bar.https.html')
|
| + self.assertEqual(driver.test_to_uri('http/tests/barhttps.html'), 'http://127.0.0.1:8000/barhttps.html')
|
|
|
| def test_uri_to_test(self):
|
| port = self.make_port()
|
| @@ -71,6 +73,7 @@ class DriverTest(unittest.TestCase):
|
| self.assertEqual(driver.uri_to_test('file://%s/foo/bar.html' % port.layout_tests_dir()), 'foo/bar.html')
|
| self.assertEqual(driver.uri_to_test('http://127.0.0.1:8000/foo.html'), 'http/tests/foo.html')
|
| self.assertEqual(driver.uri_to_test('https://127.0.0.1:8443/https/bar.html'), 'http/tests/https/bar.html')
|
| + self.assertEqual(driver.uri_to_test('https://127.0.0.1:8443/bar.https.html'), 'http/tests/bar.https.html')
|
|
|
| def test_read_block(self):
|
| port = TestWebKitPort()
|
|
|