-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
273 lines (234 loc) · 8.32 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
# Makefile for lim
SHELL:=bash
VERSION:=21.2.7
CWD:=$(shell pwd)
ifeq ($(VIRTUAL_ENV), '')
ENVNAME:="env"
else
ENVNAME:=$(shell basename $(VIRTUAL_ENV) 2>/dev/null || echo "")
endif
PROJECT:=$(shell basename $(CWD))
# Explicitly use 'python3' for OSs that stopped installing 'python'
# as Python 2.7.
PYTHON=python3
CURRENT_ID=root:root
.PHONY: all
all: install-active
.PHONY: help
help:
@echo 'usage: make [VARIABLE=value] [target [target..]]'
@echo ''
@echo 'test - generic target for both "test-tox" and "test-bats"'
@echo 'test-tox - run tox tests'
@echo 'test-bats - run Bats unit tests'
@echo 'test-bats-runtime - run Bats runtime integration/system tests'
@echo 'release - produce a pypi production release'
@echo 'release-test - produce a pypi test release'
@echo 'release-prep - final documentation preparations for release'
@echo 'sdist - run "$(PYTHON) setup.py sdist"'
@echo 'bdist_wheel - build a universal binary wheel'
@echo 'twine-check - run "twine check"'
@echo 'clean - remove build artifacts'
@echo 'spotless - deep clean'
@echo 'build-packet-cafe - Build and bring up packet_cafe containers'
@echo 'up-packet-cafe - Bring up packet_cafe containers'
@echo 'down-packet-cafe - Bring up packet_cafe containers'
@echo 'clean-packet-cafe - remove packet_cafe contents'
@echo 'spotless-packet-cafe - Remove all packet_cafe files and containers'
@echo 'install - install pip package'
@echo 'install-active - run "$(PYTHON) -m pip install -U ."'
@echo 'docs-tests - generate bats test output for documentation'
@echo 'docs-help - generate "lim help" output for documentation'
@echo 'docs - build Sphinx docs'
#HELP test - run 'tox' for testing
.PHONY: test
test: test-tox
@echo '[+] All tests succeeded'
.PHONY: test-tox
test-tox:
@if [ -f .python_secrets_environment ]; then (echo '[!] Remove .python_secrets_environment prior to testing'; exit 1); fi
@# See comment in tox.ini file.
tox -e pep8,bandit,docs && tox -e py36,py37,py38,bats,pypi
.PHONY: test-bats
test-bats: bats-libraries
@if [ "$(TRAVIS)" != "true" ]; then \
if ! type bats 2>/dev/null >/dev/null; then \
echo "[-] Skipping bats tests"; \
else \
echo "[+] Running bats tests: $(shell cd tests && echo [0-9][0-9]*.bats)"; \
PYTHONWARNINGS="ignore" bats --tap tests/[0-9][0-9]*.bats; \
fi \
fi
.PHONY: test-bats-runtime
test-bats-runtime: bats-libraries
@echo "[+] Running bats runtime tests: $(shell cd tests && echo runtime_[0-9][0-9]*.bats)"; \
PYTHONWARNINGS="ignore" bats --tap tests/runtime_[0-9][0-9]*.bats
.PHONY: no-diffs
no-diffs:
@echo 'Checking Git for uncommitted changes'
git diff --quiet HEAD
#HELP release - package and upload a release to pypi
.PHONY: release
release: clean docs sdist bdist_wheel twine-check
twine upload dist/* -r pypi
#HELP release-prep - final documentation preparations for release
.PHONY: release-prep
release-prep: install-active clean sdist docs-help docs-tests
@echo 'Check in help text docs and HISTORY.rst changes?'
#HELP release-test - upload to "testpypi"
.PHONY: release-test
release-test: clean docs sdist bdist_wheel twine-check
$(MAKE) no-diffs
twine upload dist/* -r testpypi
#HELP sdist - build a source package
.PHONY: sdist
sdist: docs
rm -f dist/.LATEST_TARGZ
$(PYTHON) setup.py sdist
(cd dist && ls -t *.tar.gz 2>/dev/null | head -n 1) > dist/.LATEST_TARGZ
ls -lt dist/*.tar.gz
#HELP bdist_wheel - build a universal binary wheel
.PHONY: bdist_wheel
bdist_wheel:
rm -f dist/.LATEST_WHEEL
$(PYTHON) setup.py bdist_wheel --universal
(cd dist && ls -t *.whl 2>/dev/null | head -n 1) > dist/.LATEST_WHEEL
ls -lt dist/*.whl
#HELP twine-check
.PHONY: twine-check
twine-check: sdist
twine check dist/"$(shell cat dist/.LATEST_TARGZ)"
#HELP clean - remove build artifacts
.PHONY: clean
clean:
find . -name '*.pyc' -delete
rm -rf docs/_build/{html,doctrees}
rm -f ctu*-cache.json
rm -rf dist build *.egg-info
#HELP spotless - deep clean
.PHONY: spotless
spotless: clean
rm -rf .eggs .tox
(cd docs && make clean)
rm -rf tests/libs/{bats,bats-support,bats-assert}
#HELP build-packet-cafe - Build and bring up packet_cafe containers
.PHONY: build-packet-cafe
build-packet-cafe:
if lim -q cafe containers; then \
echo '[-] containers are already up'; \
else \
(cd ~/git/packet_cafe && \
CURRENT_ID=$(CURRENT_ID) docker-compose up -d --build); \
fi
#HELP pull-packet-cafe - Pull packet_cafe service containers
.PHONY: pull-packet-cafe
pull-packet-cafe:
cd ~/git/packet_cafe && docker-compose pull
#HELP up-packet-cafe - Bring up packet_cafe containers
.PHONY: up-packet-cafe
up-packet-cafe:
if lim -q cafe containers; then \
echo '[-] containers are already up'; \
else \
(cd ~/git/packet_cafe && \
CURRENT_ID=$(CURRENT_ID) docker-compose up -d); \
fi
#HELP down-packet-cafe - Bring up packet_cafe containers
.PHONY: down-packet-cafe
down-packet-cafe:
@if lim -q cafe containers; then \
(cd ~/git/packet_cafe && \
CURRENT_ID=$(CURRENT_ID) docker-compose down); \
else \
echo '[-] containers are already down'; \
fi
#HELP clean-packet-cafe - remove packet_cafe contents
.PHONY: clean-packet-cafe
clean-packet-cafe:
if lim -q cafe containers; then \
lim cafe admin delete --all || true; \
fi
#HELP spotless-packet-cafe - Remove all packet_cafe files and containers
.PHONY: spotless-packet-cafe
spotless-packet-cafe: clean-packet-cafe
if lim -q cafe containers; then \
(cd ~/git/packet_cafe && \
docker-compose down); \
fi
[ ! -z "$(VOL_PREFIX)" ] && sudo rm -rf $(VOL_PREFIX)/{definitions,files,id,redis} || true
@# Quick hack to include custom images; replace this with new --docker-*-namespace option.
for image in $(shell docker images | egrep "iqtlabs|davedittrich/" | awk '{print $$3;}'); \
do \
docker rmi $$image; \
done
#HELP install - install in required Python virtual environment (default $(REQUIRED_VENV))
.PHONY: install
install:
@if [ ! -d $(VENV_DIR) ]; then \
echo "Required virtual environment '$(REQUIRED_VENV)' not found."; \
exit 1; \
fi
@if [ ! -e "$(VENV_DIR)/bin/python3" ]; then \
echo "Cannot find $(VENV_DIR)/bin/python3"; \
exit 1; \
else \
echo "Installing into $(REQUIRED_VENV) virtual environment"; \
$(VENV_DIR)/bin/python3 -m pip uninstall -y $(PROJECT); \
$(VENV_DIR)/bin/python3 setup.py install | grep -v 'already satisfied'; \
fi
#HELP install-active - install in the active Python virtual environment
.PHONY: i
.PHONY: install-active
i install-active: bdist_wheel
$(PYTHON) -m pip uninstall -y $(PROJECT)
$(PYTHON) -m pip install -U "dist/$(shell cat dist/.LATEST_WHEEL)" | grep -v 'already satisfied'
#HELP docs-tests - generate bats test output for documentation
.PHONY: docs-tests
PR=pr --omit-header --omit-pagination --page-width 80
docs-tests:
$(MAKE) -B docs/test-tox.txt
$(MAKE) -B docs/test-bats.txt
$(MAKE) -B docs/test-bats-runtime.txt
docs/test-tox.txt:
(echo '$$ make test-tox' && $(MAKE) test-tox) |\
$(PR) | tee docs/test-tox.txt
docs/test-bats.txt:
$(MAKE) test-bats | $(PR) | tee docs/test-bats.txt
docs/test-bats-runtime.txt:
(echo '$$ make test-bats-runtime' && $(MAKE) test-bats-runtime) |\
$(PR) | tee docs/test-bats-runtime.txt
#HELP docs-help - generate "lim help" output for documentation
.PHONY: docs-help
docs-help:
(export LIM_DATA_DIR='/path/to/data'; \
export LIM_CTU_CACHE='/home/user/.lim-ctu-cache.json'; \
unset LIM_BROWSER; \
$(PYTHON) -m lim help) > docs/lim-help.txt
#HELP docs - build Sphinx docs (NOT INTEGRATED YET FROM OPENSTACK CODE BASE)
.PHONY: docs
docs:
(export LIM_DATA_DIR='/path/to/data'; \
export LIM_CTU_CACHE='/home/user/.lim-ctu-cache.json'; \
unset LIM_BROWSER; \
cd docs && \
make clean html)
#HELP examples - produce some example output for docs
.PHONY: examples
examples:
lim --help
# Git submodules and subtrees are both a huge PITA. This is way simpler.
.PHONY: bats-libraries
bats-libraries: bats-core bats-support bats-assert
bats-core:
@if [ ! -d tests/libs/bats-core ]; then \
mkdir -p tests/libs/bats-core; \
git clone http://github.com/bats-core/bats-core tests/libs/bats-core; \
sudo tests/libs/bats-core/install.sh /usr/local; \
fi
bats-support:
@[ -d tests/libs/bats-support ] || \
(mkdir -p tests/libs/bats-support; git clone https://github.com/ztombol/bats-support tests/libs/bats-support)
bats-assert:
@[ -d tests/libs/bats-assert ] || \
(mkdir -p tests/libs/bats-assert; git clone https://github.com/ztombol/bats-assert tests/libs/bats-assert)
#EOF