forked from pulp/squeezer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
110 lines (87 loc) · 4.64 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
NAMESPACE := $(shell python -c 'import yaml; print(yaml.safe_load(open("galaxy.yml"))["namespace"])')
NAME := $(shell python -c 'import yaml; print(yaml.safe_load(open("galaxy.yml"))["name"])')
VERSION := $(shell python -c 'import yaml; print(yaml.safe_load(open("galaxy.yml"))["version"])')
MANIFEST := build/collections/ansible_collections/$(NAMESPACE)/$(NAME)/MANIFEST.json
ROLES := $(wildcard roles/*)
PLUGIN_TYPES := $(filter-out __%,$(notdir $(wildcard plugins/*)))
METADATA := galaxy.yml LICENSE README.md
$(foreach PLUGIN_TYPE,$(PLUGIN_TYPES),$(eval _$(PLUGIN_TYPE) := $(filter-out %__init__.py,$(wildcard plugins/$(PLUGIN_TYPE)/*.py))))
DEPENDENCIES := $(METADATA) $(foreach PLUGIN_TYPE,$(PLUGIN_TYPES),$(_$(PLUGIN_TYPE))) $(foreach ROLE,$(ROLES),$(wildcard $(ROLE)/*/*))
PYTHON_VERSION = $(shell python -c 'import sys; print("{}.{}".format(sys.version_info.major, sys.version_info.minor))')
COLLECTION_COMMAND ?= ansible-galaxy
SANITY_OPTS =
TEST =
PYTEST = pytest -n 4 --boxed -v
default: help
help:
@echo "Please use \`make <target>' where <target> is one of:"
@echo " help to show this message"
@echo " info to show infos about the collection"
@echo " lint to run code linting"
@echo " test to run unit tests"
@echo " livetest to run test playbooks live (without vcr)"
@echo " sanity to run santy tests"
@echo " setup to set up test, lint"
@echo " test-setup to install test dependencies"
@echo " test_<test> to run a specific unittest"
@echo " livetest_<test> to run a specific unittest"
@echo " record_<test> to (re-)record the server answers for a specific test"
@echo " clean_<test> to run a specific test playbook with the teardown and cleanup tags"
@echo " dist to build the collection artifact"
info:
@echo "Building collection $(NAMESPACE)-$(NAME)-$(VERSION)"
@echo " roles:\n $(foreach ROLE,$(notdir $(ROLES)), - $(ROLE)\n)"
@echo " $(foreach PLUGIN_TYPE,$(PLUGIN_TYPES), $(PLUGIN_TYPE):\n $(foreach PLUGIN,$(basename $(notdir $(_$(PLUGIN_TYPE)))), - $(PLUGIN)\n)\n)"
lint: $(MANIFEST) | tests/playbooks/vars/server.yaml
yamllint -f parsable tests/playbooks
ansible-playbook --syntax-check tests/playbooks/*.yaml | grep -v '^$$'
black . --diff --check
@echo "🙊 Code 🙉 LGTM 🙈"
sanity: $(MANIFEST) | tests/playbooks/vars/server.yaml
# Fake a fresh git repo for ansible-test
cd $(<D) ; git init ; echo tests > .gitignore ; ansible-test sanity $(SANITY_OPTS) --python $(PYTHON_VERSION)
test: $(MANIFEST) | tests/playbooks/vars/server.yaml
$(PYTEST) $(TEST)
livetest: $(MANIFEST) | tests/playbooks/vars/server.yaml
pytest -v 'tests/test_playbooks.py::test_playbook' --vcrmode live
test_%: FORCE $(MANIFEST) | tests/playbooks/vars/server.yaml
pytest -v 'tests/test_playbooks.py::test_playbook[$*]' 'tests/test_playbooks.py::test_check_mode[$*]'
livetest_%: FORCE $(MANIFEST) | tests/playbooks/vars/server.yaml
pytest -v 'tests/test_playbooks.py::test_playbook[$*]' --vcrmode live
record_%: FORCE $(MANIFEST)
$(RM) tests/fixtures/$*-*.yml
pytest -v 'tests/test_playbooks.py::test_playbook[$*]' --vcrmode record
clean_%: FORCE $(MANIFEST) | tests/playbooks/vars/server.yaml
ansible-playbook --tags teardown,cleanup -i tests/inventory/hosts 'tests/playbooks/$*.yaml'
test-setup: requirements.txt | tests/playbooks/vars/server.yaml
pip install --upgrade pip
pip install -r requirements.txt
tests/playbooks/vars/server.yaml:
cp [email protected] $@
@echo "For recording, please adjust $@ to match your reference server."
$(MANIFEST): $(NAMESPACE)-$(NAME)-$(VERSION).tar.gz
ifeq ($(COLLECTION_COMMAND),mazer)
# No idea, why this fails. But mazer is old and deprecated so unlikely to beeing fixed...
# mazer install --collections-path build/collections $<
-mkdir build/collections build/collections/ansible_collections build/collections/ansible_collections/$(NAMESPACE) build/collections/ansible_collections/$(NAMESPACE)/$(NAME)
tar xf $< -C build/collections/ansible_collections/$(NAMESPACE)/$(NAME)
else
ansible-galaxy collection install -p build/collections $< --force
endif
build/src/%: %
install -m 644 -DT $< $@
$(NAMESPACE)-$(NAME)-$(VERSION).tar.gz: $(addprefix build/src/,$(DEPENDENCIES))
ifeq ($(COLLECTION_COMMAND),mazer)
mazer build --collection-path=build/src
cp build/src/releases/$@ .
else
ansible-galaxy collection build build/src --force
endif
dist: $(NAMESPACE)-$(NAME)-$(VERSION).tar.gz
install: $(MANIFEST)
publish: $(NAMESPACE)-$(NAME)-$(VERSION).tar.gz
ansible-galaxy collection publish --api-key $(GALAXY_API_KEY) $<
clean:
rm -rf build
FORCE:
.PHONY: help dist install lint sanity test livetest test-setup publish FORCE