forked from crossbario/crossbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
241 lines (191 loc) · 5.86 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
.PHONY: test docs
all:
@echo "Targets:"
@echo ""
@echo " clean Cleanup"
@echo " test Run unit tests"
@echo " flake8 Run flake tests"
@echo " install Local install"
@echo " publish Clean build and publish to PyPI"
@echo " docs Build and test docs"
@echo " prepareUbuntu Prepare running tests on Ubuntu"
@echo ""
clean:
rm -rf ./build
rm -rf ./dist
rm -rf ./crossbar.egg-info
rm -rf ./.crossbar
-find . -type d -name _trial_temp -exec rm -rf {} \;
rm -rf ./tests
rm -rf ./.tox
rm -rf ./vers
rm -f .coverage.*
rm -f .coverage
rm -rf ./htmlcov
-rm -rf ./_trial*
-rm -rf ./pip-wheel-metadata
-rm -rf ./docs/_build
find . -name "*.db" -exec rm -f {} \;
find . -name "*.pyc" -exec rm -f {} \;
find . -name "*.log" -exec rm -f {} \;
# Learn to love the shell! http://unix.stackexchange.com/a/115869/52500
find . \( -name "*__pycache__" -type d \) -prune -exec rm -rf {} +
# Targets for Sphinx-based documentation
#
#docs:
# sphinx-build -b html docs docs/_build
# spellcheck the docs
#docs_spelling:
# sphinx-build -b spelling -d docs/_build/doctrees docs docs/_build/spelling
docs:
cd docs && sphinx-build -b html . _build
docs_check:
cd docs && sphinx-build -nWT -b dummy . _build
docs_spelling:
cd docs && sphinx-build -nWT -b spelling -d ./_build/doctrees . ./_build/spelling
docs_run: docs
twistd --nodaemon web --path=docs/_build --listen=tcp:8090
docs_clean:
-rm -rf ./docs/_build
# freeze our dependencies
freeze:
# do everything in a fresh environment
rm -rf vers
virtualenv vers
# install and freeze latest versions of minimum requirements
vers/bin/pip3 install -r requirements-min.txt
vers/bin/pip3 freeze --all | grep -v -e "wheel" -e "pip" -e "distribute" > requirements-pinned.txt
# persist OSS license list of our exact dependencies
vers/bin/pip3 install pip-licenses
vers/bin/pip-licenses --from=classifier -a -o name > crossbar/LICENSES-OSS
# vers/bin/pip-licenses --from=classifier -a -o name -r > docs/oss_licenses_table.rst
# hash all dependencies for repeatable builds
vers/bin/pip3 install hashin
-rm requirements.txt
cat requirements-pinned.txt | xargs vers/bin/hashin > requirements.txt
wheel:
LMDB_FORCE_CFFI=1 SODIUM_INSTALL=bundled pip wheel --require-hashes --wheel-dir ./wheels -r requirements.txt
# install for development, using pinned dependencies, and including dev-only dependencies
install:
-pip uninstall -y crossbar
pip install --no-cache --upgrade -r requirements-dev.txt
pip install -e .
@python -c "import crossbar; print('*** crossbar-{} ***'.format(crossbar.__version__))"
# install using pinned/hashed dependencies, as we do for packaging
install_pinned:
-pip uninstall -y crossbar
LMDB_FORCE_CFFI=1 SODIUM_INSTALL=bundled pip install --ignore-installed --require-hashes -r requirements.txt
pip install .
@python -c "import crossbar; print('*** crossbar-{} ***'.format(crossbar.__version__))"
# upload to our internal deployment system
upload: clean
python setup.py bdist_wheel
aws s3 cp dist/*.whl s3://fabric-deploy/
# publish to PyPI
publish: clean
python setup.py sdist bdist_wheel
twine upload dist/*
test_trial: flake8
trial crossbar
test_full:
crossbar \
--personality=standalone \
--debug-lifecycle \
--debug-programflow\
start \
--cbdir=./test/full/.crossbar
test_manhole:
ssh -vvv -p 6022 oberstet@localhost
gen_ssh_keys:
# ssh-keygen -t ed25519 -f test/full/.crossbar/ssh_host_ed25519_key
ssh-keygen -t rsa -b 4096 -f test/full/.crossbar/ssh_host_rsa_key
test_coverage:
tox -e coverage .
test:
tox -e sphinx,flake8,py36-unpinned-trial,py36-cli,py36-examples,coverage .
test_bandit:
tox -e bandit .
test_cli:
./test/test_cli.sh
test_cli_tox:
tox -e py36-cli .
test_examples:
tox -e py36-examples .
test_mqtt:
# trial crossbar.adapter.mqtt.test.test_wamp
trial crossbar.adapter.mqtt.test.test_wamp.MQTTAdapterTests.test_basic_publish
test_router:
trial crossbar.router.test.test_broker
#trial crossbar.router.test.test_router
test_testament:
trial crossbar.router.test.test_testament
test_auth_ticket:
trial crossbar.router.test.test_authorize.TestDynamicAuth.test_authextra_ticket
test_auth:
trial crossbar.router.test.test_authorize
test_reactors:
clear
-crossbar version --loglevel=debug
-crossbar --reactor="select" version --loglevel=debug
-crossbar --reactor="poll" version --loglevel=debug
-crossbar --reactor="epoll" version --loglevel=debug
-crossbar --reactor="kqueue" version --loglevel=debug
-crossbar --reactor="iocp" version --loglevel=debug
full_test: clean flake8
trial crossbar
# This will run pep8, pyflakes and can skip lines that end with # noqa
flake8:
flake8 --ignore=E117,E402,F405,E501,E722,E741,E731,N801,N802,N803,N805,N806 crossbar
flake8_stats:
flake8 --statistics --max-line-length=119 -qq crossbar
version:
PYTHONPATH=. python -m crossbar.controller.cli version
pyflakes:
pyflakes crossbar
pep8:
pep8 --statistics --ignore=E501 -qq .
pep8_show_e231:
pep8 --select=E231 --show-source
autopep8:
autopep8 -ri --aggressive --ignore=E501 .
pylint:
pylint -d line-too-long,invalid-name crossbar
find_classes:
find crossbar -name "*.py" -exec grep -Hi "^class" {} \; | grep -iv test
# sudo apt install gource ffmpeg
gource:
gource \
--path . \
--seconds-per-day 0.15 \
--title "crossbar" \
-1280x720 \
--file-idle-time 0 \
--auto-skip-seconds 0.75 \
--multi-sampling \
--stop-at-end \
--highlight-users \
--hide filenames,mouse,progress \
--max-files 0 \
--background-colour 000000 \
--disable-bloom \
--font-size 24 \
--output-ppm-stream - \
--output-framerate 30 \
-o - \
| ffmpeg \
-y \
-r 60 \
-f image2pipe \
-vcodec ppm \
-i - \
-vcodec libx264 \
-preset ultrafast \
-pix_fmt yuv420p \
-crf 1 \
-threads 0 \
-bf 0 \
crossbar.mp4
# Some prerequisites needed on ubuntu to run the tests.
prepareUbuntu:
sudo apt install libsnappy-dev
sudo apt install python-tox