blob: 4f612825765210e26eff7c19cd95324527a82e16 [file] [log] [blame]
# Copyright (C) 2017 Apple Inc. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. 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.
#
# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS 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 APPLE INC. OR ITS 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 time
from webkitpy.common.system.outputcapture import OutputCapture
from webkitpy.common.system.executive_mock import MockExecutive2, ScriptError
from webkitpy.common.version import Version
from webkitpy.port.ios_device import IOSDevicePort
from webkitpy.port import ios_testcase
from webkitpy.port import port_testcase
from webkitpy.xcode.device_type import DeviceType
class IOSDeviceTest(ios_testcase.IOSTest):
os_name = 'ios'
os_version = None
port_name = 'ios-device'
port_maker = IOSDevicePort
def test_operating_system(self):
self.assertEqual('ios-device', self.make_port().operating_system())
def test_crashlog_path(self):
port = self.make_port()
with self.assertRaises(RuntimeError):
port.path_to_crash_logs()
def test_spindump(self):
def logging_run_command(args):
print(args)
port = self.make_port()
port.host.filesystem.files['/__im_tmp/tmp_0_/test-42-spindump.txt'] = 'Spindump file'
port.host.executive = MockExecutive2(run_command_fn=logging_run_command)
expected_stdout = "['/usr/sbin/spindump', 42, 10, 10, '-file', '/__im_tmp/tmp_0_/test-42-spindump.txt']\n"
OutputCapture().assert_outputs(self, port.sample_process, args=['test', 42], expected_stdout=expected_stdout)
self.assertEqual(port.host.filesystem.files['/mock-build/layout-test-results/test-42-spindump.txt'], 'Spindump file')
self.assertIsNone(port.host.filesystem.files['/__im_tmp/tmp_0_/test-42-spindump.txt'])
def test_sample_process(self):
def logging_run_command(args):
if args[0] == '/usr/sbin/spindump':
return 1
print(args)
return 0
port = self.make_port()
port.host.filesystem.files['/__im_tmp/tmp_0_/test-42-sample.txt'] = 'Sample file'
port.host.executive = MockExecutive2(run_command_fn=logging_run_command)
expected_stdout = "['/usr/bin/sample', 42, 10, 10, '-file', '/__im_tmp/tmp_0_/test-42-sample.txt']\n"
OutputCapture().assert_outputs(self, port.sample_process, args=['test', 42], expected_stdout=expected_stdout)
self.assertEqual(port.host.filesystem.files['/mock-build/layout-test-results/test-42-sample.txt'], 'Sample file')
self.assertIsNone(port.host.filesystem.files['/__im_tmp/tmp_0_/test-42-sample.txt'])
def test_sample_process_exception(self):
def throwing_run_command(args):
if args[0] == '/usr/sbin/spindump':
return 1
raise ScriptError('MOCK script error')
port = self.make_port()
port.host.executive = MockExecutive2(run_command_fn=throwing_run_command)
OutputCapture().assert_outputs(self, port.sample_process, args=['test', 42])
def test_get_crash_log(self):
port = self.make_port(port_name=self.port_name)
self.assertEqual((None, None), port._get_crash_log('DumpRenderTree', 1234, None, None, time.time(), wait_for_log=False))
def test_layout_test_searchpath_with_apple_additions(self):
with port_testcase.bind_mock_apple_additions():
search_path = self.make_port().default_baseline_search_path()
self.assertEqual(search_path, [
'/additional_testing_path/ios-device-add-ios11-wk1',
'/mock-checkout/LayoutTests/platform/ios-device-11-wk1',
'/additional_testing_path/ios-device-add-ios11',
'/mock-checkout/LayoutTests/platform/ios-device-11',
'/additional_testing_path/ios-device-wk1',
'/mock-checkout/LayoutTests/platform/ios-device-wk1',
'/additional_testing_path/ios-device',
'/mock-checkout/LayoutTests/platform/ios-device',
'/additional_testing_path/ios-add-ios11-wk1',
'/mock-checkout/LayoutTests/platform/ios-11-wk1',
'/additional_testing_path/ios-add-ios11',
'/mock-checkout/LayoutTests/platform/ios-11',
'/additional_testing_path/ios-wk1',
'/mock-checkout/LayoutTests/platform/ios-wk1',
'/additional_testing_path/ios',
'/mock-checkout/LayoutTests/platform/ios',
])
def test_layout_test_searchpath_without_apple_additions(self):
search_path = self.make_port(port_name='ios-device-wk2', os_version=Version(12)).default_baseline_search_path()
self.assertEqual(search_path, [
'/mock-checkout/LayoutTests/platform/ios-device-12-wk2',
'/mock-checkout/LayoutTests/platform/ios-device-12',
'/mock-checkout/LayoutTests/platform/ios-device-wk2',
'/mock-checkout/LayoutTests/platform/ios-device',
'/mock-checkout/LayoutTests/platform/ios-12-wk2',
'/mock-checkout/LayoutTests/platform/ios-12',
'/mock-checkout/LayoutTests/platform/ios-wk2',
'/mock-checkout/LayoutTests/platform/ios',
'/mock-checkout/LayoutTests/platform/wk2',
])
def test_layout_searchpath_wih_device_type(self):
search_path = self.make_port(port_name='ios-device-wk2', os_version=Version(12)).default_baseline_search_path(DeviceType.from_string('iPhone SE'))
self.assertEqual(search_path, [
'/mock-checkout/LayoutTests/platform/iphone-se-device-12-wk2',
'/mock-checkout/LayoutTests/platform/iphone-se-device-12',
'/mock-checkout/LayoutTests/platform/iphone-se-device-wk2',
'/mock-checkout/LayoutTests/platform/iphone-se-device',
'/mock-checkout/LayoutTests/platform/iphone-device-12-wk2',
'/mock-checkout/LayoutTests/platform/iphone-device-12',
'/mock-checkout/LayoutTests/platform/iphone-device-wk2',
'/mock-checkout/LayoutTests/platform/iphone-device',
'/mock-checkout/LayoutTests/platform/ios-device-12-wk2',
'/mock-checkout/LayoutTests/platform/ios-device-12',
'/mock-checkout/LayoutTests/platform/ios-device-wk2',
'/mock-checkout/LayoutTests/platform/ios-device',
'/mock-checkout/LayoutTests/platform/iphone-se-12-wk2',
'/mock-checkout/LayoutTests/platform/iphone-se-12',
'/mock-checkout/LayoutTests/platform/iphone-se-wk2',
'/mock-checkout/LayoutTests/platform/iphone-se',
'/mock-checkout/LayoutTests/platform/iphone-12-wk2',
'/mock-checkout/LayoutTests/platform/iphone-12',
'/mock-checkout/LayoutTests/platform/iphone-wk2',
'/mock-checkout/LayoutTests/platform/iphone',
'/mock-checkout/LayoutTests/platform/ios-12-wk2',
'/mock-checkout/LayoutTests/platform/ios-12',
'/mock-checkout/LayoutTests/platform/ios-wk2',
'/mock-checkout/LayoutTests/platform/ios',
'/mock-checkout/LayoutTests/platform/wk2',
])
def test_max_child_processes(self):
pass