-
Notifications
You must be signed in to change notification settings - Fork 75
/
main.py
309 lines (266 loc) · 10.2 KB
/
main.py
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
from __future__ import print_function
import argparse
import os
import shutil
import subprocess
import tempfile
import time
from collections import defaultdict
from concurrent.futures import ThreadPoolExecutor
from functools import partial
import requests
import tornado.web
from logzero import logger
from tornado import gen, httpclient, locks
from tornado.concurrent import run_on_executor
from tornado.httpclient import AsyncHTTPClient
from tornado.ioloop import IOLoop
from tornado.log import enable_pretty_logging
import heartbeat
import idb
from utils import current_ip
from typing import Union
idevices = {}
hbc = None
class CorsMixin(object):
CORS_ORIGIN = '*'
CORS_METHODS = 'GET,POST,OPTIONS'
CORS_CREDENTIALS = True
CORS_HEADERS = "x-requested-with,authorization"
def set_default_headers(self):
self.set_header("Access-Control-Allow-Origin", self.CORS_ORIGIN)
self.set_header("Access-Control-Allow-Headers", self.CORS_HEADERS)
self.set_header('Access-Control-Allow-Methods', self.CORS_METHODS)
def options(self):
# no body
self.set_status(204)
self.finish()
class MainHandler(tornado.web.RequestHandler):
@gen.coroutine
def get(self):
yield gen.sleep(.5)
self.write("Hello, world")
class ProxyTesterhomeHandler(tornado.web.RequestHandler):
@gen.coroutine
def get(self):
body = yield self.get_testerhome()
self.write(body)
@gen.coroutine
def get_testerhome(self):
http_client = AsyncHTTPClient()
response = yield http_client.fetch("https://testerhome.com/")
raise gen.Return(response.body)
class ColdingHandler(tornado.web.RequestHandler):
""" reset device to clean state """
async def post(self, udid=None):
udid = udid or self.get_argument('udid', None)
assert udid
d = idevices.get(udid)
try:
if not d:
raise Exception("Device not found")
d.restart_wda_proxy() # change wda public port
wda_url = "http://{}:{}".format(current_ip(), d.public_port)
await d.wda_healthcheck()
await hbc.device_update({
"udid": udid,
"colding": False,
"provider": {
"wdaUrl": wda_url,
}
})
self.write({
"success": True,
"description": "Device successfully colded"
})
except Exception as e:
logger.warning("colding procedure got error: %s", e)
self.set_status(400) # bad request
self.write({
"success": False,
"description": "udid: %s not found" % udid
})
class AppInstallHandler(CorsMixin, tornado.web.RequestHandler):
executor = ThreadPoolExecutor(4)
@run_on_executor(executor='executor')
def app_install(self, udid: str, url: str):
try:
r = requests.get(url, stream=True)
if r.status_code != 200:
return {"success": False, "description": r.reason}
except Exception as e:
return {"success": False, "description": str(e)}
# tempfile.
logger.debug("%s app-install from %s", udid[:7], url)
tfile = tempfile.NamedTemporaryFile(suffix=".ipa",
prefix="tmpfile-",
dir=os.getcwd())
try:
ipa_path = tfile.name
logger.debug("%s temp ipa path: %s", udid[:7], ipa_path)
# try:
# with open(ipa_path, "wb") as tfile:
content_length = int(r.headers.get("content-length", 0))
if content_length:
for chunk in r.iter_content(chunk_size=40960):
tfile.write(chunk)
else:
shutil.copyfileobj(r.raw, tfile)
p = subprocess.Popen(
["ideviceinstaller", "-u", udid, "-i", ipa_path],
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT)
output = ""
for line in p.stdout:
line = line.decode('utf-8')
logger.debug("%s -- %s", udid[:7], line.strip())
output += line
success = "Complete" in output
exit_code = p.wait()
if not success:
return {"success": False, "description": output}
return {
"success": success,
# "bundleId": bundle_id,
"return": exit_code,
"output": output
}
except Exception as e:
return {"success": False, "status": 500, "description": str(e)}
finally:
tfile.close()
@gen.coroutine
def post(self):
udid = self.get_argument("udid")
url = self.get_argument("url")
device = idevices[udid]
ret = yield self.app_install(device.udid, url)
if not ret['success']:
self.set_status(ret.get("status", 400)) # default bad request
self.write(ret)
def make_app(**settings):
settings['template_path'] = 'templates'
settings['static_path'] = 'static'
settings['cookie_secret'] = os.environ.get("SECRET", "SECRET:_")
settings['login_url'] = '/login'
return tornado.web.Application([
(r"/", MainHandler),
(r"/testerhome", ProxyTesterhomeHandler),
(r"/devices/([^/]+)/cold", ColdingHandler),
(r"/devices/([^/]+)/app/install", AppInstallHandler),
(r"/cold", ColdingHandler),
(r"/app/install", AppInstallHandler),
], **settings)
async def _device_callback(d: idb.WDADevice,
status: str,
info: Union[dict, None] = None):
""" monitor device status """
wd = idb.WDADevice
if status == wd.status_preparing:
await hbc.device_update({
"udid": d.udid,
"provider": None, # no provider indicate not present
"colding": False,
"properties": {
"name": d.name,
"product": d.product,
"brand": "Apple",
}
})
elif status == wd.status_ready:
logger.debug("%s %s", d, "healthcheck passed")
assert isinstance(info, dict)
info = defaultdict(dict, info)
await hbc.device_update({
# "colding": False,
"udid": d.udid,
"provider": {
"wdaUrl": "http://{}:{}".format(current_ip(), d.public_port)
},
"properties": {
"ip": info['value']['ios']['ip'],
"version": info['value']['os']['version'],
"sdkVersion": info['value']['os']['sdkVersion'],
}
}) # yapf: disable
elif status == wd.status_fatal:
await hbc.device_update({
"udid": d.udid,
"provider": None,
})
else:
logger.error("Unknown status: %s", status)
async def device_watch(wda_directory: str, manually_start_wda: bool, use_tidevice: bool, wda_bundle_pattern: bool):
"""
When iOS device plugin, launch WDA
"""
lock = locks.Lock() # WDA launch one by one
async for event in idb.track_devices():
if event.udid.startswith("ffffffffffffffffff"):
logger.debug("Invalid event: %s", event)
continue
logger.debug("Event: %s", event)
if event.present:
d = idb.WDADevice(event.udid, lock=lock, callback=_device_callback)
d.wda_directory = wda_directory
d.manually_start_wda = manually_start_wda
d.use_tidevice = use_tidevice
d.wda_bundle_pattern = wda_bundle_pattern
idevices[event.udid] = d
d.start()
else: # offline
await idevices[event.udid].stop()
idevices.pop(event.udid)
async def async_main():
parser = argparse.ArgumentParser(
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument('-d',
'--debug',
action="store_true",
help="enable debug mode")
parser.add_argument('-p',
'--port',
type=int,
default=3600,
help='listen port')
parser.add_argument("-s",
"--server",
type=str,
default="localhost:4000",
required=False,
help="server address")
parser.add_argument("-W",
"--wda-directory",
default="./WebDriverAgent",
help="WebDriverAgent source directory")
parser.add_argument("--manually-start-wda",
action="store_true",
help="Start wda manually like using tidevice(with xctest). Then atx won't start WebDriverAgent")
parser.add_argument("--use-tidevice",
action="store_true",
help="Start wda automatically using tidevice command. Only works when not using manually-start-wda")
parser.add_argument("--wda-bundle-pattern",
type=str,
default="*WebDriverAgent*",
required=False,
help="If using --use-tidevice, can override wda bundle name pattern manually")
args = parser.parse_args()
# start server
enable_pretty_logging()
app = make_app(debug=args.debug)
app.listen(args.port)
global hbc
self_url = "http://{}:{}".format(current_ip(), args.port)
server_addr = args.server.replace("http://", "").replace("/", "")
hbc = await heartbeat.heartbeat_connect(server_addr,
platform='apple',
self_url=self_url)
await device_watch(args.wda_directory, args.manually_start_wda, args.use_tidevice, args.wda_bundle_pattern)
if __name__ == "__main__":
try:
IOLoop.current().run_sync(async_main)
# IOLoop.instance().start()
except KeyboardInterrupt:
IOLoop.instance().stop()
for d in idevices.values():
d.destroy()