| # Copyright (C) 2018 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 logging |
| |
| from webkitpy.common.memoized import memoized |
| from webkitpy.common.version import Version |
| from webkitpy.port.config import apple_additions |
| from webkitpy.port.watch import WatchPort |
| from webkitpy.xcode.device_type import DeviceType |
| from webkitpy.xcode.simulated_device import SimulatedDeviceManager |
| |
| _log = logging.getLogger(__name__) |
| |
| |
| class WatchSimulatorPort(WatchPort): |
| port_name = 'watchos-simulator' |
| |
| ARCHITECTURES = ['i386'] |
| DEFAULT_ARCHITECTURE = 'i386' |
| |
| DEVICE_MANAGER = SimulatedDeviceManager |
| |
| DEFAULT_DEVICE_TYPES = [DeviceType(hardware_family='Apple Watch', hardware_type='Series 3 - 42mm')] |
| SDK = apple_additions().get_sdk('watchsimulator') if apple_additions() else 'watchsimulator' |
| |
| def architecture(self): |
| return self.DEFAULT_ARCHITECTURE |
| |
| # This supports the mapping of a port name such as watchos-simulator-5 to the construction of a port |
| # using watchOS 5. |
| @staticmethod |
| def _version_from_name(name): |
| if len(name.split('-')) > 2 and name.split('-')[2].isdigit(): |
| return Version.from_string(name.split('-')[2]) |
| return None |
| |
| @memoized |
| def device_version(self): |
| if self.get_option('version'): |
| return Version.from_string(self.get_option('version')) |
| return WatchSimulatorPort._version_from_name(self._name) or self.host.platform.xcode_sdk_version('watchsimulator') |
| |
| def environment_for_api_tests(self): |
| inherited_env = super(WatchSimulatorPort, self).environment_for_api_tests() |
| new_environment = {} |
| SIMCTL_ENV_PREFIX = 'SIMCTL_CHILD_' |
| for value in inherited_env: |
| if not value.startswith(SIMCTL_ENV_PREFIX): |
| new_environment[SIMCTL_ENV_PREFIX + value] = inherited_env[value] |
| else: |
| new_environment[value] = inherited_env[value] |
| return new_environment |
| |
| def operating_system(self): |
| return 'watchos-simulator' |
| |
| def setup_environ_for_server(self, server_name=None): |
| _log.debug('Setting up environment for server on {}'.format(self.operating_system())) |
| env = super(WatchSimulatorPort, self).setup_environ_for_server(server_name) |
| if server_name == self.driver_name() and self.get_option('leaks'): |
| env['MallocStackLogging'] = '1' |
| env['__XPC_MallocStackLogging'] = '1' |
| env['MallocScribble'] = '1' |
| env['__XPC_MallocScribble'] = '1' |
| return env |
| |
| def reset_preferences(self): |
| SimulatedDeviceManager.tear_down(self.host) |
| |
| @property |
| @memoized |
| def developer_dir(self): |
| return self._executive.run_command(['xcode-select', '--print-path']).rstrip() |
| |
| def logging_patterns_to_strip(self): |
| return [] |
| |
| def stderr_patterns_to_strip(self): |
| return [] |