mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
10deaf5aec
Migrate server-pro acceptance tests to modules GitOrigin-RevId: 7caf5719d21bbd7fb30901f3e52225fe4cbc9832
81 lines
1.8 KiB
YAML
81 lines
1.8 KiB
YAML
version: "2.3"
|
|
|
|
volumes:
|
|
data:
|
|
|
|
services:
|
|
|
|
test_unit:
|
|
build: .
|
|
image: ci/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
|
|
user: node
|
|
command: npm run test:unit:app
|
|
environment:
|
|
BASE_CONFIG:
|
|
SHARELATEX_CONFIG:
|
|
NODE_OPTIONS: "--unhandled-rejections=strict"
|
|
|
|
test_acceptance:
|
|
build: .
|
|
image: ci/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
|
|
working_dir: /app
|
|
env_file: docker-compose.common.env
|
|
environment:
|
|
BASE_CONFIG:
|
|
SHARELATEX_CONFIG:
|
|
extra_hosts:
|
|
- 'www.overleaf.test:127.0.0.1'
|
|
command: npm run test:acceptance:app
|
|
user: root
|
|
depends_on:
|
|
- redis
|
|
- mongo
|
|
- saml
|
|
- ldap
|
|
|
|
test_karma:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.frontend.ci
|
|
args:
|
|
PROJECT_NAME: $PROJECT_NAME
|
|
BRANCH_NAME: $BRANCH_NAME
|
|
BUILD_NUMBER: $BUILD_NUMBER
|
|
working_dir: /app
|
|
command: npm run test:karma:single
|
|
user: node
|
|
environment:
|
|
NODE_OPTIONS: "--unhandled-rejections=strict"
|
|
|
|
test_frontend:
|
|
build: .
|
|
image: ci/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
|
|
user: node
|
|
command: npm run test:frontend
|
|
environment:
|
|
NODE_OPTIONS: "--unhandled-rejections=strict"
|
|
|
|
tar:
|
|
image: ci/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER-webpack
|
|
volumes:
|
|
- ./:/tmp/build/
|
|
command: tar -cf /tmp/build/build.tar public/
|
|
user: root
|
|
|
|
redis:
|
|
image: redis
|
|
|
|
mongo:
|
|
image: mongo:4.0.19
|
|
|
|
ldap:
|
|
restart: always
|
|
image: rroemhild/test-openldap:1.1
|
|
|
|
saml:
|
|
restart: always
|
|
image: gcr.io/overleaf-ops/saml-test
|
|
environment:
|
|
SAML_BASE_URL_PATH: 'http://saml/simplesaml/'
|
|
SAML_TEST_SP_ENTITY_ID: 'sharelatex-test-saml'
|
|
SAML_TEST_SP_LOCATION: 'http://www.overleaf.test:3000/saml/callback'
|