diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2012-07-29 17:26:07 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2012-07-29 21:43:05 -0700 |
commit | af0a9f9eefaee3a8120cfd8d05cbc431af376da3 (patch) | |
tree | 3eca858f42bf55c2e1d660434f3e782c524debab /actionpack/test/dispatch | |
parent | d4433a35215c5e32d5cb91885c4084f849988887 (diff) | |
download | rails-af0a9f9eefaee3a8120cfd8d05cbc431af376da3.tar.gz rails-af0a9f9eefaee3a8120cfd8d05cbc431af376da3.tar.bz2 rails-af0a9f9eefaee3a8120cfd8d05cbc431af376da3.zip |
added live responses which can be written and read in separate threads
Diffstat (limited to 'actionpack/test/dispatch')
-rw-r--r-- | actionpack/test/dispatch/live_response_test.rb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/actionpack/test/dispatch/live_response_test.rb b/actionpack/test/dispatch/live_response_test.rb new file mode 100644 index 0000000000..0e8dcc6a16 --- /dev/null +++ b/actionpack/test/dispatch/live_response_test.rb @@ -0,0 +1,34 @@ +require 'abstract_unit' +require 'active_support/concurrency/latch' + +module ActionController + module Live + class ResponseTest < ActiveSupport::TestCase + def setup + @response = Live::Response.new + end + + def test_parallel + latch = ActiveSupport::Concurrency::Latch.new + + t = Thread.new { + @response.stream.write 'foo' + latch.await + @response.stream.close + } + + @response.each do |part| + assert_equal 'foo', part + latch.release + end + assert t.join + end + + def test_setting_body_populates_buffer + @response.body = 'omg' + @response.close + assert_equal ['omg'], @response.body_parts + end + end + end +end |