2023-08-14 09:16:20 +05:30
|
|
|
# SPDX-FileCopyrightText: 2023 Aravinth Manivannan <realaravinth@batsense.net>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
|
|
|
|
|
|
|
|
define ping
|
|
|
|
. ./venv/bin/activate && \
|
|
|
|
ansible-playbook -i $(INVENTORY) -f 10 ./ansible/ping.yml
|
|
|
|
endef
|
|
|
|
|
2023-08-17 05:06:08 +05:30
|
|
|
define configure_base
|
|
|
|
. ./venv/bin/activate && \
|
|
|
|
ansible-playbook -i $(INVENTORY) -f 10 ./ansible/playbook.yml
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
define configure_locust
|
|
|
|
. ./venv/bin/activate && \
|
2023-10-13 16:28:38 +05:30
|
|
|
ansible-playbook -i $(INVENTORY) -f 10 ./ansible/locust.yml
|
2023-08-17 05:06:08 +05:30
|
|
|
endef
|
|
|
|
|
2023-11-19 01:13:00 +05:30
|
|
|
define configure_cache
|
|
|
|
. ./venv/bin/activate && \
|
|
|
|
ansible-playbook -i $(INVENTORY) -f 10 ./ansible/cache.yml
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
2023-08-17 05:06:08 +05:30
|
|
|
define test_base
|
|
|
|
. ./venv/bin/activate && \
|
|
|
|
cd tests/ && \
|
|
|
|
pwd && \
|
|
|
|
py.test --hosts='ansible://all' \
|
|
|
|
-n 10 \
|
|
|
|
--verbose \
|
|
|
|
--ansible-inventory="../${INVENTORY}" \
|
|
|
|
test_basic.py
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2023-11-19 01:13:00 +05:30
|
|
|
define test_cache
|
|
|
|
. ./venv/bin/activate && \
|
|
|
|
cd tests/cache/ && \
|
|
|
|
ANSIBLE_REMOTE_USER=root \
|
|
|
|
py.test --hosts='ansible://mcaptcha_hosts' \
|
|
|
|
-n 10 \
|
|
|
|
--verbose \
|
|
|
|
--ansible-inventory="../../${INVENTORY}" \
|
|
|
|
base.py
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
2023-08-17 05:06:08 +05:30
|
|
|
define test_locust
|
|
|
|
. ./venv/bin/activate && \
|
|
|
|
cd tests/locust/ && \
|
|
|
|
py.test --hosts='ansible://mcaptcha_dos*' \
|
|
|
|
-n 10 \
|
|
|
|
--verbose \
|
|
|
|
--ansible-inventory="../../${INVENTORY}" \
|
|
|
|
base.py
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ```bash
|
|
|
|
# INVENTORY=./terraform/dos/hosts.ini make conf.base
|
|
|
|
# ```
|
2023-10-13 16:28:38 +05:30
|
|
|
#conf.base: ## Get all VMs to base level configuration
|
|
|
|
# $(call configure_base)
|
|
|
|
#
|
2023-08-17 05:06:08 +05:30
|
|
|
|
|
|
|
lint: ## Lint source code
|
|
|
|
terraform fmt
|
|
|
|
. ./venv/bin/activate && \
|
|
|
|
ansible-lint --write $(find ansible -type f)
|
|
|
|
. ./venv/bin/activate && black tests/
|
|
|
|
|
|
|
|
# ```bash
|
|
|
|
# INVENTORY=./terraform/dos/hosts.ini make conf.base
|
|
|
|
# ```
|
|
|
|
conf.dos: ## Configure all DoS VMs
|
|
|
|
$(call configure_locust)
|
|
|
|
|
2023-11-19 01:13:00 +05:30
|
|
|
|
|
|
|
# ```bash
|
|
|
|
# INVENTORY=./terraform/dos/hosts.ini make conf.cache
|
|
|
|
# ```
|
|
|
|
conf.cache: ## Configure all cache VMs
|
|
|
|
$(call configure_cache)
|
|
|
|
|
2023-08-14 09:16:20 +05:30
|
|
|
# ```bash
|
|
|
|
# INVENTORY=./terraform/dos/hosts.ini make conf.ping
|
|
|
|
# ```
|
|
|
|
conf.ping: ## Ping all DoS VMs
|
|
|
|
$(call ping)
|
|
|
|
|
2023-08-17 05:06:08 +05:30
|
|
|
|
|
|
|
test: ## Run all tests
|
|
|
|
$(call test_base)
|
|
|
|
$(call test_locust)
|
|
|
|
|
|
|
|
test.base: ## Test base configuration on all VMs
|
|
|
|
$(call test_base)
|
|
|
|
|
2023-11-19 01:13:00 +05:30
|
|
|
test.cache: ## Test cache configuration
|
|
|
|
$(call test_cache)
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-08-14 09:16:20 +05:30
|
|
|
help: ## Prints help for targets with comments
|
|
|
|
@cat $(MAKEFILE_LIST) | grep -E '^[a-zA-Z_-].+:.*?## .*$$' | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|