update test infrastructure to run Rubinius tests
[unicorn.git] / GNUmakefile
blobc37347fd0212d2cee28c6f84fcfd7817d55b9575
1 # use GNU Make to run tests in parallel, and without depending on RubyGems
2 all:: test
4 GIT_URL = git://git.bogomips.org/unicorn.git
5 RLFLAGS = -G2
7 # lower-case vars are deprecated
8 MRI = ruby
9 RUBY = ruby
10 RAKE = rake
11 RAGEL = ragel
13 GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
14 @./GIT-VERSION-GEN
15 -include GIT-VERSION-FILE
16 -include local.mk
17 ruby_bin := $(shell which $(RUBY))
18 ifeq ($(DLEXT),) # "so" for Linux
19 DLEXT := $(shell $(RUBY) -rrbconfig -e 'puts Config::CONFIG["DLEXT"]')
20 endif
21 ifeq ($(RUBY_VERSION),)
22 RUBY_VERSION := $(shell $(RUBY) -e 'puts RUBY_VERSION')
23 endif
25 RUBY_ENGINE := $(shell $(RUBY) -e 'puts((RUBY_ENGINE rescue "ruby"))')
27 # dunno how to implement this as concisely in Ruby, and hell, I love awk
28 awk_slow := awk '/def test_/{print FILENAME"--"$$2".n"}' 2>/dev/null
30 rails_vers := $(subst test/rails/app-,,$(wildcard test/rails/app-*))
31 slow_tests := test/unit/test_server.rb test/exec/test_exec.rb \
32 test/unit/test_signals.rb test/unit/test_upload.rb
33 log_suffix = .$(RUBY_ENGINE).$(RUBY_VERSION).log
34 T_r := $(wildcard test/rails/test*.rb)
35 T := $(filter-out $(slow_tests) $(T_r), $(wildcard test/*/test*.rb))
36 T_n := $(shell $(awk_slow) $(slow_tests))
37 T_log := $(subst .rb,$(log_suffix),$(T))
38 T_n_log := $(subst .n,$(log_suffix),$(T_n))
39 T_r_log := $(subst .r,$(log_suffix),$(T_r))
40 test_prefix = $(CURDIR)/test/$(RUBY_ENGINE)-$(RUBY_VERSION)
42 ext := ext/unicorn_http
43 c_files := $(ext)/unicorn_http.c $(wildcard $(ext)/*.h)
44 rl_files := $(wildcard $(ext)/*.rl)
45 base_bins := unicorn unicorn_rails
46 bins := $(addprefix bin/, $(base_bins))
47 man1_rdoc := $(addsuffix _1, $(base_bins))
48 man1_bins := $(addsuffix .1, $(base_bins))
49 man1_paths := $(addprefix man/man1/, $(man1_bins))
50 rb_files := $(bins) $(shell find lib ext -type f -name '*.rb')
51 inst_deps := $(c_files) $(rb_files) GNUmakefile test/test_helper.rb
53 ragel: $(ext)/unicorn_http.c
54 $(ext)/unicorn_http.c: $(rl_files)
55 cd $(@D) && $(RAGEL) unicorn_http.rl -C $(RLFLAGS) -o $(@F)
56 $(ext)/Makefile: $(ext)/extconf.rb $(c_files)
57 cd $(@D) && $(RUBY) extconf.rb
58 $(ext)/unicorn_http.$(DLEXT): $(ext)/Makefile
59 $(MAKE) -C $(@D)
60 lib/unicorn_http.$(DLEXT): $(ext)/unicorn_http.$(DLEXT)
61 @mkdir -p lib
62 install -m644 $< $@
63 http: lib/unicorn_http.$(DLEXT)
65 test-install: $(test_prefix)/.stamp
66 $(test_prefix)/.stamp: $(inst_deps)
67 mkdir -p $(test_prefix)/.ccache
68 tar cf - $(inst_deps) GIT-VERSION-GEN | \
69 (cd $(test_prefix) && tar xf -)
70 $(MAKE) -C $(test_prefix) clean
71 $(MAKE) -C $(test_prefix) http shebang RUBY="$(RUBY)"
72 > $@
74 # this is only intended to be run within $(test_prefix)
75 shebang: $(bins)
76 $(MRI) -i -p -e '$$_.gsub!(%r{^#!.*$$},"#!$(ruby_bin)")' $^
78 t_log := $(T_log) $(T_n_log)
79 test: $(T) $(T_n)
80 @$(MRI) test/aggregate.rb < $(t_log)
81 @$(RM) $(t_log)
83 test-exec: $(wildcard test/exec/test_*.rb)
84 test-unit: $(wildcard test/unit/test_*.rb)
85 $(slow_tests): $(test_prefix)/.stamp
86 @$(MAKE) $(shell $(awk_slow) $@)
88 TEST_OPTS = -v
89 check_test = grep '0 failures, 0 errors' $(t) >/dev/null
90 ifndef V
91 quiet_pre = @echo '* $(arg)$(extra)';
92 quiet_post = >$(t) 2>&1 && $(check_test)
93 else
94 # we can't rely on -o pipefail outside of bash 3+,
95 # so we use a stamp file to indicate success and
96 # have rm fail if the stamp didn't get created
97 stamp = $@$(log_suffix).ok
98 quiet_pre = @echo $(RUBY) $(arg) $(TEST_OPTS); ! test -f $(stamp) && (
99 quiet_post = && > $(stamp) )2>&1 | tee $(t); \
100 rm $(stamp) 2>/dev/null && $(check_test)
101 endif
103 # not all systems have setsid(8), we need it because we spam signals
104 # stupidly in some tests...
105 rb_setsid := $(RUBY) -e 'Process.setsid' -e 'exec *ARGV'
107 # TRACER='strace -f -o $(t).strace -s 100000'
108 run_test = $(quiet_pre) \
109 $(rb_setsid) $(TRACER) $(RUBY) -w $(arg) $(TEST_OPTS) $(quiet_post) || \
110 (sed "s,^,$(extra): ," >&2 < $(t); exit 1)
112 %.n: arg = $(subst .n,,$(subst --, -n ,$@))
113 %.n: t = $(subst .n,$(log_suffix),$@)
114 %.n: export PATH := $(test_prefix)/bin:$(PATH)
115 %.n: export RUBYLIB := $(test_prefix):$(test_prefix)/lib:$(RUBYLIB)
116 %.n: $(test_prefix)/.stamp
117 $(run_test)
119 $(T): arg = $@
120 $(T): t = $(subst .rb,$(log_suffix),$@)
121 $(T): export PATH := $(test_prefix)/bin:$(PATH)
122 $(T): export RUBYLIB := $(test_prefix):$(test_prefix)/lib:$(RUBYLIB)
123 $(T): $(test_prefix)/.stamp
124 $(run_test)
126 install: $(bins) $(ext)/unicorn_http.c
127 $(prep_setup_rb)
128 $(RM) lib/unicorn_http.$(DLEXT)
129 $(RM) -r .install-tmp
130 mkdir .install-tmp
131 cp -p bin/* .install-tmp
132 $(RUBY) setup.rb all
133 $(RM) $^
134 mv .install-tmp/* bin/
135 $(RM) -r .install-tmp
136 $(prep_setup_rb)
138 setup_rb_files := .config InstalledFiles
139 prep_setup_rb := @-$(RM) $(setup_rb_files);$(MAKE) -C $(ext) clean
141 clean:
142 -$(MAKE) -C $(ext) clean
143 -$(MAKE) -C Documentation clean
144 $(RM) $(ext)/Makefile lib/unicorn_http.$(DLEXT)
145 $(RM) $(setup_rb_files) $(t_log)
146 $(RM) -r $(test_prefix) man
148 man:
149 $(MAKE) -C Documentation install-man
151 pkg_extra := GIT-VERSION-FILE NEWS ChangeLog $(ext)/unicorn_http.c
152 manifest: $(pkg_extra) man
153 $(RM) .manifest
154 $(MAKE) .manifest
156 .manifest:
157 (git ls-files && \
158 for i in $@ $(pkg_extra) $(man1_paths); \
159 do echo $$i; done) | LC_ALL=C sort > $@+
160 cmp $@+ $@ || mv $@+ $@
161 $(RM) $@+
163 NEWS: GIT-VERSION-FILE .manifest
164 $(RAKE) -s news_rdoc > $@+
165 mv $@+ $@
167 SINCE = 0.97.1
168 ChangeLog: LOG_VERSION = \
169 $(shell git rev-parse -q "$(GIT_VERSION)" >/dev/null 2>&1 && \
170 echo $(GIT_VERSION) || git describe)
171 ChangeLog: log_range = v$(SINCE)..$(LOG_VERSION)
172 ChangeLog: GIT-VERSION-FILE
173 @echo "ChangeLog from $(GIT_URL) ($(log_range))" > $@+
174 @echo >> $@+
175 git log $(log_range) | sed -e 's/^/ /' >> $@+
176 mv $@+ $@
178 news_atom := http://unicorn.bogomips.org/NEWS.atom.xml
179 cgit_atom := http://git.bogomips.org/cgit/unicorn.git/atom/?h=master
180 atom = <link rel="alternate" title="Atom feed" href="$(1)" \
181 type="application/atom+xml"/>
183 # using rdoc 2.5.x+
184 doc: .document $(ext)/unicorn_http.c NEWS ChangeLog
185 for i in $(man1_rdoc); do echo > $$i; done
186 find bin lib -type f -name '*.rbc' -exec rm -f '{}' ';'
187 rdoc -a -t "$(shell sed -ne '1s/^= //p' README)"
188 install -m644 COPYING doc/COPYING
189 install -m644 $(shell grep '^[A-Z]' .document) doc/
190 $(MAKE) -C Documentation install-html install-man
191 install -m644 $(man1_paths) doc/
192 cd doc && for i in $(base_bins); do \
193 $(RM) 1.html $${i}.1.html; \
194 sed -e '/"documentation">/r man1/'$$i'.1.html' \
195 < $${i}_1.html > tmp && mv tmp $${i}_1.html; \
196 ln $${i}_1.html $${i}.1.html; \
197 done
198 $(RUBY) -i -p -e \
199 '$$_.gsub!("</title>",%q{\&$(call atom,$(cgit_atom))})' \
200 doc/ChangeLog.html
201 $(RUBY) -i -p -e \
202 '$$_.gsub!("</title>",%q{\&$(call atom,$(news_atom))})' \
203 doc/NEWS.html doc/README.html
204 $(RAKE) -s news_atom > doc/NEWS.atom.xml
205 cd doc && ln README.html tmp && mv tmp index.html
206 $(RM) $(man1_rdoc)
208 rails_git_url = git://github.com/rails/rails.git
209 rails_git := vendor/rails.git
210 $(rails_git)/info/cloned-stamp:
211 git clone --mirror -q $(rails_git_url) $(rails_git)
212 > $@
214 $(rails_git)/info/v2.3.8-stamp: $(rails_git)/info/cloned-stamp
215 cd $(rails_git) && git fetch
216 cd $(rails_git) && git rev-parse --verify refs/tags/v2.3.8
217 > $@
219 rails_tests := $(addsuffix .r,$(addprefix $(T_r).,$(rails_vers)))
220 test-rails: $(rails_tests)
221 $(T_r).%.r: t = $(addsuffix $(log_suffix),$@)
222 $(T_r).%.r: rv = $(subst .r,,$(subst $(T_r).,,$@))
223 $(T_r).%.r: extra = ' 'v$(rv)
224 $(T_r).%.r: arg = $(T_r)
225 $(T_r).%.r: export PATH := $(test_prefix)/bin:$(PATH)
226 $(T_r).%.r: export RUBYLIB := $(test_prefix):$(test_prefix)/lib:$(RUBYLIB)
227 $(T_r).%.r: export UNICORN_RAILS_TEST_VERSION = $(rv)
228 $(T_r).%.r: export RAILS_GIT_REPO = $(CURDIR)/$(rails_git)
229 $(T_r).%.r: $(test_prefix)/.stamp $(rails_git)/info/v2.3.8-stamp
230 $(run_test)
232 ifneq ($(VERSION),)
233 rfproject := mongrel
234 rfpackage := unicorn
235 pkggem := pkg/$(rfpackage)-$(VERSION).gem
236 pkgtgz := pkg/$(rfpackage)-$(VERSION).tgz
237 release_notes := release_notes-$(VERSION)
238 release_changes := release_changes-$(VERSION)
240 release-notes: $(release_notes)
241 release-changes: $(release_changes)
242 $(release_changes):
243 $(RAKE) -s release_changes > $@+
244 $(VISUAL) $@+ && test -s $@+ && mv $@+ $@
245 $(release_notes):
246 GIT_URL=$(GIT_URL) $(RAKE) -s release_notes > $@+
247 $(VISUAL) $@+ && test -s $@+ && mv $@+ $@
249 # ensures we're actually on the tagged $(VERSION), only used for release
250 verify:
251 test x"$(shell umask)" = x0022
252 git rev-parse --verify refs/tags/v$(VERSION)^{}
253 git diff-index --quiet HEAD^0
254 test `git rev-parse --verify HEAD^0` = \
255 `git rev-parse --verify refs/tags/v$(VERSION)^{}`
257 fix-perms:
258 git ls-tree -r HEAD | awk '/^100644 / {print $$NF}' | xargs chmod 644
259 git ls-tree -r HEAD | awk '/^100755 / {print $$NF}' | xargs chmod 755
261 gem: $(pkggem)
263 install-gem: $(pkggem)
264 gem install $(CURDIR)/$<
266 $(pkggem): manifest fix-perms
267 gem build $(rfpackage).gemspec
268 mkdir -p pkg
269 mv $(@F) $@
271 $(pkgtgz): distdir = $(basename $@)
272 $(pkgtgz): HEAD = v$(VERSION)
273 $(pkgtgz): manifest fix-perms
274 @test -n "$(distdir)"
275 $(RM) -r $(distdir)
276 mkdir -p $(distdir)
277 tar cf - `cat .manifest` | (cd $(distdir) && tar xf -)
278 cd pkg && tar cf - $(basename $(@F)) | gzip -9 > $(@F)+
279 mv $@+ $@
281 package: $(pkgtgz) $(pkggem)
283 release: verify package $(release_notes) $(release_changes)
284 # make tgz release on RubyForge
285 rubyforge add_release -f -n $(release_notes) -a $(release_changes) \
286 $(rfproject) $(rfpackage) $(VERSION) $(pkgtgz)
287 # push gem to Gemcutter
288 gem push $(pkggem)
289 # in case of gem downloads from RubyForge releases page
290 -rubyforge add_file \
291 $(rfproject) $(rfpackage) $(VERSION) $(pkggem)
292 $(RAKE) raa_update VERSION=$(VERSION)
293 $(RAKE) fm_update VERSION=$(VERSION)
294 else
295 gem install-gem: GIT-VERSION-FILE
296 $(MAKE) $@ VERSION=$(GIT_VERSION)
297 endif
299 .PHONY: .FORCE-GIT-VERSION-FILE doc $(T) $(slow_tests) manifest man
300 .PHONY: test-install