mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-01-31 18:21:14 +00:00
90 lines
3.8 KiB
Python
Executable File
90 lines
3.8 KiB
Python
Executable File
# Copyright 2014-2016 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 os
|
|
|
|
from wlauto import AndroidUxPerfWorkload, Parameter, File
|
|
from wlauto.exceptions import ValidationError
|
|
from wlauto.utils.types import list_of_strings
|
|
from wlauto.utils.misc import unique
|
|
|
|
|
|
class Googlephotos(AndroidUxPerfWorkload):
|
|
|
|
name = 'googlephotos'
|
|
package = 'com.google.android.apps.photos'
|
|
min_apk_version = '1.21.0.123444480'
|
|
activity = 'com.google.android.apps.photos.home.HomeActivity'
|
|
view = [package + '/com.google.android.apps.consumerphotoeditor.fragments.ConsumerPhotoEditorActivity',
|
|
package + '/com.google.android.apps.photos.home.HomeActivity',
|
|
package + '/com.google.android.apps.photos.localmedia.ui.LocalPhotosActivity',
|
|
package + '/com.google.android.apps.photos.onboarding.AccountPickerActivity',
|
|
package + '/com.google.android.apps.photos.onboarding.IntroActivity']
|
|
description = """
|
|
A workload to perform standard productivity tasks with Google Photos. The workload carries out
|
|
various tasks, such as browsing images, performing zooms, and post-processing the image.
|
|
|
|
Test description:
|
|
1. Four images are copied to the device
|
|
2. The application is started in offline access mode
|
|
3. Gestures are performed to swipe between images and pinch zoom in and out of the selected
|
|
image
|
|
4. The colour of a selected image is edited by selecting the colour menu, incrementing the
|
|
colour, resetting the colour and decrementing the colour using the seek bar.
|
|
5. A crop test is performed on a selected image. UiAutomator does not allow the selection of
|
|
the crop markers so the image is tilted positively, reset and then tilted negatively to get a
|
|
similar cropping effect.
|
|
6. A rotate test is performed on a selected image, rotating anticlockwise 90 degrees, 180
|
|
degrees and 270 degrees.
|
|
"""
|
|
|
|
default_test_images = [
|
|
'uxperf_1200x1600.png', 'uxperf_1600x1200.jpg',
|
|
'uxperf_2448x3264.png', 'uxperf_3264x2448.jpg',
|
|
]
|
|
|
|
parameters = [
|
|
Parameter('test_images', kind=list_of_strings, default=default_test_images,
|
|
constraint=lambda x: len(unique(x)) == 4,
|
|
description="""
|
|
A list of four JPEG and/or PNG files to be pushed to the device.
|
|
Absolute file paths may be used but tilde expansion must be escaped.
|
|
"""),
|
|
]
|
|
|
|
def __init__(self, device, **kwargs):
|
|
super(Googlephotos, self).__init__(device, **kwargs)
|
|
self.deployable_assets = self.test_images
|
|
|
|
def validate(self):
|
|
super(Googlephotos, self).validate()
|
|
|
|
for image in self.test_images:
|
|
if os.path.splitext(image.lower())[1] not in ['.jpg', '.jpeg', '.png']:
|
|
raise ValidationError('{} must be a JPEG or PNG file'.format(image))
|
|
|
|
def setup(self, context):
|
|
super(Googlephotos, self).setup(context)
|
|
self.device.broadcast_media_mounted(self.device.working_directory)
|
|
|
|
def teardown(self, context):
|
|
super(Googlephotos, self).teardown(context)
|
|
self.device.broadcast_media_mounted(self.device.working_directory)
|
|
|
|
def finalize(self, context):
|
|
super(Googlephotos, self).finalize(context)
|
|
self.delete_assets()
|
|
self.device.broadcast_media_mounted(self.device.working_directory)
|