77 lines
2.7 KiB
Makefile
77 lines
2.7 KiB
Makefile
# We want to be able to test in two **modes**:
|
|
# A. bots are used from official packages as defined in */Dockerfile.package
|
|
# B. bots are just picked up from binaries that are placed in corresponding parent directory.
|
|
|
|
# The topology is defined in podman-compose file and can be spawned in two ways:
|
|
# 1. Privileged container (needs no additional dependancies)
|
|
# 2. podman-compose on a local machine (needs dependencies as defined in the Dockerfile)
|
|
|
|
|
|
# Typical workflow:
|
|
# A1: - run 'make test_package'
|
|
# B1: - run 'make test_local' (make sure that the go binaries in parent folder are built)
|
|
# A2:
|
|
# 1. 'make build_package' - prepares images (recommended, otherwise there might be surprises if image fails to build during `make up`)
|
|
# 2. 'make up' - spawns podman-compose
|
|
# 3. 'pytest -v tests/*' - run tests
|
|
# 4. 'make down' - once the containers are not needed
|
|
# B2: (make sure the go binaries in the parent folder are built)
|
|
# 4. 'make build_local' - prepared images (recommended, otherwise there might be surprises if image fails to build during `make up`)
|
|
# 5. 'make up' - spawns podman-compose
|
|
# 6. 'pytest -v tests/*' - run tests
|
|
# 7. 'make down' - once the containers are not needed
|
|
|
|
|
|
AUTO_DETECT_MODE := $(shell if test -e ../workflow-pr/workflow-pr; then echo .local; else echo .package; fi)
|
|
|
|
# try to detect mode B1, otherwise mode A1
|
|
test: GIWTF_IMAGE_SUFFIX=$(AUTO_DETECT_MODE)
|
|
test: build_container test_container
|
|
|
|
# mode A1
|
|
test_package: GIWTF_IMAGE_SUFFIX=.package
|
|
test_package: build_container test_container
|
|
|
|
# mode B1
|
|
test_local: GIWTF_IMAGE_SUFFIX=.local
|
|
test_local: build_container test_container
|
|
|
|
MODULES := gitea-events-rabbitmq-publisher obs-staging-bot workflow-pr
|
|
|
|
# Prepare topology 1
|
|
build_container:
|
|
podman build ../ -f integration/Dockerfile -t autogits_integration
|
|
|
|
# Run tests in topology 1
|
|
test_container:
|
|
podman run --rm --privileged -t --network integration_gitea-network -e GIWTF_IMAGE_SUFFIX=$(GIWTF_IMAGE_SUFFIX) autogits_integration /usr/bin/bash -c "make build && make up && sleep 25 && pytest -v tests/*"
|
|
|
|
|
|
build_local: AUTO_DETECT_MODE=.local
|
|
build_local: build
|
|
|
|
build_package: AUTO_DETECT_MODE=.package
|
|
build_package: build
|
|
|
|
# parse all service images from podman-compose and build them (topology 2)
|
|
build:
|
|
podman pull docker.io/library/rabbitmq:3.13.7-management
|
|
for i in $$(grep -A 1000 services: podman-compose.yml | grep -oE '^ [^: ]+'); do GIWTF_IMAGE_SUFFIX=$(AUTO_DETECT_MODE) podman-compose build $$i || exit 1; done
|
|
|
|
# this will spawn prebuilt containers (topology 2)
|
|
up:
|
|
podman-compose up -d
|
|
|
|
# tear down (topology 2)
|
|
down:
|
|
podman-compose down
|
|
|
|
# mode A
|
|
up-bots-package:
|
|
GIWTF_IMAGE_SUFFIX=.package podman-compose up -d
|
|
|
|
# mode B
|
|
up-bots-local:
|
|
GIWTF_IMAGE_SUFFIX=.local podman-compose up -d
|
|
|