1 # use GNU Make to run tests in parallel, and without depending on RubyGems
14 GIT-VERSION-FILE
: .FORCE-GIT-VERSION-FILE
16 -include GIT-VERSION-FILE
18 ruby_bin
:= $(shell which
$(RUBY
))
19 ifeq ($(DLEXT
),) # "so" for Linux
20 DLEXT
:= $(shell $(RUBY
) -rrbconfig
-e
'puts RbConfig::CONFIG["DLEXT"]')
22 ifeq ($(RUBY_VERSION
),)
23 RUBY_VERSION
:= $(shell $(RUBY
) -e
'puts RUBY_VERSION')
26 RUBY_ENGINE
:= $(shell $(RUBY
) -e
'puts((RUBY_ENGINE rescue "ruby"))')
30 # dunno how to implement this as concisely in Ruby, and hell, I love awk
31 awk_slow
:= awk
'/def test_/{print FILENAME"--"$$2".n"}' 2>/dev
/null
33 slow_tests
:= test/unit
/test_server.rb
test/exec
/test_exec.rb \
34 test/unit
/test_signals.rb
test/unit
/test_upload.rb
35 log_suffix
= .
$(RUBY_ENGINE
).
$(RUBY_VERSION
).log
36 T
:= $(filter-out $(slow_tests
), $(wildcard test/*/test*.rb
))
37 T_n
:= $(shell $(awk_slow
) $(slow_tests
))
38 T_log
:= $(subst .rb
,$(log_suffix
),$(T
))
39 T_n_log
:= $(subst .n
,$(log_suffix
),$(T_n
))
40 test_prefix
= $(CURDIR
)/test/$(RUBY_ENGINE
)-$(RUBY_VERSION
)
42 ext
:= ext
/unicorn_http
43 c_files
:= $(ext
)/unicorn_http.c
$(ext
)/httpdate.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
60 http
: $(ext
)/unicorn_http.
$(DLEXT
)
63 http-install
: $(ext
)/unicorn_http.
$(DLEXT
)
66 test-install
: $(test_prefix
)/.stamp
67 $(test_prefix
)/.stamp
: $(inst_deps
)
68 mkdir
-p
$(test_prefix
)/.ccache
69 tar cf
- $(inst_deps
) GIT-VERSION-GEN | \
70 (cd
$(test_prefix
) && tar xf
-)
71 $(MAKE
) -C
$(test_prefix
) clean
72 $(MAKE
) -C
$(test_prefix
) http-install shebang RUBY
="$(RUBY)"
75 # this is only intended to be run within $(test_prefix)
77 $(MRI
) -i
-p
-e
'$$_.gsub!(%r{^#!.*$$},"#!$(ruby_bin)")' $^
79 t_log
:= $(T_log
) $(T_n_log
)
81 @cat
$(t_log
) |
$(MRI
) test/aggregate.rb
84 test-exec
: $(wildcard test/exec
/test_
*.rb
)
85 test-unit
: $(wildcard test/unit
/test_
*.rb
)
86 $(slow_tests
): $(test_prefix
)/.stamp
87 @
$(MAKE
) $(shell $(awk_slow
) $@
)
89 # ensure we can require just the HTTP parser without the rest of unicorn
90 test-require
: $(ext
)/unicorn_http.
$(DLEXT
)
91 $(RUBY
) --disable-gems
-I
$(ext
) -runicorn_http
-e Unicorn
93 test-integration
: $(test_prefix
)/.stamp
96 check: test-require
test test-integration
100 check_test
= grep
'0 failures, 0 errors' $(t
) >/dev
/null
102 quiet_pre
= @echo
'* $(arg)$(extra)';
103 quiet_post
= >$(t
) 2>&1 && $(check_test
)
105 # we can't rely on -o pipefail outside of bash 3+,
106 # so we use a stamp file to indicate success and
107 # have rm fail if the stamp didn't get created
108 stamp
= $@
$(log_suffix
).ok
109 quiet_pre
= @echo
$(RUBY
) $(arg
) $(TEST_OPTS
); ! test -f
$(stamp
) && (
110 quiet_post
= && > $(stamp
) )2>&1 | tee
$(t
); \
111 rm $(stamp
) 2>/dev
/null
&& $(check_test
)
114 # not all systems have setsid(8), we need it because we spam signals
115 # stupidly in some tests...
116 rb_setsid
:= $(RUBY
) -e
'Process.setsid' -e
'exec *ARGV'
118 # TRACER='strace -f -o $(t).strace -s 100000'
119 run_test
= $(quiet_pre
) \
120 $(rb_setsid
) $(TRACER
) $(RUBY
) -w
$(arg
) $(TEST_OPTS
) $(quiet_post
) || \
121 (sed
"s,^,$(extra): ," >&2 < $(t
); exit
1)
123 %.n
: arg
= $(subst .n
,,$(subst --, -n
,$@
))
124 %.n
: t
= $(subst .n
,$(log_suffix
),$@
)
125 %.n
: export PATH
:= $(test_prefix
)/bin
:$(PATH
)
126 %.n
: export RUBYLIB
:= $(test_prefix
)/lib
:$(MYLIBS
)
127 %.n
: $(test_prefix
)/.stamp
131 $(T
): t
= $(subst .rb
,$(log_suffix
),$@
)
132 $(T
): export PATH
:= $(test_prefix
)/bin
:$(PATH
)
133 $(T
): export RUBYLIB
:= $(test_prefix
)/lib
:$(MYLIBS
)
134 $(T
): $(test_prefix
)/.stamp
137 install: $(bins
) $(ext
)/unicorn_http.c
139 $(RM
) -r .install-tmp
141 cp
-p bin
/* .install-tmp
144 mv .install-tmp
/* bin
/
145 $(RM
) -r .install-tmp
148 setup_rb_files
:= .config InstalledFiles
149 prep_setup_rb
:= @
-$(RM
) $(setup_rb_files
);$(MAKE
) -C
$(ext
) clean
152 -$(MAKE
) -C
$(ext
) clean
153 -$(MAKE
) -C Documentation
clean
154 $(RM
) $(ext
)/Makefile
155 $(RM
) $(setup_rb_files
) $(t_log
)
156 $(RM
) -r
$(test_prefix
) man
159 $(MAKE
) -C Documentation install-
$@
161 pkg_extra
:= GIT-VERSION-FILE lib
/unicorn
/version.rb LATEST NEWS \
162 $(ext
)/unicorn_http.c
$(man1_paths
)
167 .manifest
: $(ext
)/unicorn_http.c man NEWS
168 (git ls-files
&& for i in
$@
$(pkg_extra
); do echo
$$i; done
) | \
170 cmp
$@
+ $@ || mv
$@
+ $@
173 PLACEHOLDERS
= $(man1_rdoc
)
174 doc
: .document
$(ext
)/unicorn_http.c man html .olddoc.yml
$(PLACEHOLDERS
)
175 find bin lib
-type f
-name
'*.rbc' -exec
rm -f
'{}' ';'
180 install -m644 COPYING doc
/COPYING
181 install -m644
$(shell LC_ALL
=C grep
'^[A-Z]' .document
) doc
/
182 install -m644
$(man1_paths
) doc
/
183 tar cf
- $$(git ls-files examples
/) |
(cd doc
&& tar xf
-)
185 # publishes docs to http://unicorn.bogomips.org
190 chmod
644 $$(find doc
-type f
)
191 $(RSYNC
) -av doc
/ unicorn.bogomips.org
:/srv
/unicorn
/
192 git ls-files | xargs touch
194 # Create gzip variants of the same timestamp as the original so nginx
195 # "gzip_static on" can serve the gzipped versions directly.
196 doc_gz
: docs
= $(shell find doc
-type f
! -regex
'^.*\.gz$$')
198 for i in
$(docs
); do \
199 gzip
--rsyncable
-9 < $$i > $$i.gz
; touch
-r
$$i $$i.gz
; done
203 pkggem
:= pkg
/$(rfpackage
)-$(VERSION
).gem
204 pkgtgz
:= pkg
/$(rfpackage
)-$(VERSION
).tgz
206 # ensures we're actually on the tagged $(VERSION), only used for release
208 test x
"$(shell umask)" = x0022
209 git rev-parse
--verify refs
/tags/v
$(VERSION
)^
{}
210 git diff-index
--quiet HEAD^
0
211 test `git rev-parse --verify HEAD^0` = \
212 `git rev-parse --verify refs/tags/v$(VERSION)^{}`
215 git ls-tree
-r HEAD | awk
'/^100644 / {print $$NF}' | xargs chmod
644
216 git ls-tree
-r HEAD | awk
'/^100755 / {print $$NF}' | xargs chmod
755
220 install-gem
: $(pkggem
)
221 gem
install $(CURDIR
)/$<
223 $(pkggem
): .manifest fix-perms
224 gem build
$(rfpackage
).gemspec
228 $(pkgtgz
): distdir
= $(basename $@
)
229 $(pkgtgz
): HEAD
= v
$(VERSION
)
230 $(pkgtgz
): .manifest fix-perms
231 @
test -n
"$(distdir)"
234 tar cf
- $$(cat .manifest
) |
(cd
$(distdir
) && tar xf
-)
235 cd pkg
&& tar cf
- $(basename $(@F
)) | gzip
-9 > $(@F
)+
238 package
: $(pkgtgz
) $(pkggem
)
240 release
: verify package
241 # push gem to Gemcutter
244 gem install-gem
: GIT-VERSION-FILE
245 $(MAKE
) $@ VERSION
=$(GIT_VERSION
)
249 echo olddoc_placeholder
> $@
251 .PHONY
: .FORCE-GIT-VERSION-FILE doc
$(T
) $(slow_tests
) man