2019-02-07 16:40:34 +00:00
version : 2.1
commands :
install :
2018-09-06 14:37:27 +00:00
steps :
- checkout
- restore_cache :
keys :
- v1-deps-{{ .Branch }}-{{ checksum "package.json" }}
- v1-deps-{{ .Branch }}
- v1-deps
- run : yarn install --frozen-lockfile
- save_cache :
key : v1-deps-{{ .Branch }}-{{ checksum "package.json" }}
paths :
- ~/.cache
2019-02-07 16:40:34 +00:00
jobs :
unit-test :
docker :
- image : node
steps :
- install
2018-09-06 14:37:27 +00:00
- run : |
2019-02-07 16:40:34 +00:00
yarn run flow-typed install
2018-09-06 14:37:27 +00:00
git config --global core.quotepath false
yarn test
end-to-end-test :
2018-08-24 14:35:42 +00:00
docker :
2018-09-05 15:45:45 +00:00
- image : cypress/base:8
environment :
## this enables colors in the output
TERM : xterm
2018-08-24 14:35:42 +00:00
steps :
2019-02-07 16:40:34 +00:00
- install
2018-09-06 14:37:27 +00:00
- run : |
2019-02-12 14:52:05 +00:00
yarn run compile-dev
yarn run serve-dev &
# Run mon-entreprise
CYPRESS_baseUrl=http://localhost:5000 yarn run cypress run --record --key 21660df5-36a5-4c49-b23d-801799b0c759
# Run mycompanyinfrance
CYPRESS_baseUrl=http://localhost:5001 yarn run cypress run --record --key 21660df5-36a5-4c49-b23d-801799b0c759 --env language=en
# Run embauche
CYPRESS_baseUrl=http://localhost:5002 yarn run cypress run --record --key 21660df5-36a5-4c49-b23d-801799b0c759 --config integrationFolder=cypress/integration/embauche
2018-09-06 14:37:27 +00:00
2019-02-07 16:40:34 +00:00
production-end-to-end-test :
parameters :
site :
type : string
2019-02-08 13:10:45 +00:00
default : 'https://mon-entreprise.fr'
2019-02-07 16:40:34 +00:00
cypress_folder :
type : enum
2019-02-08 10:21:59 +00:00
enum : [ embauche, mon-entreprise, external]
2019-02-07 16:40:34 +00:00
default : mon-entreprise
2019-02-07 17:31:04 +00:00
language :
type : enum
2019-02-08 10:21:59 +00:00
enum : [ fr, en]
default : fr
2018-09-06 16:38:37 +00:00
docker :
- image : cypress/base:8
environment :
## this enables colors in the output
TERM : xterm
2019-02-07 16:40:34 +00:00
CYPRESS_baseUrl : << parameters.site >>
2018-09-06 16:38:37 +00:00
steps :
2018-09-06 17:37:20 +00:00
- checkout
2018-09-06 16:38:37 +00:00
- run : npm install --save-dev cypress
2019-02-07 16:40:34 +00:00
- run : sleep 300
2018-09-06 17:35:42 +00:00
- run : |
2019-02-08 10:05:21 +00:00
if ./node_modules/.bin/cypress run --record --key 21660df5-36a5-4c49-b23d-801799b0c759 --env language=<< parameters.language >> --config integrationFolder=cypress/integration/<< parameters.cypress_folder >>;
2018-09-06 17:35:42 +00:00
then
echo "SUCCESS \o/"
else
2018-09-06 17:42:27 +00:00
curl -H 'Content-Type : application/json' --request POST -d '{"success": false}' https://hooks.zapier.com/hooks/catch/3746650/qsp818/;
2018-09-06 17:35:42 +00:00
exit 1;
fi
2018-09-06 14:37:27 +00:00
workflows :
version : 2
test :
jobs :
- unit-test
2019-02-12 14:52:05 +00:00
- end-to-end-test
2019-02-07 16:40:34 +00:00
- production-end-to-end-test :
2019-02-08 13:10:45 +00:00
name : 'embauche.beta.gouv.fr end-to-end'
2019-02-07 16:40:34 +00:00
site : 'https://embauche.beta.gouv.fr'
cypress_folder : 'embauche'
filters :
branches :
only : master
2019-02-07 17:31:04 +00:00
- production-end-to-end-test :
2019-02-08 13:10:45 +00:00
name : 'mon-entreprise.fr end-to-end'
2019-02-07 17:31:04 +00:00
cypress_folder : 'mon-entreprise'
filters :
branches :
only : master
- production-end-to-end-test :
2019-02-08 13:10:45 +00:00
name : 'mycompanyinfrance.fr end-to-end'
2019-02-07 17:31:04 +00:00
site : 'https://mycompanyinfrance.fr'
cypress_folder : 'mon-entreprise'
language : 'en'
filters :
branches :
only : master
- production-end-to-end-test :
2019-02-08 13:10:45 +00:00
name : 'demo.mon-entreprise.fr end-to-end'
2019-02-07 17:31:04 +00:00
site : 'https://demo.mon-entreprise.fr'
cypress_folder : 'embauche'
filters :
branches :
only : demo
2019-02-07 16:40:34 +00:00
- production-end-to-end-test :
2019-02-08 13:10:45 +00:00
name : external integrations (URSSAF, pole emploi)
2019-02-07 16:40:34 +00:00
cypress_folder : 'external'
2018-09-06 14:37:27 +00:00
filters :
branches :
only : master