2012-10-28 15:40:42 +00:00
|
|
|
language: node_js
|
2019-12-21 08:07:11 +00:00
|
|
|
|
2012-10-28 15:40:42 +00:00
|
|
|
node_js:
|
2018-08-27 08:05:35 +00:00
|
|
|
- "lts/*"
|
2019-12-21 08:07:11 +00:00
|
|
|
|
2019-12-01 14:38:47 +00:00
|
|
|
services:
|
|
|
|
- docker
|
|
|
|
|
2020-05-29 20:42:44 +00:00
|
|
|
cache: false
|
2020-05-29 11:28:31 +00:00
|
|
|
|
2020-07-10 15:13:06 +00:00
|
|
|
before_install:
|
2020-07-16 09:46:45 +00:00
|
|
|
- sudo add-apt-repository -y ppa:libreoffice/ppa
|
|
|
|
- sudo apt-get update
|
2020-07-10 15:13:06 +00:00
|
|
|
- sudo apt-get -y install libreoffice
|
2020-07-16 09:46:45 +00:00
|
|
|
- sudo apt-get -y install libreoffice-pdfimport
|
2020-07-10 15:13:06 +00:00
|
|
|
|
2020-03-22 02:11:14 +00:00
|
|
|
install:
|
|
|
|
- "bin/installDeps.sh"
|
|
|
|
- "export GIT_HASH=$(git rev-parse --verify --short HEAD)"
|
2020-09-26 18:41:33 +00:00
|
|
|
# Installing some plugins
|
2020-03-22 02:11:14 +00:00
|
|
|
|
|
|
|
script:
|
|
|
|
- "tests/frontend/travis/runner.sh"
|
|
|
|
|
2012-10-28 16:48:51 +00:00
|
|
|
env:
|
|
|
|
global:
|
2013-06-06 17:16:04 +00:00
|
|
|
- secure: "WMGxFkOeTTlhWB+ChMucRtIqVmMbwzYdNHuHQjKCcj8HBEPdZLfCuK/kf4rG\nVLcLQiIsyllqzNhBGVHG1nyqWr0/LTm8JRqSCDDVIhpyzp9KpCJQQJG2Uwjk\n6/HIJJh/wbxsEdLNV2crYU/EiVO3A4Bq0YTHUlbhUqG3mSCr5Ec="
|
|
|
|
- secure: "gejXUAHYscbR6Bodw35XexpToqWkv2ifeECsbeEmjaLkYzXmUUNWJGknKSu7\nEUsSfQV8w+hxApr1Z+jNqk9aX3K1I4btL3cwk2trnNI8XRAvu1c1Iv60eerI\nkE82Rsd5lwUaMEh+/HoL8ztFCZamVndoNgX7HWp5J/NRZZMmh4g="
|
2019-12-21 08:07:11 +00:00
|
|
|
|
2019-12-21 09:10:35 +00:00
|
|
|
jobs:
|
2020-06-08 11:45:03 +00:00
|
|
|
include:
|
2020-06-08 12:51:57 +00:00
|
|
|
# we can only frontend tests from the ether/ organization and not from forks.
|
|
|
|
# To request tests to be run ask a maintainer to fork your repo to ether/
|
|
|
|
- if: fork = false
|
2020-09-26 18:41:33 +00:00
|
|
|
name: "Test the Frontend without Plugins"
|
2020-06-08 11:39:20 +00:00
|
|
|
install:
|
2020-07-28 18:57:33 +00:00
|
|
|
#FIXME
|
|
|
|
- "sed 's/\"loglevel\": \"INFO\",/\"loglevel\": \"WARN\",/g' settings.json.template > settings.json"
|
2020-06-08 16:18:22 +00:00
|
|
|
- "tests/frontend/travis/sauce_tunnel.sh"
|
2020-06-08 11:39:20 +00:00
|
|
|
- "bin/installDeps.sh"
|
|
|
|
- "export GIT_HASH=$(git rev-parse --verify --short HEAD)"
|
|
|
|
script:
|
|
|
|
- "tests/frontend/travis/runner.sh"
|
2020-09-26 18:41:33 +00:00
|
|
|
- name: "Run the Backend tests without Plugins"
|
2020-04-03 01:27:05 +00:00
|
|
|
install:
|
2020-05-29 12:26:34 +00:00
|
|
|
- "bin/installDeps.sh"
|
2020-04-03 01:27:05 +00:00
|
|
|
- "cd src && npm install && cd -"
|
|
|
|
script:
|
|
|
|
- "tests/frontend/travis/runnerBackend.sh"
|
2020-10-06 13:21:09 +00:00
|
|
|
- name: "Test the Dockerfile"
|
|
|
|
install:
|
|
|
|
- "cd src && npm install && cd -"
|
|
|
|
script:
|
|
|
|
- "docker build -t etherpad:test ."
|
|
|
|
- "docker run -d -p 9001:9001 etherpad:test && sleep 3"
|
|
|
|
- "cd src && npm run test-container"
|
2020-09-26 18:41:33 +00:00
|
|
|
- name: "Load test Etherpad without Plugins"
|
2020-05-30 18:17:33 +00:00
|
|
|
install:
|
|
|
|
- "bin/installDeps.sh"
|
|
|
|
- "cd src && npm install && cd -"
|
2020-05-30 18:22:24 +00:00
|
|
|
- "npm install -g etherpad-load-test"
|
2020-05-30 18:17:33 +00:00
|
|
|
script:
|
|
|
|
- "tests/frontend/travis/runnerLoadTest.sh"
|
2020-09-26 18:41:33 +00:00
|
|
|
# we can only frontend tests from the ether/ organization and not from forks.
|
|
|
|
# To request tests to be run ask a maintainer to fork your repo to ether/
|
|
|
|
- if: fork = false
|
|
|
|
name: "Test the Frontend Plugins only"
|
|
|
|
install:
|
|
|
|
#FIXME
|
|
|
|
- "sed 's/\"loglevel\": \"INFO\",/\"loglevel\": \"WARN\",/g' settings.json.template > settings.json"
|
|
|
|
- "tests/frontend/travis/sauce_tunnel.sh"
|
|
|
|
- "bin/installDeps.sh"
|
|
|
|
- "rm tests/frontend/specs/*"
|
2020-10-24 14:14:30 +00:00
|
|
|
- "npm install ep_hash_auth ep_cursortrace ep_subscript_and_superscript ep_headings2 ep_author_hover ep_align ep_table_of_contents ep_font_size ep_markdown ep_spellcheck"
|
2020-09-26 18:41:33 +00:00
|
|
|
- "export GIT_HASH=$(git rev-parse --verify --short HEAD)"
|
|
|
|
script:
|
|
|
|
- "tests/frontend/travis/runner.sh"
|
|
|
|
- name: "Run the Backend tests with Plugins"
|
|
|
|
install:
|
|
|
|
- "bin/installDeps.sh"
|
2020-10-24 14:14:30 +00:00
|
|
|
- "npm install ep_hash_auth ep_cursortrace ep_subscript_and_superscript ep_headings2 ep_author_hover ep_align ep_table_of_contents ep_font_size ep_markdown ep_spellcheck"
|
2020-09-26 18:41:33 +00:00
|
|
|
- "cd src && npm install && cd -"
|
|
|
|
script:
|
|
|
|
- "tests/frontend/travis/runnerBackend.sh"
|
2020-10-06 13:21:09 +00:00
|
|
|
- name: "Test the Dockerfile"
|
|
|
|
install:
|
|
|
|
- "cd src && npm install && cd -"
|
|
|
|
script:
|
|
|
|
- "docker build -t etherpad:test ."
|
|
|
|
- "docker run -d -p 9001:9001 etherpad:test && sleep 3"
|
|
|
|
- "cd src && npm run test-container"
|
2020-09-26 18:41:33 +00:00
|
|
|
- name: "Load test Etherpad with Plugins"
|
|
|
|
install:
|
|
|
|
- "bin/installDeps.sh"
|
2020-10-24 14:14:30 +00:00
|
|
|
- "npm install ep_hash_auth ep_cursortrace ep_subscript_and_superscript ep_headings2 ep_comments_page ep_author_hover ep_align ep_table_of_contents ep_font_size ep_markdown ep_spellcheck"
|
2020-09-26 18:41:33 +00:00
|
|
|
- "cd src && npm install && cd -"
|
|
|
|
- "npm install -g etherpad-load-test"
|
|
|
|
script:
|
|
|
|
- "tests/frontend/travis/runnerLoadTest.sh"
|
2020-10-01 09:39:01 +00:00
|
|
|
- name: "Test rate limit"
|
|
|
|
install:
|
|
|
|
- "docker network create --subnet=172.23.42.0/16 ep_net"
|
|
|
|
- "docker build -f Dockerfile -t epl-debian-slim ."
|
|
|
|
- "docker build -f tests/ratelimit/Dockerfile.nginx -t nginx-latest ."
|
|
|
|
- "docker build -f tests/ratelimit/Dockerfile.anotherip -t anotherip ."
|
|
|
|
- "docker run -p 8081:80 --rm --network ep_net --ip 172.23.42.1 -d nginx-latest"
|
|
|
|
- "docker run --name etherpad-docker -p 9000:9001 --rm --network ep_net --ip 172.23.42.2 -e 'TRUST_PROXY=true' epl-debian-slim &"
|
|
|
|
- "docker run --rm --network ep_net --ip 172.23.42.3 --name anotherip -dt anotherip"
|
|
|
|
- "./bin/installDeps.sh"
|
|
|
|
script:
|
|
|
|
- "cd tests/ratelimit && bash testlimits.sh"
|
2019-12-21 09:10:35 +00:00
|
|
|
|
2012-10-28 15:40:42 +00:00
|
|
|
notifications:
|
2012-11-03 14:36:59 +00:00
|
|
|
irc:
|
|
|
|
channels:
|
2013-04-15 15:33:20 +00:00
|
|
|
- "irc.freenode.org#etherpad-lite-dev"
|