2021-03-01 15:46:50 +01:00
|
|
|
# Leave the powered by Sauce Labs bit in as this means we get additional concurrency
|
|
|
|
name: "Frontend tests powered by Sauce Labs"
|
2020-11-24 19:12:41 +01:00
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
withoutplugins:
|
|
|
|
name: without plugins
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2021-02-17 10:30:15 +01:00
|
|
|
- name: Generate Sauce Labs strings
|
|
|
|
id: sauce_strings
|
|
|
|
run: |
|
|
|
|
printf %s\\n '::set-output name=name::${{ github.workflow }} - ${{ github.job }}'
|
|
|
|
printf %s\\n '::set-output name=tunnel_id::${{ github.run_id }}-${{ github.run_number }}-${{ github.job }}'
|
|
|
|
|
2020-11-24 19:12:41 +01:00
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2021-02-09 07:02:16 +01:00
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: 12
|
|
|
|
|
2020-11-24 19:12:41 +01:00
|
|
|
- name: Install all dependencies and symlink for ep_etherpad-lite
|
2021-02-05 00:43:27 +01:00
|
|
|
run: src/bin/installDeps.sh
|
2020-11-24 19:12:41 +01:00
|
|
|
|
|
|
|
- name: export GIT_HASH to env
|
|
|
|
id: environment
|
|
|
|
run: echo "::set-output name=sha_short::$(git rev-parse --short ${{ github.sha }})"
|
|
|
|
|
2021-02-22 10:06:58 +01:00
|
|
|
- name: Create settings.json
|
|
|
|
run: cp settings.json.template settings.json
|
2020-11-24 19:12:41 +01:00
|
|
|
|
2021-02-22 10:12:33 +01:00
|
|
|
- name: Disable import/export rate limiting
|
|
|
|
run: |
|
|
|
|
sed -e '/^ *"importExportRateLimiting":/,/^ *\}/ s/"max":.*/"max": 0/' -i settings.json
|
|
|
|
|
2021-03-01 14:02:43 +01:00
|
|
|
- uses: saucelabs/sauce-connect-action@v1
|
2021-02-15 16:35:04 +01:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.SAUCE_USERNAME }}
|
|
|
|
accessKey: ${{ secrets.SAUCE_ACCESS_KEY }}
|
2021-02-17 10:30:15 +01:00
|
|
|
tunnelIdentifier: ${{ steps.sauce_strings.outputs.tunnel_id }}
|
2021-02-15 16:35:04 +01:00
|
|
|
|
2020-11-24 19:12:41 +01:00
|
|
|
- name: Run the frontend tests
|
|
|
|
shell: bash
|
|
|
|
env:
|
|
|
|
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
|
|
|
|
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
|
2021-02-17 10:30:15 +01:00
|
|
|
SAUCE_NAME: ${{ steps.sauce_strings.outputs.name }}
|
|
|
|
TRAVIS_JOB_NUMBER: ${{ steps.sauce_strings.outputs.tunnel_id }}
|
2020-11-24 19:12:41 +01:00
|
|
|
GIT_HASH: ${{ steps.environment.outputs.sha_short }}
|
|
|
|
run: |
|
2021-02-05 00:43:27 +01:00
|
|
|
src/tests/frontend/travis/runner.sh
|
2020-11-24 19:12:41 +01:00
|
|
|
|
|
|
|
withplugins:
|
|
|
|
name: with plugins
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2021-02-17 10:30:15 +01:00
|
|
|
- name: Generate Sauce Labs strings
|
|
|
|
id: sauce_strings
|
|
|
|
run: |
|
|
|
|
printf %s\\n '::set-output name=name::${{ github.workflow }} - ${{ github.job }}'
|
|
|
|
printf %s\\n '::set-output name=tunnel_id::${{ github.run_id }}-${{ github.run_number }}-${{ github.job }}'
|
|
|
|
|
2020-11-24 19:12:41 +01:00
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2021-02-09 07:02:16 +01:00
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: 12
|
|
|
|
|
2021-01-24 00:04:20 +01:00
|
|
|
- name: Install Etherpad plugins
|
2021-02-16 01:10:55 +01:00
|
|
|
# The --legacy-peer-deps flag is required to work around a bug in npm v7:
|
|
|
|
# https://github.com/npm/cli/issues/2199
|
2021-01-24 00:04:20 +01:00
|
|
|
run: >
|
2021-02-16 01:10:55 +01:00
|
|
|
npm install --no-save --legacy-peer-deps
|
2021-01-24 00:04:20 +01:00
|
|
|
ep_align
|
|
|
|
ep_author_hover
|
|
|
|
ep_cursortrace
|
2021-02-28 10:26:43 +01:00
|
|
|
ep_embedmedia
|
2021-01-24 00:04:20 +01:00
|
|
|
ep_font_size
|
|
|
|
ep_hash_auth
|
|
|
|
ep_headings2
|
2021-02-12 15:01:52 +01:00
|
|
|
ep_image_upload
|
2021-01-24 00:04:20 +01:00
|
|
|
ep_markdown
|
|
|
|
ep_readonly_guest
|
|
|
|
ep_set_title_on_pad
|
|
|
|
ep_spellcheck
|
|
|
|
ep_subscript_and_superscript
|
|
|
|
ep_table_of_contents
|
2020-11-24 19:12:41 +01:00
|
|
|
|
2021-01-24 00:06:50 +01:00
|
|
|
# This must be run after installing the plugins, otherwise npm will try to
|
|
|
|
# hoist common dependencies by removing them from src/node_modules and
|
|
|
|
# installing them in the top-level node_modules. As of v6.14.10, npm's hoist
|
|
|
|
# logic appears to be buggy, because it sometimes removes dependencies from
|
|
|
|
# src/node_modules but fails to add them to the top-level node_modules. Even
|
|
|
|
# if npm correctly hoists the dependencies, the hoisting seems to confuse
|
|
|
|
# tools such as `npm outdated`, `npm update`, and some ESLint rules.
|
|
|
|
- name: Install all dependencies and symlink for ep_etherpad-lite
|
2021-02-05 00:43:27 +01:00
|
|
|
run: src/bin/installDeps.sh
|
2021-01-24 00:06:50 +01:00
|
|
|
|
2020-11-24 19:12:41 +01:00
|
|
|
- name: export GIT_HASH to env
|
|
|
|
id: environment
|
|
|
|
run: echo "::set-output name=sha_short::$(git rev-parse --short ${{ github.sha }})"
|
|
|
|
|
2021-02-22 10:06:58 +01:00
|
|
|
- name: Create settings.json
|
|
|
|
run: cp settings.json.template settings.json
|
2020-11-24 19:12:41 +01:00
|
|
|
|
2021-02-22 10:12:33 +01:00
|
|
|
- name: Disable import/export rate limiting
|
|
|
|
run: |
|
|
|
|
sed -e '/^ *"importExportRateLimiting":/,/^ *\}/ s/"max":.*/"max": 0/' -i settings.json
|
|
|
|
|
2020-11-24 19:12:41 +01:00
|
|
|
# XXX we should probably run all tests, because plugins could effect their results
|
|
|
|
- name: Remove standard frontend test files, so only plugin tests are run
|
2021-02-05 00:43:27 +01:00
|
|
|
run: rm src/tests/frontend/specs/*
|
2020-11-24 19:12:41 +01:00
|
|
|
|
2021-03-01 14:02:43 +01:00
|
|
|
- uses: saucelabs/sauce-connect-action@v1
|
2021-02-15 16:35:04 +01:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.SAUCE_USERNAME }}
|
|
|
|
accessKey: ${{ secrets.SAUCE_ACCESS_KEY }}
|
2021-02-17 10:30:15 +01:00
|
|
|
tunnelIdentifier: ${{ steps.sauce_strings.outputs.tunnel_id }}
|
2021-02-15 16:35:04 +01:00
|
|
|
|
2020-11-24 19:12:41 +01:00
|
|
|
- name: Run the frontend tests
|
|
|
|
shell: bash
|
|
|
|
env:
|
|
|
|
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
|
|
|
|
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
|
2021-02-17 10:30:15 +01:00
|
|
|
SAUCE_NAME: ${{ steps.sauce_strings.outputs.name }}
|
|
|
|
TRAVIS_JOB_NUMBER: ${{ steps.sauce_strings.outputs.tunnel_id }}
|
2020-11-24 19:12:41 +01:00
|
|
|
GIT_HASH: ${{ steps.environment.outputs.sha_short }}
|
|
|
|
run: |
|
2021-02-05 00:43:27 +01:00
|
|
|
src/tests/frontend/travis/runner.sh
|