unicorn-lb-patch 4.3.1.11.g21b8.dirty
Sign up to get free protection for your applications and to get access to all the features.
- data/.CHANGELOG.old +25 -0
- data/.document +29 -0
- data/.gitignore +25 -0
- data/.mailmap +26 -0
- data/.wrongdoc.yml +10 -0
- data/Application_Timeouts +77 -0
- data/CONTRIBUTORS +35 -0
- data/COPYING +674 -0
- data/DESIGN +97 -0
- data/Documentation/.gitignore +5 -0
- data/Documentation/GNUmakefile +30 -0
- data/Documentation/unicorn.1.txt +174 -0
- data/Documentation/unicorn_rails.1.txt +175 -0
- data/FAQ +53 -0
- data/GIT-VERSION-GEN +40 -0
- data/GNUmakefile +294 -0
- data/HACKING +134 -0
- data/ISSUES +36 -0
- data/KNOWN_ISSUES +79 -0
- data/LICENSE +64 -0
- data/Links +56 -0
- data/PHILOSOPHY +145 -0
- data/README +149 -0
- data/Rakefile +97 -0
- data/SIGNALS +114 -0
- data/Sandbox +96 -0
- data/TODO +5 -0
- data/TUNING +98 -0
- data/bin/unicorn +121 -0
- data/bin/unicorn_rails +209 -0
- data/examples/big_app_gc.rb +2 -0
- data/examples/echo.ru +27 -0
- data/examples/git.ru +13 -0
- data/examples/init.sh +74 -0
- data/examples/logger_mp_safe.rb +25 -0
- data/examples/logrotate.conf +29 -0
- data/examples/nginx.conf +156 -0
- data/examples/unicorn.conf.minimal.rb +13 -0
- data/examples/unicorn.conf.rb +94 -0
- data/ext/unicorn_http/CFLAGS +13 -0
- data/ext/unicorn_http/c_util.h +124 -0
- data/ext/unicorn_http/common_field_optimization.h +111 -0
- data/ext/unicorn_http/ext_help.h +86 -0
- data/ext/unicorn_http/extconf.rb +10 -0
- data/ext/unicorn_http/global_variables.h +97 -0
- data/ext/unicorn_http/httpdate.c +82 -0
- data/ext/unicorn_http/unicorn_http.rl +1036 -0
- data/ext/unicorn_http/unicorn_http_common.rl +76 -0
- data/lib/unicorn.rb +107 -0
- data/lib/unicorn/app/exec_cgi.rb +154 -0
- data/lib/unicorn/app/inetd.rb +109 -0
- data/lib/unicorn/app/old_rails.rb +35 -0
- data/lib/unicorn/app/old_rails/static.rb +59 -0
- data/lib/unicorn/cgi_wrapper.rb +147 -0
- data/lib/unicorn/configurator.rb +630 -0
- data/lib/unicorn/const.rb +40 -0
- data/lib/unicorn/http_request.rb +77 -0
- data/lib/unicorn/http_response.rb +45 -0
- data/lib/unicorn/http_server.rb +755 -0
- data/lib/unicorn/launcher.rb +62 -0
- data/lib/unicorn/oob_gc.rb +71 -0
- data/lib/unicorn/preread_input.rb +33 -0
- data/lib/unicorn/socket_helper.rb +208 -0
- data/lib/unicorn/ssl_client.rb +11 -0
- data/lib/unicorn/ssl_configurator.rb +104 -0
- data/lib/unicorn/ssl_server.rb +42 -0
- data/lib/unicorn/stream_input.rb +149 -0
- data/lib/unicorn/tee_input.rb +126 -0
- data/lib/unicorn/tmpio.rb +29 -0
- data/lib/unicorn/util.rb +68 -0
- data/lib/unicorn/worker.rb +88 -0
- data/local.mk.sample +59 -0
- data/script/isolate_for_tests +50 -0
- data/setup.rb +1586 -0
- data/t/.gitignore +5 -0
- data/t/GNUmakefile +82 -0
- data/t/README +42 -0
- data/t/bin/content-md5-put +36 -0
- data/t/bin/sha1sum.rb +17 -0
- data/t/bin/unused_listen +40 -0
- data/t/bin/utee +12 -0
- data/t/broken-app.ru +12 -0
- data/t/detach.ru +11 -0
- data/t/env.ru +3 -0
- data/t/heartbeat-timeout.ru +12 -0
- data/t/listener_names.ru +4 -0
- data/t/my-tap-lib.sh +201 -0
- data/t/oob_gc.ru +21 -0
- data/t/oob_gc_path.ru +21 -0
- data/t/pid.ru +3 -0
- data/t/preread_input.ru +17 -0
- data/t/rack-input-tests.ru +21 -0
- data/t/rails3-app/.gitignore +4 -0
- data/t/rails3-app/Gemfile +26 -0
- data/t/rails3-app/Rakefile +10 -0
- data/t/rails3-app/app/controllers/application_controller.rb +4 -0
- data/t/rails3-app/app/helpers/application_helper.rb +2 -0
- data/t/rails3-app/app/views/layouts/application.html.erb +14 -0
- data/t/rails3-app/config.ru +4 -0
- data/t/rails3-app/config/application.rb +46 -0
- data/t/rails3-app/config/boot.rb +6 -0
- data/t/rails3-app/config/database.yml +22 -0
- data/t/rails3-app/config/environment.rb +5 -0
- data/t/rails3-app/config/environments/development.rb +19 -0
- data/t/rails3-app/config/environments/production.rb +42 -0
- data/t/rails3-app/config/environments/test.rb +32 -0
- data/t/rails3-app/config/initializers/backtrace_silencers.rb +7 -0
- data/t/rails3-app/config/initializers/inflections.rb +10 -0
- data/t/rails3-app/config/initializers/mime_types.rb +5 -0
- data/t/rails3-app/config/initializers/secret_token.rb +7 -0
- data/t/rails3-app/config/initializers/session_store.rb +8 -0
- data/t/rails3-app/config/locales/en.yml +5 -0
- data/t/rails3-app/config/routes.rb +58 -0
- data/t/rails3-app/db/seeds.rb +7 -0
- data/t/rails3-app/doc/README_FOR_APP +2 -0
- data/t/rails3-app/lib/tasks/.gitkeep +0 -0
- data/t/rails3-app/public/404.html +1 -0
- data/t/rails3-app/public/500.html +1 -0
- data/t/rails3-app/public/x.txt +1 -0
- data/t/rails3-app/script/rails +9 -0
- data/t/rails3-app/test/performance/browsing_test.rb +9 -0
- data/t/rails3-app/test/test_helper.rb +13 -0
- data/t/rails3-app/vendor/plugins/.gitkeep +0 -0
- data/t/sslgen.sh +71 -0
- data/t/t0000-http-basic.sh +50 -0
- data/t/t0001-reload-bad-config.sh +53 -0
- data/t/t0002-config-conflict.sh +49 -0
- data/t/t0002-parser-error.sh +94 -0
- data/t/t0003-working_directory.sh +51 -0
- data/t/t0004-heartbeat-timeout.sh +69 -0
- data/t/t0004-working_directory_broken.sh +24 -0
- data/t/t0005-working_directory_app.rb.sh +37 -0
- data/t/t0006-reopen-logs.sh +83 -0
- data/t/t0006.ru +13 -0
- data/t/t0007-working_directory_no_embed_cli.sh +44 -0
- data/t/t0008-back_out_of_upgrade.sh +110 -0
- data/t/t0009-broken-app.sh +56 -0
- data/t/t0009-winch_ttin.sh +59 -0
- data/t/t0010-reap-logging.sh +55 -0
- data/t/t0011-active-unix-socket.sh +79 -0
- data/t/t0012-reload-empty-config.sh +85 -0
- data/t/t0013-rewindable-input-false.sh +24 -0
- data/t/t0013.ru +12 -0
- data/t/t0014-rewindable-input-true.sh +24 -0
- data/t/t0014.ru +12 -0
- data/t/t0015-configurator-internals.sh +25 -0
- data/t/t0016-trust-x-forwarded-false.sh +30 -0
- data/t/t0017-trust-x-forwarded-true.sh +30 -0
- data/t/t0018-write-on-close.sh +23 -0
- data/t/t0019-max_header_len.sh +49 -0
- data/t/t0020-at_exit-handler.sh +49 -0
- data/t/t0021-process_detach.sh +29 -0
- data/t/t0022-listener-names-preload_app.sh +32 -0
- data/t/t0100-rack-input-tests.sh +124 -0
- data/t/t0116-client_body_buffer_size.sh +80 -0
- data/t/t0116.ru +16 -0
- data/t/t0300-rails3-basic.sh +28 -0
- data/t/t0301-rails3-missing-config-ru.sh +33 -0
- data/t/t0302-rails3-alt-working_directory.sh +32 -0
- data/t/t0303-rails3-alt-working_directory_config.ru.sh +56 -0
- data/t/t0304-rails3-alt-working_directory_no_embed_cli.sh +52 -0
- data/t/t0600-https-server-basic.sh +48 -0
- data/t/t9000-preread-input.sh +48 -0
- data/t/t9001-oob_gc.sh +47 -0
- data/t/t9002-oob_gc-path.sh +75 -0
- data/t/test-lib.sh +113 -0
- data/t/test-rails3.sh +27 -0
- data/t/write-on-close.ru +11 -0
- data/test/aggregate.rb +15 -0
- data/test/benchmark/README +50 -0
- data/test/benchmark/dd.ru +18 -0
- data/test/benchmark/stack.ru +8 -0
- data/test/exec/README +5 -0
- data/test/exec/test_exec.rb +1055 -0
- data/test/rails/app-1.2.3/.gitignore +2 -0
- data/test/rails/app-1.2.3/Rakefile +7 -0
- data/test/rails/app-1.2.3/app/controllers/application.rb +6 -0
- data/test/rails/app-1.2.3/app/controllers/foo_controller.rb +36 -0
- data/test/rails/app-1.2.3/app/helpers/application_helper.rb +4 -0
- data/test/rails/app-1.2.3/config/boot.rb +11 -0
- data/test/rails/app-1.2.3/config/database.yml +12 -0
- data/test/rails/app-1.2.3/config/environment.rb +13 -0
- data/test/rails/app-1.2.3/config/environments/development.rb +9 -0
- data/test/rails/app-1.2.3/config/environments/production.rb +5 -0
- data/test/rails/app-1.2.3/config/routes.rb +6 -0
- data/test/rails/app-1.2.3/db/.gitignore +0 -0
- data/test/rails/app-1.2.3/public/404.html +1 -0
- data/test/rails/app-1.2.3/public/500.html +1 -0
- data/test/rails/app-2.0.2/.gitignore +2 -0
- data/test/rails/app-2.0.2/Rakefile +7 -0
- data/test/rails/app-2.0.2/app/controllers/application.rb +4 -0
- data/test/rails/app-2.0.2/app/controllers/foo_controller.rb +36 -0
- data/test/rails/app-2.0.2/app/helpers/application_helper.rb +4 -0
- data/test/rails/app-2.0.2/config/boot.rb +11 -0
- data/test/rails/app-2.0.2/config/database.yml +12 -0
- data/test/rails/app-2.0.2/config/environment.rb +17 -0
- data/test/rails/app-2.0.2/config/environments/development.rb +8 -0
- data/test/rails/app-2.0.2/config/environments/production.rb +5 -0
- data/test/rails/app-2.0.2/config/routes.rb +6 -0
- data/test/rails/app-2.0.2/db/.gitignore +0 -0
- data/test/rails/app-2.0.2/public/404.html +1 -0
- data/test/rails/app-2.0.2/public/500.html +1 -0
- data/test/rails/app-2.1.2/.gitignore +2 -0
- data/test/rails/app-2.1.2/Rakefile +7 -0
- data/test/rails/app-2.1.2/app/controllers/application.rb +4 -0
- data/test/rails/app-2.1.2/app/controllers/foo_controller.rb +36 -0
- data/test/rails/app-2.1.2/app/helpers/application_helper.rb +4 -0
- data/test/rails/app-2.1.2/config/boot.rb +111 -0
- data/test/rails/app-2.1.2/config/database.yml +12 -0
- data/test/rails/app-2.1.2/config/environment.rb +17 -0
- data/test/rails/app-2.1.2/config/environments/development.rb +7 -0
- data/test/rails/app-2.1.2/config/environments/production.rb +5 -0
- data/test/rails/app-2.1.2/config/routes.rb +6 -0
- data/test/rails/app-2.1.2/db/.gitignore +0 -0
- data/test/rails/app-2.1.2/public/404.html +1 -0
- data/test/rails/app-2.1.2/public/500.html +1 -0
- data/test/rails/app-2.2.2/.gitignore +2 -0
- data/test/rails/app-2.2.2/Rakefile +7 -0
- data/test/rails/app-2.2.2/app/controllers/application.rb +4 -0
- data/test/rails/app-2.2.2/app/controllers/foo_controller.rb +36 -0
- data/test/rails/app-2.2.2/app/helpers/application_helper.rb +4 -0
- data/test/rails/app-2.2.2/config/boot.rb +111 -0
- data/test/rails/app-2.2.2/config/database.yml +12 -0
- data/test/rails/app-2.2.2/config/environment.rb +17 -0
- data/test/rails/app-2.2.2/config/environments/development.rb +7 -0
- data/test/rails/app-2.2.2/config/environments/production.rb +5 -0
- data/test/rails/app-2.2.2/config/routes.rb +6 -0
- data/test/rails/app-2.2.2/db/.gitignore +0 -0
- data/test/rails/app-2.2.2/public/404.html +1 -0
- data/test/rails/app-2.2.2/public/500.html +1 -0
- data/test/rails/test_rails.rb +287 -0
- data/test/test_helper.rb +300 -0
- data/test/unit/test_configurator.rb +158 -0
- data/test/unit/test_droplet.rb +28 -0
- data/test/unit/test_http_parser.rb +860 -0
- data/test/unit/test_http_parser_ng.rb +716 -0
- data/test/unit/test_http_parser_xftrust.rb +38 -0
- data/test/unit/test_request.rb +197 -0
- data/test/unit/test_response.rb +99 -0
- data/test/unit/test_server.rb +289 -0
- data/test/unit/test_signals.rb +207 -0
- data/test/unit/test_sni_hostnames.rb +47 -0
- data/test/unit/test_socket_helper.rb +192 -0
- data/test/unit/test_stream_input.rb +204 -0
- data/test/unit/test_tee_input.rb +296 -0
- data/test/unit/test_upload.rb +306 -0
- data/test/unit/test_util.rb +100 -0
- data/unicorn-lb-patch.gemspec +27 -0
- metadata +561 -0
@@ -0,0 +1,48 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
. ./test-lib.sh
|
3
|
+
t_plan 7 "simple HTTPS connection tests"
|
4
|
+
|
5
|
+
t_begin "setup and start" && {
|
6
|
+
rtmpfiles curl_err
|
7
|
+
unicorn_setup
|
8
|
+
cat > $unicorn_config <<EOF
|
9
|
+
ssl do
|
10
|
+
listen "$listen"
|
11
|
+
ssl_certificate "server.crt"
|
12
|
+
ssl_certificate_key "server.key"
|
13
|
+
end
|
14
|
+
pid "$pid"
|
15
|
+
stderr_path "$r_err"
|
16
|
+
stdout_path "$r_out"
|
17
|
+
EOF
|
18
|
+
unicorn -D -c $unicorn_config env.ru
|
19
|
+
unicorn_wait_start
|
20
|
+
}
|
21
|
+
|
22
|
+
t_begin "single request" && {
|
23
|
+
curl -sSfv --cacert ca.crt https://$listen/
|
24
|
+
}
|
25
|
+
|
26
|
+
t_begin "check stderr has no errors" && {
|
27
|
+
check_stderr
|
28
|
+
}
|
29
|
+
|
30
|
+
t_begin "multiple requests" && {
|
31
|
+
curl -sSfv --no-keepalive --cacert ca.crt \
|
32
|
+
https://$listen/ https://$listen/ 2>> $curl_err >> $tmp
|
33
|
+
dbgcat curl_err
|
34
|
+
}
|
35
|
+
|
36
|
+
t_begin "check stderr has no errors" && {
|
37
|
+
check_stderr
|
38
|
+
}
|
39
|
+
|
40
|
+
t_begin "killing succeeds" && {
|
41
|
+
kill $unicorn_pid
|
42
|
+
}
|
43
|
+
|
44
|
+
t_begin "check stderr has no errors" && {
|
45
|
+
check_stderr
|
46
|
+
}
|
47
|
+
|
48
|
+
t_done
|
@@ -0,0 +1,48 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
. ./test-lib.sh
|
3
|
+
t_plan 9 "PrereadInput middleware tests"
|
4
|
+
|
5
|
+
t_begin "setup and start" && {
|
6
|
+
random_blob_sha1=$(rsha1 < random_blob)
|
7
|
+
unicorn_setup
|
8
|
+
unicorn -D -c $unicorn_config preread_input.ru
|
9
|
+
unicorn_wait_start
|
10
|
+
}
|
11
|
+
|
12
|
+
t_begin "single identity request" && {
|
13
|
+
curl -sSf -T random_blob http://$listen/ > $tmp
|
14
|
+
}
|
15
|
+
|
16
|
+
t_begin "sha1 matches" && {
|
17
|
+
test x"$(cat $tmp)" = x"$random_blob_sha1"
|
18
|
+
}
|
19
|
+
|
20
|
+
t_begin "single chunked request" && {
|
21
|
+
curl -sSf -T- < random_blob http://$listen/ > $tmp
|
22
|
+
}
|
23
|
+
|
24
|
+
t_begin "sha1 matches" && {
|
25
|
+
test x"$(cat $tmp)" = x"$random_blob_sha1"
|
26
|
+
}
|
27
|
+
|
28
|
+
t_begin "app only dispatched twice" && {
|
29
|
+
test 2 -eq "$(grep 'app dispatch:' < $r_err | wc -l )"
|
30
|
+
}
|
31
|
+
|
32
|
+
t_begin "aborted chunked request" && {
|
33
|
+
rm -f $tmp
|
34
|
+
curl -sSf -T- < $fifo http://$listen/ > $tmp &
|
35
|
+
curl_pid=$!
|
36
|
+
kill -9 $curl_pid
|
37
|
+
wait
|
38
|
+
}
|
39
|
+
|
40
|
+
t_begin "app only dispatched twice" && {
|
41
|
+
test 2 -eq "$(grep 'app dispatch:' < $r_err | wc -l )"
|
42
|
+
}
|
43
|
+
|
44
|
+
t_begin "killing succeeds" && {
|
45
|
+
kill -QUIT $unicorn_pid
|
46
|
+
}
|
47
|
+
|
48
|
+
t_done
|
data/t/t9001-oob_gc.sh
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
. ./test-lib.sh
|
3
|
+
t_plan 9 "OobGC test"
|
4
|
+
|
5
|
+
t_begin "setup and start" && {
|
6
|
+
unicorn_setup
|
7
|
+
unicorn -D -c $unicorn_config oob_gc.ru
|
8
|
+
unicorn_wait_start
|
9
|
+
}
|
10
|
+
|
11
|
+
t_begin "test default interval (4 requests)" && {
|
12
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
13
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
14
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
15
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
16
|
+
}
|
17
|
+
|
18
|
+
t_begin "GC starting-request returns immediately" && {
|
19
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
20
|
+
}
|
21
|
+
|
22
|
+
t_begin "GC is started after 5 requests" && {
|
23
|
+
test xtrue = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
24
|
+
}
|
25
|
+
|
26
|
+
t_begin "reset GC" && {
|
27
|
+
test xfalse = x$(curl -vsSf -X POST http://$listen/gc_reset 2>> $tmp)
|
28
|
+
}
|
29
|
+
|
30
|
+
t_begin "test default interval again (3 requests)" && {
|
31
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
32
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
33
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
34
|
+
}
|
35
|
+
|
36
|
+
t_begin "GC is started after 5 requests" && {
|
37
|
+
test xtrue = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
38
|
+
}
|
39
|
+
|
40
|
+
t_begin "killing succeeds" && {
|
41
|
+
kill -QUIT $unicorn_pid
|
42
|
+
}
|
43
|
+
|
44
|
+
t_begin "check_stderr" && check_stderr
|
45
|
+
dbgcat r_err
|
46
|
+
|
47
|
+
t_done
|
@@ -0,0 +1,75 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
. ./test-lib.sh
|
3
|
+
t_plan 12 "OobGC test with limited path"
|
4
|
+
|
5
|
+
t_begin "setup and start" && {
|
6
|
+
unicorn_setup
|
7
|
+
unicorn -D -c $unicorn_config oob_gc_path.ru
|
8
|
+
unicorn_wait_start
|
9
|
+
}
|
10
|
+
|
11
|
+
t_begin "test default is noop" && {
|
12
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
13
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
14
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
15
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
16
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
17
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
18
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
19
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
20
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
21
|
+
}
|
22
|
+
|
23
|
+
t_begin "4 bad requests to bump counter" && {
|
24
|
+
test xfalse = x$(curl -vsSf http://$listen/BAD 2>> $tmp)
|
25
|
+
test xfalse = x$(curl -vsSf http://$listen/BAD 2>> $tmp)
|
26
|
+
test xfalse = x$(curl -vsSf http://$listen/BAD 2>> $tmp)
|
27
|
+
test xfalse = x$(curl -vsSf http://$listen/BAD 2>> $tmp)
|
28
|
+
}
|
29
|
+
|
30
|
+
t_begin "GC-starting request returns immediately" && {
|
31
|
+
test xfalse = x$(curl -vsSf http://$listen/BAD 2>> $tmp)
|
32
|
+
}
|
33
|
+
|
34
|
+
t_begin "GC was started after 5 requests" && {
|
35
|
+
test xtrue = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
36
|
+
}
|
37
|
+
|
38
|
+
t_begin "reset GC" && {
|
39
|
+
test xfalse = x$(curl -vsSf -X POST http://$listen/gc_reset 2>> $tmp)
|
40
|
+
}
|
41
|
+
|
42
|
+
t_begin "test default is noop" && {
|
43
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
44
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
45
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
46
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
47
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
48
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
49
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
50
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
51
|
+
test xfalse = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
52
|
+
}
|
53
|
+
|
54
|
+
t_begin "4 bad requests to bump counter" && {
|
55
|
+
test xfalse = x$(curl -vsSf http://$listen/BAD 2>> $tmp)
|
56
|
+
test xfalse = x$(curl -vsSf http://$listen/BAD 2>> $tmp)
|
57
|
+
test xfalse = x$(curl -vsSf http://$listen/BAD 2>> $tmp)
|
58
|
+
test xfalse = x$(curl -vsSf http://$listen/BAD 2>> $tmp)
|
59
|
+
}
|
60
|
+
|
61
|
+
t_begin "GC-starting request returns immediately" && {
|
62
|
+
test xfalse = x$(curl -vsSf http://$listen/BAD 2>> $tmp)
|
63
|
+
}
|
64
|
+
|
65
|
+
t_begin "GC was started after 5 requests" && {
|
66
|
+
test xtrue = x$(curl -vsSf http://$listen/ 2>> $tmp)
|
67
|
+
}
|
68
|
+
|
69
|
+
t_begin "killing succeeds" && {
|
70
|
+
kill -QUIT $unicorn_pid
|
71
|
+
}
|
72
|
+
|
73
|
+
t_begin "check_stderr" && check_stderr
|
74
|
+
|
75
|
+
t_done
|
data/t/test-lib.sh
ADDED
@@ -0,0 +1,113 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
# Copyright (c) 2009 Rainbows! hackers
|
3
|
+
# Copyright (c) 2010 Unicorn hackers
|
4
|
+
. ./my-tap-lib.sh
|
5
|
+
|
6
|
+
set +u
|
7
|
+
|
8
|
+
# sometimes we rely on http_proxy to avoid wasting bandwidth with Isolate
|
9
|
+
# and multiple Ruby versions
|
10
|
+
NO_PROXY=${UNICORN_TEST_ADDR-127.0.0.1}
|
11
|
+
export NO_PROXY
|
12
|
+
|
13
|
+
set -e
|
14
|
+
RUBY="${RUBY-ruby}"
|
15
|
+
RUBY_VERSION=${RUBY_VERSION-$($RUBY -e 'puts RUBY_VERSION')}
|
16
|
+
RUBY_ENGINE=${RUBY_ENGINE-$($RUBY -e 'puts((RUBY_ENGINE rescue "ruby"))')}
|
17
|
+
t_pfx=$PWD/trash/$T-$RUBY_ENGINE-$RUBY_VERSION
|
18
|
+
set -u
|
19
|
+
|
20
|
+
PATH=$PWD/bin:$PATH
|
21
|
+
export PATH
|
22
|
+
|
23
|
+
test -x $PWD/bin/unused_listen || die "must be run in 't' directory"
|
24
|
+
|
25
|
+
wait_for_pid () {
|
26
|
+
path="$1"
|
27
|
+
nr=30
|
28
|
+
while ! test -s "$path" && test $nr -gt 0
|
29
|
+
do
|
30
|
+
nr=$(($nr - 1))
|
31
|
+
sleep 1
|
32
|
+
done
|
33
|
+
}
|
34
|
+
|
35
|
+
# given a list of variable names, create temporary files and assign
|
36
|
+
# the pathnames to those variables
|
37
|
+
rtmpfiles () {
|
38
|
+
for id in "$@"
|
39
|
+
do
|
40
|
+
name=$id
|
41
|
+
|
42
|
+
case $name in
|
43
|
+
*fifo)
|
44
|
+
_tmp=$t_pfx.$id
|
45
|
+
eval "$id=$_tmp"
|
46
|
+
rm -f $_tmp
|
47
|
+
mkfifo $_tmp
|
48
|
+
T_RM_LIST="$T_RM_LIST $_tmp"
|
49
|
+
;;
|
50
|
+
*socket)
|
51
|
+
_tmp="$(mktemp -t $id.$$.XXXXXXXX)"
|
52
|
+
if test $(printf "$_tmp" |wc -c) -gt 108
|
53
|
+
then
|
54
|
+
echo >&2 "$_tmp too long, tests may fail"
|
55
|
+
echo >&2 "Try to set TMPDIR to a shorter path"
|
56
|
+
fi
|
57
|
+
eval "$id=$_tmp"
|
58
|
+
rm -f $_tmp
|
59
|
+
T_RM_LIST="$T_RM_LIST $_tmp"
|
60
|
+
;;
|
61
|
+
*)
|
62
|
+
_tmp=$t_pfx.$id
|
63
|
+
eval "$id=$_tmp"
|
64
|
+
> $_tmp
|
65
|
+
T_OK_RM_LIST="$T_OK_RM_LIST $_tmp"
|
66
|
+
;;
|
67
|
+
esac
|
68
|
+
done
|
69
|
+
}
|
70
|
+
|
71
|
+
dbgcat () {
|
72
|
+
id=$1
|
73
|
+
eval '_file=$'$id
|
74
|
+
echo "==> $id <=="
|
75
|
+
sed -e "s/^/$id:/" < $_file
|
76
|
+
}
|
77
|
+
|
78
|
+
check_stderr () {
|
79
|
+
set +u
|
80
|
+
_r_err=${1-${r_err}}
|
81
|
+
set -u
|
82
|
+
if grep -v $T $_r_err | grep -i Error
|
83
|
+
then
|
84
|
+
die "Errors found in $_r_err"
|
85
|
+
elif grep SIGKILL $_r_err
|
86
|
+
then
|
87
|
+
die "SIGKILL found in $_r_err"
|
88
|
+
fi
|
89
|
+
}
|
90
|
+
|
91
|
+
# unicorn_setup
|
92
|
+
unicorn_setup () {
|
93
|
+
eval $(unused_listen)
|
94
|
+
port=$(expr $listen : '[^:]*:\([0-9]\+\)')
|
95
|
+
host=$(expr $listen : '\([^:]*\):[0-9]\+')
|
96
|
+
|
97
|
+
rtmpfiles unicorn_config pid r_err r_out fifo tmp ok
|
98
|
+
cat > $unicorn_config <<EOF
|
99
|
+
listen "$listen"
|
100
|
+
pid "$pid"
|
101
|
+
stderr_path "$r_err"
|
102
|
+
stdout_path "$r_out"
|
103
|
+
EOF
|
104
|
+
}
|
105
|
+
|
106
|
+
unicorn_wait_start () {
|
107
|
+
# no need to play tricks with FIFOs since we got "ready_pipe" now
|
108
|
+
unicorn_pid=$(cat $pid)
|
109
|
+
}
|
110
|
+
|
111
|
+
rsha1 () {
|
112
|
+
sha1sum.rb
|
113
|
+
}
|
data/t/test-rails3.sh
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
. ./test-lib.sh
|
2
|
+
RAILS_VERSION=${RAILS_VERSION-3.0.0}
|
3
|
+
case $RUBY_VERSION in
|
4
|
+
1.8.7|1.9.2) ;;
|
5
|
+
*)
|
6
|
+
t_info "RUBY_VERSION=$RUBY_VERSION unsupported for Rails 3"
|
7
|
+
exit 0
|
8
|
+
;;
|
9
|
+
esac
|
10
|
+
|
11
|
+
arch_gems=../tmp/isolate/ruby-$RUBY_VERSION/gems
|
12
|
+
rails_gems=../tmp/isolate/rails-$RAILS_VERSION/gems
|
13
|
+
rails_bin="$rails_gems/rails-$RAILS_VERSION/bin/rails"
|
14
|
+
if ! test -d "$arch_gems" || ! test -d "$rails_gems" || ! test -x "$rails_bin"
|
15
|
+
then
|
16
|
+
( cd ../ && ./script/isolate_for_tests )
|
17
|
+
fi
|
18
|
+
|
19
|
+
for i in $arch_gems/*-* $rails_gems/*-*
|
20
|
+
do
|
21
|
+
if test -d $i/lib
|
22
|
+
then
|
23
|
+
RUBYLIB=$(cd $i/lib && pwd):$RUBYLIB
|
24
|
+
fi
|
25
|
+
done
|
26
|
+
|
27
|
+
export RUBYLIB
|
data/t/write-on-close.ru
ADDED
data/test/aggregate.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
#!/usr/bin/ruby -n
|
2
|
+
# -*- encoding: binary -*-
|
3
|
+
|
4
|
+
BEGIN { $tests = $assertions = $failures = $errors = 0 }
|
5
|
+
|
6
|
+
$_ =~ /(\d+) tests, (\d+) assertions, (\d+) failures, (\d+) errors/ or next
|
7
|
+
$tests += $1.to_i
|
8
|
+
$assertions += $2.to_i
|
9
|
+
$failures += $3.to_i
|
10
|
+
$errors += $4.to_i
|
11
|
+
|
12
|
+
END {
|
13
|
+
printf("\n%d tests, %d assertions, %d failures, %d errors\n",
|
14
|
+
$tests, $assertions, $failures, $errors)
|
15
|
+
}
|
@@ -0,0 +1,50 @@
|
|
1
|
+
= Performance
|
2
|
+
|
3
|
+
Unicorn is pretty fast, and we want it to get faster. Unicorn strives
|
4
|
+
to get HTTP requests to your application and write HTTP responses back
|
5
|
+
as quickly as possible. Unicorn does not do any background processing
|
6
|
+
while your app runs, so your app will get all the CPU time provided to
|
7
|
+
it by your OS kernel.
|
8
|
+
|
9
|
+
A gentle reminder: Unicorn is NOT for serving clients over slow network
|
10
|
+
connections. Use nginx (or something similar) to complement Unicorn if
|
11
|
+
you have slow clients.
|
12
|
+
|
13
|
+
== dd.ru
|
14
|
+
|
15
|
+
This is a pure I/O benchmark. In the context of Unicorn, this is the
|
16
|
+
only one that matters. It is a standard rackup-compatible .ru file and
|
17
|
+
may be used with other Rack-compatible servers.
|
18
|
+
|
19
|
+
unicorn -E none dd.ru
|
20
|
+
|
21
|
+
You can change the size and number of chunks in the response with
|
22
|
+
the "bs" and "count" environment variables. The following command
|
23
|
+
will cause dd.ru to return 4 chunks of 16384 bytes each, leading to
|
24
|
+
65536 byte response:
|
25
|
+
|
26
|
+
bs=16384 count=4 unicorn -E none dd.ru
|
27
|
+
|
28
|
+
Or if you want to add logging (small performance impact):
|
29
|
+
|
30
|
+
unicorn -E deployment dd.ru
|
31
|
+
|
32
|
+
Eric runs then runs clients on a LAN it in several different ways:
|
33
|
+
|
34
|
+
client@host1 -> unicorn@host1(tcp)
|
35
|
+
client@host2 -> unicorn@host1(tcp)
|
36
|
+
client@host3 -> nginx@host1 -> unicorn@host1(tcp)
|
37
|
+
client@host3 -> nginx@host1 -> unicorn@host1(unix)
|
38
|
+
client@host3 -> nginx@host2 -> unicorn@host1(tcp)
|
39
|
+
|
40
|
+
The benchmark client is usually httperf.
|
41
|
+
|
42
|
+
Another gentle reminder: performance with slow networks/clients
|
43
|
+
is NOT our problem. That is the job of nginx (or similar).
|
44
|
+
|
45
|
+
== Contributors
|
46
|
+
|
47
|
+
This directory is maintained independently in the "benchmark" branch
|
48
|
+
based against v0.1.0. Only changes to this directory (test/benchmarks)
|
49
|
+
are committed to this branch although the master branch may merge this
|
50
|
+
branch occassionaly.
|