rails/actionpack/test/controller/api/data_streaming_test.rb
Eugene Kenny 96a1a2a37c Use binread instead of setting file mode manually
Followup to b31022052a54ef76f347973e23519ba86ffc94ff.
2020-05-13 00:05:32 +01:00

29 lines
580 B
Ruby

# frozen_string_literal: true
require "abstract_unit"
module TestApiFileUtils
def file_path() __FILE__ end
def file_data() @data ||= File.binread(file_path) end
end
class DataStreamingApiController < ActionController::API
include TestApiFileUtils
def one; end
def two
send_data(file_data, {})
end
end
class DataStreamingApiTest < ActionController::TestCase
include TestApiFileUtils
tests DataStreamingApiController
def test_data
response = process("two")
assert_kind_of String, response.body
assert_equal file_data, response.body
end
end