1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
import os
import time
import pytest
import socket
from ppadb import ClearError, InstallError
def test_install_uninstall_success(device):
dir_path = os.path.dirname(os.path.realpath(__file__))
result = device.install(os.path.join(dir_path, "resources/apk/app-x86.apk"),
reinstall=True,
downgrade=True)
assert result is True
with pytest.raises(InstallError) as excinfo:
device.install(os.path.join(dir_path, "resources/apk/app-x86.apk"))
assert "INSTALL_FAILED_ALREADY_EXISTS" in str(excinfo.value)
result = device.is_installed('com.cloudmosa.helloworldapk')
assert result is True
result = device.uninstall("com.cloudmosa.helloworldapk")
assert result is True
result = device.uninstall("com.cloudmosa.helloworldapk")
assert result is False
result = device.is_installed('com.cloudmosa.helloworldapk')
assert result is False
def test_uninstall_not_exist_package(device):
result = device.uninstall("com.cloudmosa.not.exist")
assert result is False
def test_list_features(device):
features = device.list_features()
assert "reqGlEsVersion" in features
assert "android.hardware.sensor.barometer" in features
assert features["reqGlEsVersion"] == "0x20000"
assert features["android.hardware.sensor.barometer"] is True
def test_clear(device):
result = device.clear("com.android.chrome")
assert result is True
with pytest.raises(ClearError) as excinfo:
result = device.clear("com.android.not.exist.package")
assert "Package com.android.not.exist.package could not be cleared - [Failed]" in str(excinfo.value)
def test_list_packages(device):
packages = device.list_packages()
assert "com.android.chrome" in packages
assert "com.android.shell" in packages
def test_get_properties(device):
properties = device.get_properties()
assert "ro.product.device" in properties
assert "ro.product.model" in properties
def test_list_reverses(device):
result = device.list_reverses()
assert result is not None
def test_reboot_than_wait_boot(device):
result = device.reboot()
assert device.wait_boot_complete() is True
def test_get_version_name(device):
result = device.get_package_version_name("com.android.chrome")
assert result is not None
def test_shell_echo_sleep_long_time(device):
result = device.shell("sleep 30;echo passed")
assert "passed" in result
def test_shell_echo_timeout(device):
with pytest.raises(socket.timeout) as excinfo:
device.shell("sleep 60;echo passed", timeout=10)
assert "timed out" in str(excinfo.value)
def test_get_top_activity(device):
activity = device.get_top_activity()
assert activity is not None
def test_get_top_activities(device):
activities = device.get_top_activities()
assert len(activities) != 0
def test_pull(device):
import hashlib
device.shell("screencap -p /sdcard/screen.png")
checksum = device.shell("md5sum -b /sdcard/screen.png").strip()
device.pull("/sdcard/screen.png", "./screen.png")
hash_md5 = hashlib.md5()
with open("./screen.png", "rb") as fp:
for chunk in iter(lambda: fp.read(4096), b""):
hash_md5.update(chunk)
pull_checksum = hash_md5.hexdigest()
assert checksum == pull_checksum
def test_push_stat(device):
dir_path = os.path.dirname(os.path.realpath(__file__))
apk_path = os.path.join(dir_path, "resources/apk/app-x86.apk")
device.push(apk_path, "/sdcard/test.apk")
stat = os.stat(apk_path)
result = device.shell("stat /sdcard/test.apk -c %X")
if int(device.shell("getprop ro.build.version.sdk")) >= 27:
assert int(result) == int(stat.st_mtime)
else:
timestamp = int(time.time())
assert timestamp - 10 <= int(result) <= timestamp + 10
def test_push_dir(device):
dir_path = os.path.dirname(os.path.realpath(__file__))
apk_path = os.path.join(dir_path, "resources/apk")
device.push(apk_path, "/sdcard")
result = device.shell("ls /sdcard/apk")
assert "app-armeabi-v7a.apk" in result
assert "app-x86.apk" in result
def test_push_with_progress(device):
dir_path = os.path.dirname(os.path.realpath(__file__))
apk_path = os.path.join(dir_path, "resources/apk/app-x86.apk")
result = []
def progress(file_name, total_size, sent_size):
result.append({
"file_name": file_name,
"total_size": total_size,
"sent_size": sent_size
})
device.push(apk_path, "/sdcard/test.apk", progress=progress)
assert result
assert result[-1]["total_size"] == result[-1]["sent_size"]
def test_forward(device):
device.killforward_all()
forward_map = device.list_forward()
assert not forward_map
device.forward("tcp:6000", "tcp:7000")
device.forward("tcp:6001", "tcp:7001")
device.forward("tcp:6002", "tcp:7002")
forward_map = device.list_forward()
assert forward_map['tcp:6000'] == "tcp:7000"
assert forward_map['tcp:6001'] == "tcp:7001"
assert forward_map['tcp:6002'] == "tcp:7002"
device.killforward("tcp:6000")
forward_map = device.list_forward()
assert "tcp:6000" not in forward_map
assert forward_map['tcp:6001'] == "tcp:7001"
assert forward_map['tcp:6002'] == "tcp:7002"
device.killforward_all()
forward_map = device.list_forward()
assert not forward_map
@pytest.mark.skip
def test_killforward_all(client, device):
"""
This testcase need two emulators for testing,
But the android docker container can'd execute two emulators at the same time.
If you want to execute this testcase,
you need to start two emulators 'emulator-5554' and 'emualtor-5556' on your machine.
"""
device2 = client.device("emulator-5556")
device.forward("tcp:6001", "tcp:6001")
device2.forward("tcp:6002", "tcp:6002")
forward_map = device.list_forward()
assert forward_map['tcp:6001'] == "tcp:6001"
assert "tcp:6002" not in forward_map
device.killforward_all()
forward_map = device.list_forward()
assert "tcp:6001" not in forward_map
forward_map = client.list_forward()
assert "emulator-5556" in forward_map
assert forward_map["emulator-5556"]["tcp:6002"] == "tcp:6002"
client.killforward_all()
forward_map = client.list_forward()
assert not forward_map
|