2020-09-05 14:19:12 +00:00
|
|
|
SHELL = /bin/bash
|
|
|
|
|
2021-02-18 09:29:34 +00:00
|
|
|
NAME ?= mailserver-testing:ci
|
|
|
|
VCS_REF = $(shell git rev-parse --short HEAD)
|
|
|
|
VCS_VER = $(shell git describe --tags --contains --always)
|
2015-10-18 19:02:46 +00:00
|
|
|
|
2021-06-08 01:20:20 +00:00
|
|
|
# -----------------------------------------------
|
|
|
|
# --- Generic Build Targets ---------------------
|
|
|
|
# -----------------------------------------------
|
2021-01-16 09:16:05 +00:00
|
|
|
|
|
|
|
all: lint build backup generate-accounts tests clean
|
2016-04-13 19:43:25 +00:00
|
|
|
|
2015-10-18 19:02:46 +00:00
|
|
|
build:
|
2021-01-16 09:16:05 +00:00
|
|
|
docker build -t $(NAME) . --build-arg VCS_VER=$(VCS_VER) --build-arg VCS_REF=$(VCS_REF)
|
2015-10-18 19:02:46 +00:00
|
|
|
|
2018-03-21 18:55:41 +00:00
|
|
|
backup:
|
2022-03-15 12:47:13 +00:00
|
|
|
# if backup directory exist, clean hasn't been called, therefore
|
2020-09-05 14:19:12 +00:00
|
|
|
# we shouldn't overwrite it. It still contains the original content.
|
2021-01-16 09:16:05 +00:00
|
|
|
-@ [[ ! -d testconfig.bak ]] && cp -rp test/config testconfig.bak || :
|
|
|
|
|
|
|
|
clean:
|
2022-03-15 12:47:13 +00:00
|
|
|
# remove test containers and restore test/config directory
|
2021-01-16 09:16:05 +00:00
|
|
|
-@ [[ -d testconfig.bak ]] && { sudo rm -rf test/config ; mv testconfig.bak test/config ; } || :
|
2021-09-13 08:09:01 +00:00
|
|
|
-@ for container in $$(docker ps -a --filter name='^/mail$$|^ldap_for_mail$$|^mail_override_hostname$$|^mail_non_subdomain_hostname$$|^open-dkim$$|^hadolint$$|^eclint$$|^shellcheck$$|mail_changedetector.*' | sed 1d | cut -f 1-1 -d ' '); do docker rm -f $$container; done
|
2021-01-16 09:16:05 +00:00
|
|
|
-@ sudo rm -rf test/onedir test/alias test/quota test/relay test/config/dovecot-lmtp/userdb test/config/key* test/config/opendkim/keys/domain.tld/ test/config/opendkim/keys/example.com/ test/config/opendkim/keys/localdomain2.com/ test/config/postfix-aliases.cf test/config/postfix-receive-access.cf test/config/postfix-receive-access.cfe test/config/dovecot-quotas.cf test/config/postfix-send-access.cf test/config/postfix-send-access.cfe test/config/relay-hosts/chksum test/config/relay-hosts/postfix-aliases.cf test/config/dhparams.pem test/config/dovecot-lmtp/dh.pem test/config/relay-hosts/dovecot-quotas.cf test/config/user-patches.sh test/alias/config/postfix-virtual.cf test/quota/config/dovecot-quotas.cf test/quota/config/postfix-accounts.cf test/relay/config/postfix-relaymap.cf test/relay/config/postfix-sasl-password.cf test/duplicate_configs/
|
|
|
|
|
2021-06-08 01:20:20 +00:00
|
|
|
# -----------------------------------------------
|
|
|
|
# --- Tests -------------------------------------
|
|
|
|
# -----------------------------------------------
|
2018-03-21 18:55:41 +00:00
|
|
|
|
2016-04-25 14:00:39 +00:00
|
|
|
generate-accounts:
|
2020-09-05 14:19:12 +00:00
|
|
|
@ docker run --rm -e MAIL_USER=user1@localhost.localdomain -e MAIL_PASS=mypassword -t $(NAME) /bin/sh -c 'echo "$$MAIL_USER|$$(doveadm pw -s SHA512-CRYPT -u $$MAIL_USER -p $$MAIL_PASS)"' > test/config/postfix-accounts.cf
|
|
|
|
@ docker run --rm -e MAIL_USER=user2@otherdomain.tld -e MAIL_PASS=mypassword -t $(NAME) /bin/sh -c 'echo "$$MAIL_USER|$$(doveadm pw -s SHA512-CRYPT -u $$MAIL_USER -p $$MAIL_PASS)"' >> test/config/postfix-accounts.cf
|
2021-02-07 18:02:09 +00:00
|
|
|
@ docker run --rm -e MAIL_USER=user3@localhost.localdomain -e MAIL_PASS=mypassword -t $(NAME) /bin/sh -c 'echo "$$MAIL_USER|$$(doveadm pw -s SHA512-CRYPT -u $$MAIL_USER -p $$MAIL_PASS)|userdb_mail=mbox:~/mail:INBOX=~/inbox"' >> test/config/postfix-accounts.cf
|
2020-09-05 14:19:12 +00:00
|
|
|
@ echo "# this is a test comment, please don't delete me :'(" >> test/config/postfix-accounts.cf
|
|
|
|
@ echo " # this is also a test comment, :O" >> test/config/postfix-accounts.cf
|
2016-08-21 20:13:13 +00:00
|
|
|
|
2015-10-18 19:02:46 +00:00
|
|
|
tests:
|
2021-10-30 10:57:21 +00:00
|
|
|
@ NAME=$(NAME) ./test/bats/bin/bats --timing test/*.bats
|
2019-08-07 00:24:56 +00:00
|
|
|
|
|
|
|
.PHONY: ALWAYS_RUN
|
|
|
|
test/%.bats: ALWAYS_RUN
|
2021-01-16 09:16:05 +00:00
|
|
|
@ ./test/bats/bin/bats $@
|
2020-09-05 14:19:12 +00:00
|
|
|
|
2020-10-04 17:34:15 +00:00
|
|
|
lint: eclint hadolint shellcheck
|
|
|
|
|
|
|
|
hadolint:
|
|
|
|
@ ./test/linting/lint.sh hadolint
|
|
|
|
|
2020-09-05 14:19:12 +00:00
|
|
|
shellcheck:
|
2020-10-04 17:34:15 +00:00
|
|
|
@ ./test/linting/lint.sh shellcheck
|
2020-09-24 12:54:21 +00:00
|
|
|
|
|
|
|
eclint:
|
2020-10-04 17:34:15 +00:00
|
|
|
@ ./test/linting/lint.sh eclint
|