aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/http/data_streaming_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/controller/http/data_streaming_test.rb')
-rw-r--r--actionpack/test/controller/http/data_streaming_test.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/actionpack/test/controller/http/data_streaming_test.rb b/actionpack/test/controller/http/data_streaming_test.rb
new file mode 100644
index 0000000000..67457b25b0
--- /dev/null
+++ b/actionpack/test/controller/http/data_streaming_test.rb
@@ -0,0 +1,27 @@
+require 'abstract_unit'
+
+module TestHTTPFileUtils
+ def file_name() File.basename(__FILE__) end
+ def file_path() File.expand_path(__FILE__) end
+ def file_data() @data ||= File.open(file_path, 'rb') { |f| f.read } end
+end
+
+class DataStreamingHTTPController < ActionController::HTTP
+ include TestHTTPFileUtils
+
+ def one; end
+ def two
+ send_data(file_data, {})
+ end
+end
+
+class DataStreamingHTTPTest < ActionController::TestCase
+ include TestHTTPFileUtils
+ tests DataStreamingHTTPController
+
+ def test_data
+ response = process('two')
+ assert_kind_of String, response.body
+ assert_equal file_data, response.body
+ end
+end