about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-01-11 16:36:08 -0800
committerEric Wong <normalperson@yhbt.net>2011-01-11 16:36:08 -0800
commit9caff8ecc7912306366cebb9c57b65ab12fde5ad (patch)
treeacba78e50083e9806c19197ea004f76443f7914d /t
parent89f948aeaef34114ec61291ff8ffbebcf85a748e (diff)
downloadrainbows-9caff8ecc7912306366cebb9c57b65ab12fde5ad.tar.gz
We need to ensure this esoteric feature keeps working for some
people.
Diffstat (limited to 't')
-rwxr-xr-xt/t0025-write-on-close.sh23
-rw-r--r--t/write-on-close.ru11
2 files changed, 34 insertions, 0 deletions
diff --git a/t/t0025-write-on-close.sh b/t/t0025-write-on-close.sh
new file mode 100755
index 0000000..84fc2f3
--- /dev/null
+++ b/t/t0025-write-on-close.sh
@@ -0,0 +1,23 @@
+#!/bin/sh
+. ./test-lib.sh
+t_plan 4 "write-on-close tests for funky response-bodies"
+
+t_begin "setup and start" && {
+        rainbows_setup
+        rainbows -D -c $unicorn_config write-on-close.ru
+        rainbows_wait_start
+}
+
+t_begin "write-on-close response body succeeds" && {
+        test xGoodbye = x"$(curl -sSf --http1.0 http://$listen/)"
+}
+
+t_begin "killing succeeds" && {
+        kill $rainbows_pid
+}
+
+t_begin "check stderr" && {
+        check_stderr
+}
+
+t_done
diff --git a/t/write-on-close.ru b/t/write-on-close.ru
new file mode 100644
index 0000000..54a2f2e
--- /dev/null
+++ b/t/write-on-close.ru
@@ -0,0 +1,11 @@
+class WriteOnClose
+  def each(&block)
+    @callback = block
+  end
+
+  def close
+    @callback.call "7\r\nGoodbye\r\n0\r\n\r\n"
+  end
+end
+use Rack::ContentType, "text/plain"
+run(lambda { |_| [ 200, [%w(Transfer-Encoding chunked)], WriteOnClose.new ] })