From fd33eccc7c291982c70771bb40d81ff5391e4331 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 4 Dec 2023 22:16:31 -0300 Subject: [PATCH] Fix lots of bugs and refactor --- .gitlab-ci.yml | 71 +++++++++++++------------- testing/catcher/.env.dev.example | 1 - testing/catcher/Dockerfile | 2 - testing/catcher/docker-compose.dev.yml | 4 -- testing/catcher/test.sh | 1 + 5 files changed, 37 insertions(+), 42 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8e56e23..aed3126 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -75,10 +75,10 @@ preparation: dotenv: context.env .build-and-push-script: &build-and-push-script - - docker build ${FOLDER} -f ${FOLDER}/Dockerfile.prod --build-arg "${BUILD_ARG_PROD-x}" --build-arg "${BUILD_ARG_PROD_OTHER-x}" -t ${PROD_IMAGE} - - docker build ${FOLDER} -f ${FOLDER}/Dockerfile.test -t ${TEST_IMAGE} + - docker build ${FOLDER} -f ${FOLDER}/${DOCKERFILE-Dockerfile.prod} --build-arg "${BUILD_ARG_PROD-x}" --build-arg "${BUILD_ARG_PROD_OTHER-x}" -t ${PROD_IMAGE} + - ([ -z ${TEST_IMAGE} ]) || docker build ${FOLDER} -f ${FOLDER}/Dockerfile.test -t ${TEST_IMAGE} - docker push ${PROD_IMAGE} - - docker push ${TEST_IMAGE} + - ([ -z ${TEST_IMAGE} ]) || docker push ${TEST_IMAGE} .build: stage: build @@ -154,27 +154,27 @@ build-browser-client-dev: - .build script: - export FOLDER=browser-domain - - export API_IMAGE=${BROWSER_CLIENT_DEV_IMAGE_NAME} - - docker build ${FOLDER} -f ${FOLDER}/Dockerfile.dev -t ${API_IMAGE} - - docker push ${API_IMAGE} + - export PROD_IMAGE=${BROWSER_CLIENT_DEV_IMAGE_NAME} + - export DOCKERFILE=Dockerfile.dev + - *build-and-push-script build-tavern: extends: - .build script: - export FOLDER=testing/tavern - - export API_IMAGE=${TAVERN_TEST_IMAGE_NAME} - - docker build ${FOLDER} -f ${FOLDER}/Dockerfile -t ${API_IMAGE} - - docker push ${API_IMAGE} + - export PROD_IMAGE=${TAVERN_TEST_IMAGE_NAME} + - export DOCKERFILE=Dockerfile + - *build-and-push-script build-catcher: extends: - .build script: - export FOLDER=testing/catcher - - export API_IMAGE=${CATCHER_TEST_IMAGE_NAME} - - docker build ${FOLDER} -f ${FOLDER}/Dockerfile -t ${API_IMAGE} - - docker push ${API_IMAGE} + - export PROD_IMAGE=${CATCHER_TEST_IMAGE_NAME} + - export DOCKERFILE=Dockerfile + - *build-and-push-script .test-script: &test-script - docker compose -f ${FOLDER}/docker-compose.dev.yml --env-file $ENV_DEV_FILE down @@ -329,30 +329,31 @@ test-screen-client: optional: true artifacts: true -.test-integration: &test-integration - - export TEST_TARGET=INTEGRATION - - export API_IMAGE=$FLIGHTS_INFO_TEST_IMAGE_NAME - - docker compose -f flights-domain/docker-compose.dev.yml --env-file $ENV_DEV_FILE down - - docker compose -f flights-domain/docker-compose.dev.yml --env-file $ENV_DEV_FILE pull - - docker compose -f flights-domain/docker-compose.dev.yml --env-file $ENV_DEV_FILE up -d - - export API_IMAGE=$GATEWAY_TEST_IMAGE_NAME - - docker compose -f gateway/docker-compose.dev.yml --env-file $ENV_DEV_FILE down - - docker compose -f gateway/docker-compose.dev.yml --env-file $ENV_DEV_FILE pull - - docker compose -f gateway/docker-compose.dev.yml --env-file $ENV_DEV_FILE up -d - - export API_IMAGE=$USER_MANAGER_TEST_IMAGE_NAME - - docker compose -f auth-domain/docker-compose.dev.yml --env-file $ENV_DEV_FILE down - - docker compose -f auth-domain/docker-compose.dev.yml --env-file $ENV_DEV_FILE pull - - docker compose -f auth-domain/docker-compose.dev.yml --env-file $ENV_DEV_FILE up -d - - docker compose -f auth-domain/docker-compose.dev.yml --env-file $ENV_DEV_FILE exec auth-api python manage.py recreate_db - - docker compose -f auth-domain/docker-compose.dev.yml --env-file $ENV_DEV_FILE exec auth-api python manage.py seed_db - - export API_IMAGE=$SUBSCRIPTION_TEST_IMAGE_NAME - - docker compose -f subscription-domain/docker-compose.dev.yml --env-file $ENV_DEV_FILE down - - docker compose -f subscription-domain/docker-compose.dev.yml --env-file $ENV_DEV_FILE pull - - docker compose -f subscription-domain/docker-compose.dev.yml --env-file $ENV_DEV_FILE up -d - - export API_IMAGE=$CLIENT_IMAGE +.test-integration-script: &test-integration-script - docker compose -f ${FOLDER}/docker-compose.dev.yml --env-file $ENV_DEV_FILE down - docker compose -f ${FOLDER}/docker-compose.dev.yml --env-file $ENV_DEV_FILE pull - - docker compose -f ${FOLDER}/docker-compose.dev.yml --env-file $ENV_DEV_FILE up --abort-on-container-exit + - docker compose -f ${FOLDER}/docker-compose.dev.yml --env-file $ENV_DEV_FILE up -d + +.test-integration: &test-integration + - export TEST_TARGET=INTEGRATION + - export OLD_FOLDER=$FOLDER + - export API_IMAGE=$FLIGHTS_INFO_TEST_IMAGE_NAME + - export FOLDER=flights-domain + - *test-integration-script + - export API_IMAGE=$GATEWAY_TEST_IMAGE_NAME + - export FOLDER=gateway + - *test-integration-script + - export API_IMAGE=$USER_MANAGER_TEST_IMAGE_NAME + - export FOLDER=auth-domain + - *test-integration-script + - docker compose -f ${FOLDER}/docker-compose.dev.yml --env-file $ENV_DEV_FILE exec auth-api python manage.py recreate_db + - docker compose -f ${FOLDER}/docker-compose.dev.yml --env-file $ENV_DEV_FILE exec auth-api python manage.py seed_db + - export API_IMAGE=$SUBSCRIPTION_TEST_IMAGE_NAME + - export FOLDER=subscription-domain + - *test-integration-script + - export API_IMAGE=$CLIENT_IMAGE + - export FOLDER=$OLD_FOLDER + - *test-script .test-integration-clean: &test-integration-clean - export API_IMAGE=${FLIGHTS_INFO_TEST_IMAGE_NAME} @@ -459,7 +460,7 @@ test-catcher: script: - export CLIENT_IMAGE=${BROWSER_CLIENT_DEV_IMAGE_NAME} - export FOLDER=browser-domain - - *test-script + - *test-integration-script - export CLIENT_IMAGE=${CATCHER_TEST_IMAGE_NAME} - export FOLDER=testing/catcher - *test-integration diff --git a/testing/catcher/.env.dev.example b/testing/catcher/.env.dev.example index 810b29b..67fa698 100644 --- a/testing/catcher/.env.dev.example +++ b/testing/catcher/.env.dev.example @@ -1,3 +1,2 @@ -API_URL=http://localhost:5000 POSTGRES_USER=username POSTGRES_PASS=password \ No newline at end of file diff --git a/testing/catcher/Dockerfile b/testing/catcher/Dockerfile index 7c12452..48ea6ac 100644 --- a/testing/catcher/Dockerfile +++ b/testing/catcher/Dockerfile @@ -27,7 +27,5 @@ RUN chmod +x /usr/src/app/test.sh ENV PYTHONDONTWRITEBYTECODE 1 ENV PYTHONUNBUFFERED 1 -ARG API_URL -ENV API_URL $API_URL ENTRYPOINT ["/usr/src/app/test.sh"] \ No newline at end of file diff --git a/testing/catcher/docker-compose.dev.yml b/testing/catcher/docker-compose.dev.yml index e6b932d..1ba6480 100644 --- a/testing/catcher/docker-compose.dev.yml +++ b/testing/catcher/docker-compose.dev.yml @@ -5,12 +5,8 @@ services: container_name: fids-testing_catcher image: ${API_IMAGE} environment: - - API_URL=${API_URL} - POSTGRES_USER=${POSTGRES_USER} - POSTGRES_PASS=${POSTGRES_PASS} - # entrypoint: ["/bin/bash","-c"] - # command: - # - "sleep 3600" extra_hosts: - "host.docker.internal:host-gateway" networks: diff --git a/testing/catcher/test.sh b/testing/catcher/test.sh index bbfad86..beb25a2 100644 --- a/testing/catcher/test.sh +++ b/testing/catcher/test.sh @@ -4,3 +4,4 @@ catcher -i inventories/local.yaml tests/login.test.yaml catcher -i inventories/local.yaml tests/create-flight.test.yaml catcher -i inventories/local.yaml tests/signup.test.yaml catcher -i inventories/local.yaml tests/auth.test.yaml +# catcher tests