mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
fb27046936
[web] fix test_frontend_ct_core/editor split when running locally GitOrigin-RevId: 657542b684a8d24b931fede056e1b7ffd8f07fb8
102 lines
2.7 KiB
YAML
102 lines
2.7 KiB
YAML
version: "2.3"
|
|
|
|
volumes:
|
|
data:
|
|
|
|
services:
|
|
|
|
test_unit:
|
|
image: node:18.20.2
|
|
volumes:
|
|
- .:/overleaf/services/web
|
|
- ../../node_modules:/overleaf/node_modules
|
|
- ../../libraries:/overleaf/libraries
|
|
working_dir: /overleaf/services/web
|
|
environment:
|
|
BASE_CONFIG:
|
|
OVERLEAF_CONFIG:
|
|
MOCHA_GREP: ${MOCHA_GREP}
|
|
NODE_OPTIONS: "--unhandled-rejections=strict"
|
|
command: npm run --silent test:unit:app
|
|
user: node
|
|
|
|
test_acceptance:
|
|
image: node:18.20.2
|
|
volumes:
|
|
- .:/overleaf/services/web
|
|
- ../../node_modules:/overleaf/node_modules
|
|
- ../../libraries:/overleaf/libraries
|
|
user: node
|
|
working_dir: /overleaf/services/web
|
|
env_file: docker-compose.common.env
|
|
environment:
|
|
BASE_CONFIG:
|
|
OVERLEAF_CONFIG:
|
|
MOCHA_GREP: ${MOCHA_GREP}
|
|
MONGO_SERVER_SELECTION_TIMEOUT: 600000
|
|
MONGO_SOCKET_TIMEOUT: 300000
|
|
# OVERLEAF_ALLOW_ANONYMOUS_READ_AND_WRITE_SHARING: 'true'
|
|
|
|
extra_hosts:
|
|
- 'www.overleaf.test:127.0.0.1'
|
|
depends_on:
|
|
- redis
|
|
- mongo
|
|
- saml
|
|
- ldap
|
|
command: npm run --silent test:acceptance:app
|
|
|
|
test_frontend:
|
|
build:
|
|
context: ../..
|
|
dockerfile: services/web/Dockerfile
|
|
target: base
|
|
volumes:
|
|
- .:/overleaf/services/web
|
|
- ../../node_modules:/overleaf/node_modules
|
|
- ../../libraries:/overleaf/libraries
|
|
working_dir: /overleaf/services/web
|
|
environment:
|
|
MOCHA_GREP: ${MOCHA_GREP}
|
|
NODE_OPTIONS: "--unhandled-rejections=strict"
|
|
VERBOSE_LOGGING:
|
|
command: npm run --silent test:frontend
|
|
user: node
|
|
|
|
test_frontend_ct:
|
|
image: cypress/included:13.6.6
|
|
volumes:
|
|
- ../../:/overleaf
|
|
working_dir: /overleaf/services/web
|
|
environment:
|
|
VERBOSE_LOGGING:
|
|
CYPRESS_SPEC_PATTERN: ${CYPRESS_SPEC_PATTERN:-}
|
|
CYPRESS_EXCLUDE_SPEC_PATTERN: ${CYPRESS_EXCLUDE_SPEC_PATTERN:-}
|
|
entrypoint: npm
|
|
command:
|
|
- "run"
|
|
- "cypress:run-ct"
|
|
|
|
redis:
|
|
image: redis
|
|
|
|
mongo:
|
|
image: mongo:6.0.13
|
|
command: --replSet overleaf
|
|
|
|
ldap:
|
|
image: rroemhild/test-openldap:1.1
|
|
# Workaround large memory allocation (using the max-open-files-limit as socket buffer scale).
|
|
# REF: https://github.com/moby/moby/issues/8231#issuecomment-63877553
|
|
# REF: https://github.com/moby/moby/issues/8231#issuecomment-63871343
|
|
command:
|
|
- 'bash'
|
|
- '-c'
|
|
- 'ulimit -n 1024 && exec bash /run.sh'
|
|
|
|
saml:
|
|
image: us-east1-docker.pkg.dev/overleaf-ops/ol-docker/saml-test
|
|
environment:
|
|
SAML_BASE_URL_PATH: 'http://saml/simplesaml/'
|
|
SAML_TEST_SP_ENTITY_ID: 'overleaf-test-saml'
|
|
SAML_TEST_SP_LOCATION: 'http://www.overleaf.test:23000/saml/callback'
|