From a89ccf321224f3248ddd00bb0edb320311604e4e Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Thu, 11 Nov 2010 02:16:50 +0800 Subject: configurator: enable "rewindable_input" directive This allows users to override the current Rack spec and disable the rewindable input requirement. This can allow applications to use less I/O to minimize the performance impact when processing uploads. --- t/t0013-rewindable-input-false.sh | 24 ++++++++++++++++++++++++ t/t0014-rewindable-input-true.sh | 24 ++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100755 t/t0013-rewindable-input-false.sh create mode 100755 t/t0014-rewindable-input-true.sh (limited to 't') diff --git a/t/t0013-rewindable-input-false.sh b/t/t0013-rewindable-input-false.sh new file mode 100755 index 0000000..0e89631 --- /dev/null +++ b/t/t0013-rewindable-input-false.sh @@ -0,0 +1,24 @@ +#!/bin/sh +. ./test-lib.sh +t_plan 4 "rewindable_input toggled to false" + +t_begin "setup and start" && { + unicorn_setup + echo rewindable_input false >> $unicorn_config + unicorn -D -c $unicorn_config t0013.ru + unicorn_wait_start +} + +t_begin "ensure worker is started" && { + test xOK = x$(curl -T t0013.ru -H Expect: -vsSf http://$listen/) +} + +t_begin "killing succeeds" && { + kill $unicorn_pid +} + +t_begin "check stderr" && { + check_stderr +} + +t_done diff --git a/t/t0014-rewindable-input-true.sh b/t/t0014-rewindable-input-true.sh new file mode 100755 index 0000000..dd48bc6 --- /dev/null +++ b/t/t0014-rewindable-input-true.sh @@ -0,0 +1,24 @@ +#!/bin/sh +. ./test-lib.sh +t_plan 4 "rewindable_input toggled to true" + +t_begin "setup and start" && { + unicorn_setup + echo rewindable_input true >> $unicorn_config + unicorn -D -c $unicorn_config t0014.ru + unicorn_wait_start +} + +t_begin "ensure worker is started" && { + test xOK = x$(curl -T t0014.ru -sSf http://$listen/) +} + +t_begin "killing succeeds" && { + kill $unicorn_pid +} + +t_begin "check stderr" && { + check_stderr +} + +t_done -- cgit v1.2.3-24-ge0c7