blob: bb08bb0f271c64d24b11ca09cfaef2e17fdb036e [file] [log] [blame]
Viktar Donichdbe8aa82017-06-23 16:04:04 -07001#!/bin/sh
2
3set -ex
4
5t=$(mktemp -d || mktemp -d -t wct-XXXXXXXXXX)
6components=$TEST_SRCDIR/gerrit/polygerrit-ui/app/test_components.zip
7code=$TEST_SRCDIR/gerrit/polygerrit-ui/app/polygerrit_embed_ui.zip
8index=$TEST_SRCDIR/gerrit/polygerrit-ui/app/embed/test.html
9tests=$TEST_SRCDIR/gerrit/polygerrit-ui/app/embed/*_test.html
10
11unzip -qd $t $components
12unzip -qd $t $code
13mkdir -p $t/test
14cp $index $t/test/
15cp $tests $t/test/
16
Paladox nonef633e0d2018-01-17 19:23:26 +000017if [ "${WCT_HEADLESS_MODE:-0}" != "0" ]; then
18 CHROME_OPTIONS=[\'start-maximized\',\'headless\',\'disable-gpu\',\'no-sandbox\']
Paladox none703a7e62018-11-17 15:29:45 +000019 FIREFOX_OPTIONS=[\'-headless\']
Paladox nonef633e0d2018-01-17 19:23:26 +000020else
21 CHROME_OPTIONS=[\'start-maximized\']
22 FIREFOX_OPTIONS=[\'\']
23fi
24
Viktar Donichdbe8aa82017-06-23 16:04:04 -070025# For some reason wct tries to install selenium into its node_modules
26# directory on first run. If you've installed into /usr/local and
27# aren't running wct as root, you're screwed. Turning this option off
28# through skipSeleniumInstall seems to still work, so there's that.
29
30# Sauce tests are disabled by default in order to run local tests
31# only. Run it with (saucelabs.com account required; free for open
32# source): WCT_ARGS='--plugin sauce' ./polygerrit-ui/app/embed_test.sh
33
34cat <<EOF > $t/wct.conf.js
35module.exports = {
36 'suites': ['test'],
37 'webserver': {
38 'pathMappings': [
39 {'/components/bower_components': 'bower_components'}
40 ]
41 },
42 'plugins': {
43 'local': {
Paladox nonef633e0d2018-01-17 19:23:26 +000044 'skipSeleniumInstall': true,
45 'browserOptions': {
46 'chrome': ${CHROME_OPTIONS},
47 'firefox': ${FIREFOX_OPTIONS}
48 }
Viktar Donichdbe8aa82017-06-23 16:04:04 -070049 },
50 'sauce': {
51 'disabled': true,
52 'browsers': [
53 'OS X 10.12/chrome',
54 'Windows 10/chrome',
55 'Linux/firefox',
56 'OS X 10.12/safari',
57 'Windows 10/microsoftedge'
58 ]
59 }
60 }
61 };
62EOF
63
64export PATH="$(dirname $WCT):$(dirname $NPM):$PATH"
65
66cd $t
67test -n "${WCT}"
68
69$(basename ${WCT}) ${WCT_ARGS}