-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwpt_agent.py
33 lines (24 loc) · 930 Bytes
/
wpt_agent.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
#!/usr/bin/python
import logging
from client.process import run
from client.agent import Agent
from client.log import init_log
import argparse
#
# wpt_agent.py [-h] [-v] [--cmd CMD] url location
#
logger = logging.getLogger("wpt_agent")
parser = argparse.ArgumentParser(description='WPT Agent', prog='wpt_agent.py')
parser.add_argument('-v', '--verbose', action='count',
help="Increase verbosity (specify multiple times for more). -vvvv for full debug output.")
parser.add_argument('url', help="base url")
parser.add_argument('location', help="location name")
parser.add_argument('--cmd')
options = parser.parse_args()
init_log(options.verbose, "client.agent", "wpt_agent")
def job(test_id, result_dir):
cmd = "%s %s %s/%s" % (options.cmd, result_dir, result_dir, "test.job")
logger.info("Executing cmd '%s'" % cmd)
run(cmd)
agent = Agent(options.url, options.location, job)
agent.start()