mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
34 lines
1.0 KiB
Python
34 lines
1.0 KiB
Python
# Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
"""Class representing uiautomator test package."""
|
|
|
|
import os
|
|
|
|
from pylib import constants
|
|
from pylib.instrumentation import test_jar
|
|
|
|
|
|
class TestPackage(test_jar.TestJar):
|
|
|
|
UIAUTOMATOR_PATH = 'uiautomator/'
|
|
UIAUTOMATOR_DEVICE_DIR = os.path.join(constants.TEST_EXECUTABLE_DIR,
|
|
UIAUTOMATOR_PATH)
|
|
|
|
def __init__(self, jar_path, jar_info_path):
|
|
test_jar.TestJar.__init__(self, jar_info_path)
|
|
|
|
if not os.path.exists(jar_path):
|
|
raise Exception('%s not found, please build it' % jar_path)
|
|
self._jar_path = jar_path
|
|
|
|
def GetPackageName(self):
|
|
"""Returns the JAR named that is installed on the device."""
|
|
return os.path.basename(self._jar_path)
|
|
|
|
# Override.
|
|
def Install(self, device):
|
|
device.PushChangedFiles([(self._jar_path, self.UIAUTOMATOR_DEVICE_DIR +
|
|
self.GetPackageName())])
|