Add an option to submit test-perf result to perfherder

This commit is contained in:
Shing Lyu 2016-11-09 14:55:57 +08:00
parent 16199b4983
commit ddd03229e0
4 changed files with 38 additions and 31 deletions

View file

@ -7,27 +7,21 @@ Servo Page Load Time Test
# Basic Usage # Basic Usage
## Prepare the test runner `./mach test-perf` can be used to run a performance test on your servo build. The test result JSON will be saved to `etc/ci/performance/output/`. You can then run `python test_differ.py` to compare these two test results. Run `python test_differ.py -h` for instructions.
# Setup for CI machine
## CI for Servo
* Clone this repo
* Download [tp5n.zip](http://people.mozilla.org/~jmaher/taloszips/zips/tp5n.zip), extract it to `page_load_test/tp5n`
* Run `prepare_manifest.sh` to transform the tp5n manifest to our format
* Install the Python3 `treeherder-client` package. For example, to install it in a virtualenv: `python3 -m virtualenv venv; source venv/bin/activate; pip install "treeherder-client>=3.0.0"`
* Setup your Treeherder client ID and secret as environment variables `TREEHERDER_CLIENT_ID` and `TREEHERDER_CLIENT_SECRET` * Setup your Treeherder client ID and secret as environment variables `TREEHERDER_CLIENT_ID` and `TREEHERDER_CLIENT_SECRET`
* Run `./mach test-perf --submit` to run and submit the result to Perfherder.
## Build Servo ## CI for Gecko
* Clone the servo repo
* Compile release build
* Run `git_log_to_json.sh` in the servo repo, save the output as `revision.json`
* Put your `servo` binary, `revision.json` and `resources` folder in `etc/ci/performance/servo/`
## Run * Install Firefox Nightly in your PATH
* Activate the virutalenv: `source venv/bin/activate` * Download [geckodriver](https://github.com/mozilla/geckodriver/releases) and add it to the `PATH`
* Sync your system clock before running, the Perfherder API SSL check will fail if your system clock is not accurate. (e.g. `sudo nptdate tw.pool.ntp.org`) * `pip install selenium`
* Run `test_all.sh [--servo|--gecko] [--submit]` * Run `python gecko_driver.py` to test
- choose `servo` or `gecko` as the testing engine * Run `test_all.sh --gecko --submit`
- enable `submit`, if you want to submit to perfherder
* Test results are submitted to https://treeherder.mozilla.org/#/jobs?repo=servo
# How it works # How it works
@ -61,14 +55,6 @@ If you want to test the data submission code in `submit_to_perfherder.py` withou
* `./manage.py create_credentials <username> <email> "description"`, the email has to match your logged in user. Remember to log-in through the Web UI once before you run this. * `./manage.py create_credentials <username> <email> "description"`, the email has to match your logged in user. Remember to log-in through the Web UI once before you run this.
* Setup your Treeherder client ID and secret as environment variables `TREEHERDER_CLIENT_ID` and `TREEHERDER_CLIENT_SECRET` * Setup your Treeherder client ID and secret as environment variables `TREEHERDER_CLIENT_ID` and `TREEHERDER_CLIENT_SECRET`
## For Gecko
* Install Firefox Nightly in your PATH
* Download [geckodriver](https://github.com/mozilla/geckodriver/releases) and add it to the `PATH`
* `pip install selenium`
* Run `python gecko_driver.py` to test
# Troubleshooting # Troubleshooting
If you saw this error message: If you saw this error message:

View file

@ -57,7 +57,7 @@ then
# results appear on the same date. Use the correct result when Perfherder # results appear on the same date. Use the correct result when Perfherder
# allows us to change the date. # allows us to change the date.
python3 submit_to_perfherder.py \ python3 submit_to_perfherder.py \
"${output:-}" "${engine}" "${PERF_FILE}" servo/revision.json "${engine}" "${PERF_FILE}" servo/revision.json
fi fi
echo "Stopping the local server" echo "Stopping the local server"

View file

@ -32,6 +32,16 @@ PS1="" source venv/bin/activate
pip install "treeherder-client>=3.0.0" pip install "treeherder-client>=3.0.0"
mkdir -p servo mkdir -p servo
mkdir -p output mkdir -p output # Test result will be saved to output/perf-<timestamp>.json
./git_log_to_json.sh > servo/revision.json && \ ./git_log_to_json.sh > servo/revision.json
./test_all.sh --servo
if [[ "${#}" -eq 1 ]]; then
if [[ "${1}" = "--submit" ]]; then
./test_all.sh --servo --submit
else
echo "Unrecognized argument: ${1}; Ignore and proceed without submitting"
./test_all.sh --servo
fi
else
./test_all.sh --servo
fi

View file

@ -166,12 +166,23 @@ class MachCommands(CommandBase):
@Command('test-perf', @Command('test-perf',
description='Run the page load performance test', description='Run the page load performance test',
category='testing') category='testing')
def test_perf(self): @CommandArgument('--submit', default=False, action="store_true",
help="submit the data to perfherder")
def test_perf(self, submit=False):
self.set_software_rendering_env(True) self.set_software_rendering_env(True)
self.ensure_bootstrapped() self.ensure_bootstrapped()
env = self.build_env() env = self.build_env()
return call(["bash", "test_perf.sh"], cmd = ["bash", "test_perf.sh"]
if submit:
if not ("TREEHERDER_CLIENT_ID" in os.environ and
"TREEHERDER_CLIENT_SECRET" in os.environ):
print("Please set the environment variable \"TREEHERDER_CLIENT_ID\""
" and \"TREEHERDER_CLIENT_SECRET\" to submit the performance"
" test result to perfherder")
return 1
cmd += ["--submit"]
return call(cmd,
env=env, env=env,
cwd=path.join("etc", "ci", "performance")) cwd=path.join("etc", "ci", "performance"))