]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - Makefile
Makefile: add 'make check' as an alias for 'make test'. Also remove an unnecessary...
[tahoe-lafs/tahoe-lafs.git] / Makefile
1
2 # NOTE: this Makefile requires GNU make
3
4 default: build
5
6 PYTHON=python
7 export PYTHON
8
9 # setup.py will extend sys.path to include our support/lib/... directory
10 # itself. It will also create it in the beginning of the 'develop' command.
11
12 PP=$(shell $(PYTHON) setup.py -q show_pythonpath)
13 RUNPP=$(PYTHON) setup.py run_with_pythonpath
14 TAHOE=$(PYTHON) bin/tahoe
15
16 .PHONY: make-version build
17
18 # The 'darcsver' setup.py command comes in the 'darcsver' package:
19 # http://pypi.python.org/pypi/darcsver It is necessary only if you want to
20 # automatically produce a new _version.py file from the current darcs history.
21 make-version:
22         $(PYTHON) ./setup.py darcsver --count-all-patches
23
24 # We want src/allmydata/_version.py to be up-to-date, but it's a fairly
25 # expensive operation (about 6 seconds on a just-before-0.7.0 tree, probably
26 # because of the 332 patches since the last tag), and we've removed the need
27 # for an explicit 'build' step by removing the C code from src/allmydata and
28 # by running everything in place. It would be neat to do:
29 #
30 #src/allmydata/_version.py: _darcs/patches
31 #       $(MAKE) make-version
32 #
33 # since that would update the embedded version string each time new darcs
34 # patches were pulled, but without an obligatory 'build' step this rule
35 # wouldn't be run frequently enough anyways.
36 #
37 # So instead, I'll just make sure that we update the version at least once
38 # when we first start using the tree, and again whenever an explicit
39 # 'make-version' is run, since then at least the developer has some means to
40 # update things. It would be nice if 'make clean' deleted any
41 # automatically-generated _version.py too, so that 'make clean; make all'
42 # could be useable as a "what the heck is going on, get me back to a clean
43 # state', but we need 'make clean' to work on non-darcs trees without
44 # destroying useful information.
45
46 .built:
47         $(MAKE) build
48
49 src/allmydata/_version.py:
50         $(MAKE) make-version
51
52 build: src/allmydata/_version.py
53         $(PYTHON) setup.py build
54         touch .built
55
56 # 'make install' will do the following:
57 #   build+install tahoe (probably to /usr/lib/pythonN.N/site-packages)
58 # 'make install PREFIX=/usr/local/stow/tahoe-N.N' will do the same, but to
59 # a different location
60
61 install: src/allmydata/_version.py
62 ifdef PREFIX
63         mkdir -p $(PREFIX)
64         $(PYTHON) ./setup.py install --single-version-externally-managed \
65            --prefix=$(PREFIX) --record=./tahoe.files
66 else
67         $(PYTHON) ./setup.py install --single-version-externally-managed
68 endif
69
70
71 # TESTING
72
73 .PHONY: signal-error-deps test check test-coverage quicktest quicktest-coverage
74 .PHONY: coverage-output get-old-coverage-coverage coverage-delta-output
75
76
77 signal-error-deps:
78         @echo
79         @echo
80         @echo "ERROR: Not all of Tahoe's dependencies are in place.  Please see docs/quickstart.rst for help on installing dependencies."
81         @echo
82         @echo
83         exit 1
84
85 check-auto-deps:
86         $(PYTHON) setup.py -q check_auto_deps || $(MAKE) signal-error-deps
87
88 .checked-deps:
89         $(MAKE) check-auto-deps
90         touch .checked-deps
91
92 # you can use 'make test TEST=allmydata.test.test_introducer' to run just
93 # test_introducer. TEST=allmydata.test.test_client.Basic.test_permute works
94 # too.
95 TEST=allmydata
96
97 # use 'make test TRIALARGS=--reporter=bwverbose' from buildbot, to
98 # suppress the ansi color sequences
99
100 # It is unnecessary to have this depend on build or src/allmydata/_version.py,
101 # since 'setup.py test' always updates the version and builds before testing.
102 test:
103         $(PYTHON) setup.py test $(TRIALARGS) -s $(TEST)
104         touch .built
105
106 check: test
107
108 fuse-test: .built .checked-deps
109         $(RUNPP) -d contrib/fuse -p -c runtests.py
110
111 test-coverage: build src/allmydata/_version.py
112         rm -f .coverage
113         $(TAHOE) debug trial --reporter=bwverbose-coverage $(TEST)
114
115 quicktest:
116         $(TAHOE) debug trial $(TRIALARGS) $(TEST)
117
118 # code-coverage: install the "coverage" package from PyPI, do "make
119 # quicktest-coverage" to do a unit test run with coverage-gathering enabled,
120 # then use "make coverate-output-text" for a brief report, or "make
121 # coverage-output" for a pretty HTML report. Also see "make .coverage.el" and
122 # misc/coding_tools/coverage.el for emacs integration.
123
124 quicktest-coverage:
125         rm -f .coverage
126         $(TAHOE) debug trial --reporter=bwverbose-coverage $(TEST)
127 # on my laptop, "quicktest" takes 239s, "quicktest-coverage" takes 304s
128
129 # --include appeared in coverage-3.4
130 COVERAGE_OMIT=--include '$(CURDIR)/src/allmydata/*' --omit '$(CURDIR)/src/allmydata/test/*'
131 coverage-output:
132         rm -rf coverage-html
133         coverage html -i -d coverage-html $(COVERAGE_OMIT)
134         cp .coverage coverage-html/coverage.data
135         @echo "now point your browser at coverage-html/index.html"
136
137 .PHONY: upload-coverage .coverage.el pyflakes count-lines
138 .PHONY: check-memory check-memory-once check-speed check-grid
139 .PHONY: repl test-darcs-boringfile test-clean clean find-trailing-spaces
140
141 .coverage.el: .coverage
142         $(PYTHON) misc/coding_tools/coverage2el.py
143
144 # 'upload-coverage' is meant to be run with an UPLOAD_TARGET=host:/dir setting
145 ifdef UPLOAD_TARGET
146
147 ifndef UPLOAD_HOST
148 $(error UPLOAD_HOST must be set when using UPLOAD_TARGET)
149 endif
150 ifndef COVERAGEDIR
151 $(error COVERAGEDIR must be set when using UPLOAD_TARGET)
152 endif
153
154 upload-coverage:
155         rsync -a coverage-html/ $(UPLOAD_TARGET)
156         ssh $(UPLOAD_HOST) make update-tahoe-coverage COVERAGEDIR=$(COVERAGEDIR)
157 else
158 upload-coverage:
159         echo "this target is meant to be run with UPLOAD_TARGET=host:/path/"
160         false
161 endif
162
163
164 pyflakes:
165         $(PYTHON) -OOu `which pyflakes` src/allmydata static misc/build_helpers bin/tahoe-script.template twisted setup.py |sort |uniq
166 check-umids:
167         $(PYTHON) misc/coding_tools/check-umids.py `find src/allmydata -name '*.py'`
168
169 count-lines:
170         @echo -n "files: "
171         @find src -name '*.py' |grep -v /build/ |wc --lines
172         @echo -n "lines: "
173         @cat `find src -name '*.py' |grep -v /build/` |wc --lines
174         @echo -n "TODO: "
175         @grep TODO `find src -name '*.py' |grep -v /build/` | wc --lines
176
177 check-memory: .built
178         rm -rf _test_memory
179         $(RUNPP) -p -c "src/allmydata/test/check_memory.py upload"
180         $(RUNPP) -p -c "src/allmydata/test/check_memory.py upload-self"
181         $(RUNPP) -p -c "src/allmydata/test/check_memory.py upload-POST"
182         $(RUNPP) -p -c "src/allmydata/test/check_memory.py download"
183         $(RUNPP) -p -c "src/allmydata/test/check_memory.py download-GET"
184         $(RUNPP) -p -c "src/allmydata/test/check_memory.py download-GET-slow"
185         $(RUNPP) -p -c "src/allmydata/test/check_memory.py receive"
186
187 check-memory-once: .built
188         rm -rf _test_memory
189         $(RUNPP) -p -c "src/allmydata/test/check_memory.py $(MODE)"
190
191 # The check-speed target uses a pre-established client node to run a canned
192 # set of performance tests against a test network that is also
193 # pre-established (probably on a remote machine). Provide it with the path to
194 # a local directory where this client node has been created (and populated
195 # with the necessary FURLs of the test network). This target will start that
196 # client with the current code and then run the tests. Afterwards it will
197 # stop the client.
198 #
199 # The 'sleep 5' is in there to give the new client a chance to connect to its
200 # storageservers, since check_speed.py has no good way of doing that itself.
201
202 check-speed: .built
203         if [ -z '$(TESTCLIENTDIR)' ]; then exit 1; fi
204         @echo "stopping any leftover client code"
205         -$(TAHOE) stop $(TESTCLIENTDIR)
206         $(TAHOE) start $(TESTCLIENTDIR)
207         sleep 5
208         $(PYTHON) src/allmydata/test/check_speed.py $(TESTCLIENTDIR)
209         $(TAHOE) stop $(TESTCLIENTDIR)
210
211 # The check-grid target also uses a pre-established client node, along with a
212 # long-term directory that contains some well-known files. See the docstring
213 # in src/allmydata/test/check_grid.py to see how to set this up.
214 check-grid: .built
215         if [ -z '$(TESTCLIENTDIR)' ]; then exit 1; fi
216         $(PYTHON) src/allmydata/test/check_grid.py $(TESTCLIENTDIR) bin/tahoe
217
218 bench-dirnode: .built
219         $(RUNPP) -p -c src/allmydata/test/bench_dirnode.py
220
221 # 'make repl' is a simple-to-type command to get a Python interpreter loop
222 # from which you can type 'import allmydata'
223 repl:
224         $(TAHOE) debug repl
225
226 test-darcs-boringfile:
227         $(MAKE)
228         $(PYTHON) misc/build_helpers/test-darcs-boringfile.py
229
230 test-clean:
231         find . |grep -vEe "_darcs|allfiles.tmp|src/allmydata/_(version|appname).py" |sort >allfiles.tmp.old
232         $(MAKE)
233         $(MAKE) clean
234         find . |grep -vEe "_darcs|allfiles.tmp|src/allmydata/_(version|appname).py" |sort >allfiles.tmp.new
235         diff allfiles.tmp.old allfiles.tmp.new
236
237 clean:
238         rm -rf build _trial_temp _test_memory .checked-deps .built
239         rm -f `find src *.egg -name '*.so' -or -name '*.pyc'`
240         rm -rf src/allmydata_tahoe.egg-info
241         rm -rf support dist
242         rm -rf `ls -d *.egg | grep -vEe"setuptools-|setuptools_darcs-|darcsver-"`
243         rm -rf *.pyc
244         rm -rf misc/dependencies/build misc/dependencies/temp
245         rm -rf misc/dependencies/tahoe_deps.egg-info
246         rm -f bin/tahoe bin/tahoe.pyscript
247
248 find-trailing-spaces:
249         $(PYTHON) misc/coding_tools/find-trailing-spaces.py -r src
250
251 # The test-desert-island target grabs the tahoe-deps tarball, unpacks it,
252 # does a build, then asserts that the build did not try to download anything
253 # as it ran. Invoke this on a new tree, or after a 'clean', to make sure the
254 # support/lib/ directory is gone.
255
256 fetch-and-unpack-deps:
257         test -f tahoe-deps.tar.gz || wget http://tahoe-lafs.org/source/tahoe/deps/tahoe-deps.tar.gz
258         rm -rf tahoe-deps
259         tar xzf tahoe-deps.tar.gz
260
261 test-desert-island:
262         $(MAKE) fetch-and-unpack-deps
263         $(MAKE) 2>&1 | tee make.out
264         $(PYTHON) misc/build_helpers/check-build.py make.out no-downloads
265
266
267 # TARBALL GENERATION
268 .PHONY: tarballs upload-tarballs
269 tarballs:
270         $(MAKE) make-version
271         $(PYTHON) setup.py sdist --formats=bztar,gztar,zip
272         $(PYTHON) setup.py sdist --sumo --formats=bztar,gztar,zip
273
274 upload-tarballs:
275         @if [ "X${BB_BRANCH}" == "Xtrunk" ] || [ "X${BB_BRANCH}" == "X" ]; then for f in dist/allmydata-tahoe-*; do flappclient --furlfile ~/.tahoe-tarball-upload.furl upload-file $$f; done ; else echo not uploading tarballs because this is not trunk but is branch \"${BB_BRANCH}\" ; fi
276
277 # DEBIAN PACKAGING
278
279 VER=$(shell $(PYTHON) misc/build_helpers/get-version.py)
280 DEBCOMMENTS="'make deb' build"
281
282 show-version:
283         @echo $(VER)
284 show-pp:
285         @echo $(PP)
286
287 .PHONY: setup-deb deb-ARCH is-known-debian-arch
288 .PHONY: deb-etch deb-lenny deb-sid
289 .PHONY: deb-edgy deb-feisty deb-gutsy deb-hardy deb-intrepid deb-jaunty
290
291 # we use misc/debian_helpers/$TAHOE_ARCH/debian
292
293 deb-etch:      # py2.4
294         $(MAKE) deb-ARCH ARCH=etch TAHOE_ARCH=etch
295 deb-lenny:     # py2.5
296         $(MAKE) deb-ARCH ARCH=lenny TAHOE_ARCH=lenny
297 deb-sid:
298         $(MAKE) deb-ARCH ARCH=sid TAHOE_ARCH=sid
299
300 deb-edgy:     # py2.4
301         $(MAKE) deb-ARCH ARCH=edgy TAHOE_ARCH=etch
302 deb-feisty:   # py2.5
303         $(MAKE) deb-ARCH ARCH=feisty TAHOE_ARCH=lenny
304 deb-gutsy:    # py2.5
305         $(MAKE) deb-ARCH ARCH=gutsy TAHOE_ARCH=lenny
306 deb-hardy:    # py2.5
307         $(MAKE) deb-ARCH ARCH=hardy TAHOE_ARCH=lenny
308 deb-intrepid: # py2.5
309         $(MAKE) deb-ARCH ARCH=intrepid TAHOE_ARCH=lenny
310 deb-jaunty:   # py2.6
311         $(MAKE) deb-ARCH ARCH=jaunty TAHOE_ARCH=lenny
312
313
314
315 # we know how to handle the following debian architectures
316 KNOWN_DEBIAN_ARCHES := etch lenny sid  edgy feisty gutsy hardy intrepid jaunty
317
318 ifeq ($(findstring x-$(ARCH)-x,$(foreach arch,$(KNOWN_DEBIAN_ARCHES),"x-$(arch)-x")),)
319 is-known-debian-arch:
320         @echo "ARCH must be set when using setup-deb or deb-ARCH"
321         @echo "I know how to handle:" $(KNOWN_DEBIAN_ARCHES)
322         false
323 else
324 is-known-debian-arch:
325         true
326 endif
327
328 ifndef TAHOE_ARCH
329 TAHOE_ARCH=$(ARCH)
330 endif
331
332 setup-deb: is-known-debian-arch
333         rm -f debian
334         ln -s misc/debian_helpers/$(TAHOE_ARCH)/debian debian
335         chmod +x debian/rules
336
337 # etch (current debian stable) has python-simplejson-1.3, which doesn't
338 #  support indent=
339 # sid (debian unstable) currently has python-simplejson 1.7.1
340 # edgy has 1.3, which doesn't support indent=
341 # feisty has 1.4, which supports indent= but emits a deprecation warning
342 # gutsy has 1.7.1
343 #
344 # we need 1.4 or newer
345
346 deb-ARCH: is-known-debian-arch setup-deb
347         fakeroot debian/rules binary
348         @echo
349         @echo "The newly built .deb packages are in the parent directory from here."
350
351 .PHONY: increment-deb-version
352 .PHONY: deb-etch-head deb-lenny-head deb-sid-head
353 .PHONY: deb-edgy-head deb-feisty-head deb-gutsy-head deb-hardy-head deb-intrepid-head deb-jaunty-head
354
355 # The buildbot runs the following targets after each change, to produce
356 # up-to-date tahoe .debs. These steps do not create .debs for anything else.
357
358 increment-deb-version: make-version
359         debchange --newversion $(VER) $(DEBCOMMENTS)
360 deb-etch-head:
361         $(MAKE) setup-deb ARCH=etch TAHOE_ARCH=etch
362         $(MAKE) increment-deb-version
363         fakeroot debian/rules binary
364 deb-lenny-head:
365         $(MAKE) setup-deb ARCH=lenny TAHOE_ARCH=lenny
366         $(MAKE) increment-deb-version
367         fakeroot debian/rules binary
368 deb-sid-head:
369         $(MAKE) setup-deb ARCH=sid TAHOE_ARCH=lenny
370         $(MAKE) increment-deb-version
371         fakeroot debian/rules binary
372
373 deb-edgy-head:
374         $(MAKE) setup-deb ARCH=edgy TAHOE_ARCH=etch
375         $(MAKE) increment-deb-version
376         fakeroot debian/rules binary
377 deb-feisty-head:
378         $(MAKE) setup-deb ARCH=feisty TAHOE_ARCH=lenny
379         $(MAKE) increment-deb-version
380         fakeroot debian/rules binary
381 deb-gutsy-head:
382         $(MAKE) setup-deb ARCH=gutsy TAHOE_ARCH=lenny
383         $(MAKE) increment-deb-version
384         fakeroot debian/rules binary
385 deb-hardy-head:
386         $(MAKE) setup-deb ARCH=hardy TAHOE_ARCH=lenny
387         $(MAKE) increment-deb-version
388         fakeroot debian/rules binary
389 deb-intrepid-head:
390         $(MAKE) setup-deb ARCH=intrepid TAHOE_ARCH=lenny
391         $(MAKE) increment-deb-version
392         fakeroot debian/rules binary
393 deb-jaunty-head:
394         $(MAKE) setup-deb ARCH=jaunty TAHOE_ARCH=lenny
395         $(MAKE) increment-deb-version
396         fakeroot debian/rules binary
397
398 # new experimental debian-packaging-building target
399 .PHONY: EXPERIMENTAL-deb
400 EXPERIMENTAL-deb: is-known-debian-arch
401         $(PYTHON) misc/build_helpers/build-deb.py $(ARCH)