# Copyright 2014-2015 ARM Limited # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # import logging import os import time from wa.framework.plugin import TargetedPlugin from wa.framework.resource import (ApkFile, JarFile, ReventFile, NO_ONE, Executable) from wa.framework.exception import WorkloadError from devlib.utils.android import ApkInfo class Workload(TargetedPlugin): """ This is the base class for the workloads executed by the framework. Each of the methods throwing NotImplementedError *must* be implemented by the derived classes. """ kind = 'workload' def init_resources(self, context): """ This method may be used to perform early resource discovery and initialization. This is invoked during the initial loading stage and before the device is ready, so cannot be used for any device-dependent initialization. This method is invoked before the workload instance is validated. """ pass def initialize(self, context): """ This method should be used to perform once-per-run initialization of a workload instance, i.e., unlike ``setup()`` it will not be invoked on each iteration. """ pass def setup(self, context): """ Perform the setup necessary to run the workload, such as copying the necessary files to the device, configuring the environments, etc. This is also the place to perform any on-device checks prior to attempting to execute the workload. """ pass def run(self, context): """ Execute the workload. This is the method that performs the actual "work" of the workload. """ pass def extract_results(self, context): """ Extract results on the target """ pass def update_output(self, context): """ Update the output within the specified execution context with the metrics and artifacts form this workload iteration. """ pass def teardown(self, context): """ Perform any final clean up for the Workload. """ pass def finalize(self, context): pass def __str__(self): return ''.format(self.name) class ApkUiautoWorkload(Workload): platform = 'android' def __init__(self, target, **kwargs): super(ApkUiautoWorkload, self).__init__(target, **kwargs) self.apk = ApkHander(self) self.gui = UiAutomatorGUI(self) def init_resources(self, context): self.apk.init_resources(context.resolver) self.gui.init_resources(context.resolver) self.gui.init_commands() def initialize(self, context): self.gui.deploy() def setup(self, context): self.apk.setup(context) self.gui.setup() def run(self, context): self.gui.run() def extract_results(self, context): self.gui.extract_results() def teardown(self, context): self.gui.teardown() self.apk.teardown() def finalize(self, context): self.gui.remove() class UiAutomatorGUI(object): stages = ['setup', 'runWorkload', 'extractResults', 'teardown'] def __init__(self, owner, package=None, klass='UiAutomation', timeout=600): self.owner = owner self.target = self.owner.target self.uiauto_package = package self.uiauto_class = klass self.timeout = timeout self.logger = logging.getLogger('gui') self.jar_file = None self.target_jar_file = None self.commands = {} self.uiauto_params = {} def init_resources(self, resolver): self.jar_file = resolver.get(JarFile(self.owner)) jar_name = os.path.basename(self.jar_file) self.target_jar_file = self.target.get_workpath(jar_name) if not self.uiauto_package: package = os.path.splitext(os.path.basename(self.jar_file))[0] self.uiauto_package = package def init_commands(self): params_dict = self.uiauto_params params_dict['workdir'] = self.target.working_directory params = '' for k, v in self.uiauto_params.iteritems(): params += ' -e {} {}'.format(k, v) for stage in self.stages: method_string = '{}.{}#{}'.format(self.uiauto_package, self.uiauto_class, stage) cmd_template = 'uiautomator runtest {}{} -c {}' self.commands[stage] = cmd_template.format(self.target_jar_file, params, method_string) def deploy(self): self.target.push(self.jar_file, self.target_jar_file) def set(self, name, value): self.uiauto_params[name] = value def setup(self, timeout=None): if not self.commands: raise RuntimeError('Commands have not been initialized') self.target.killall('uiautomator') self._execute('setup', timeout or self.timeout) def run(self, timeout=None): if not self.commands: raise RuntimeError('Commands have not been initialized') self._execute('runWorkload', timeout or self.timeout) def extract_results(self, timeout=None): if not self.commands: raise RuntimeError('Commands have not been initialized') self._execute('extractResults', timeout or self.timeout) def teardown(self, timeout=None): if not self.commands: raise RuntimeError('Commands have not been initialized') self._execute('teardown', timeout or self.timeout) def remove(self): self.target.remove(self.target_jar_file) def _execute(self, stage, timeout): result = self.target.execute(self.commands[stage], timeout) if 'FAILURE' in result: raise WorkloadError(result) else: self.logger.debug(result) time.sleep(2) class ReventGUI(object): def __init__(self, workload, target, setup_timeout=5 * 60, run_timeout=10 * 60): self.workload = workload self.target = target self.setup_timeout = setup_timeout self.run_timeout = run_timeout self.on_target_revent_binary = self.target.get_workpath('revent') self.on_target_setup_revent = self.target.get_workpath('{}.setup.revent'.format(self.target.name)) self.on_target_run_revent = self.target.get_workpath('{}.run.revent'.format(self.target.name)) self.logger = logging.getLogger('revent') self.revent_setup_file = None self.revent_run_file = None def init_resources(self, context): self.revent_setup_file = context.resolver.get(ReventFile(self.workload, 'setup')) self.revent_run_file = context.resolver.get(ReventFile(self.workload, 'run')) def setup(self, context): self._check_revent_files(context) self.target.killall('revent') command = '{} replay {}'.format(self.on_target_revent_binary, self.on_target_setup_revent) self.target.execute(command, timeout=self.setup_timeout) def run(self, context): command = '{} replay {}'.format(self.on_target_revent_binary, self.on_target_run_revent) self.logger.debug('Replaying {}'.format(os.path.basename(self.on_target_run_revent))) self.target.execute(command, timeout=self.run_timeout) self.logger.debug('Replay completed.') def teardown(self, context): self.target.remove(self.on_target_setup_revent) self.target.remove(self.on_target_run_revent) def _check_revent_files(self, context): # check the revent binary revent_binary = context.resolver.get(Executable(NO_ONE, self.target.abi, 'revent')) if not os.path.isfile(revent_binary): message = '{} does not exist. '.format(revent_binary) message += 'Please build revent for your system and place it in that location' raise WorkloadError(message) if not self.revent_setup_file: # pylint: disable=too-few-format-args message = '{0}.setup.revent file does not exist, Please provide one for your target, {0}' raise WorkloadError(message.format(self.target.name)) if not self.revent_run_file: # pylint: disable=too-few-format-args message = '{0}.run.revent file does not exist, Please provide one for your target, {0}' raise WorkloadError(message.format(self.target.name)) self.on_target_revent_binary = self.target.install(revent_binary) self.target.push(self.revent_run_file, self.on_target_run_revent) self.target.push(self.revent_setup_file, self.on_target_setup_revent) class ApkHander(object): def __init__(self, owner, install_timeout=300, version=None, variant=None, strict=True, force_install=False, uninstall=False): self.logger = logging.getLogger('apk') self.owner = owner self.target = self.owner.target self.install_timeout = install_timeout self.version = version self.variant = variant self.strict = strict self.force_install = force_install self.uninstall = uninstall self.apk_file = None self.apk_info = None self.apk_version = None self.logcat_log = None def init_resources(self, resolver): self.apk_file = resolver.get(ApkFile(self.owner, variant=self.variant, version=self.version), strict=self.strict) self.apk_info = ApkInfo(self.apk_file) def setup(self, context): self.initialize_package(context) self.start_activity() self.target.execute('am kill-all') # kill all *background* activities self.target.clear_logcat() def initialize_package(self, context): installed_version = self.target.get_package_version(self.apk_info.package) if self.strict: self.initialize_with_host_apk(context, installed_version) else: if not installed_version: message = '{} not found found on the device and check_apk is set '\ 'to "False" so host version was not checked.' raise WorkloadError(message.format(self.apk_info.package)) message = 'Version {} installed on device; skipping host APK check.' self.logger.debug(message.format(installed_version)) self.reset(context) self.version = installed_version def initialize_with_host_apk(self, context, installed_version): host_version = self.apk_info.version_name if installed_version != host_version: if installed_version: message = '{} host version: {}, device version: {}; re-installing...' self.logger.debug(message.format(os.path.basename(self.apk_file), host_version, installed_version)) else: message = '{} host version: {}, not found on device; installing...' self.logger.debug(message.format(os.path.basename(self.apk_file), host_version)) self.force_install = True # pylint: disable=attribute-defined-outside-init else: message = '{} version {} found on both device and host.' self.logger.debug(message.format(os.path.basename(self.apk_file), host_version)) if self.force_install: if installed_version: self.target.uninstall_package(self.apk_info.package) self.install_apk(context) else: self.reset(context) self.apk_version = host_version def start_activity(self): cmd = 'am start -W -n {}/{}' output = self.target.execute(cmd.format(self.apk_info.package, self.apk_info.activity)) if 'Error:' in output: # this will dismiss any error dialogs self.target.execute('am force-stop {}'.format(self.apk_info.package)) raise WorkloadError(output) self.logger.debug(output) def reset(self, context): # pylint: disable=W0613 self.target.execute('am force-stop {}'.format(self.apk_info.package)) self.target.execute('pm clear {}'.format(self.apk_info.package)) def install_apk(self, context): output = self.target.install_apk(self.apk_file, self.install_timeout) if 'Failure' in output: if 'ALREADY_EXISTS' in output: msg = 'Using already installed APK (did not unistall properly?)' self.logger.warn(msg) else: raise WorkloadError(output) else: self.logger.debug(output) def teardown(self): self.target.execute('am force-stop {}'.format(self.apk_info.package)) if self.uninstall: self.target.uninstall_package(self.apk_info.package)