2016-08-06 12:54:50 -04:00
|
|
|
require "abstract_unit"
|
|
|
|
require "active_support/core_ext/hash/conversions"
|
2015-04-15 14:30:27 -04:00
|
|
|
|
2015-04-15 14:50:19 -04:00
|
|
|
class RenderersApiController < ActionController::API
|
|
|
|
class Model
|
|
|
|
def to_json(options = {})
|
2016-08-06 12:54:50 -04:00
|
|
|
{ a: "b" }.to_json(options)
|
2015-04-15 14:50:19 -04:00
|
|
|
end
|
2015-04-15 14:30:27 -04:00
|
|
|
|
2015-04-15 14:50:19 -04:00
|
|
|
def to_xml(options = {})
|
2016-08-06 12:54:50 -04:00
|
|
|
{ a: "b" }.to_xml(options)
|
2015-04-15 14:50:19 -04:00
|
|
|
end
|
2015-04-15 14:30:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def one
|
2015-04-22 15:57:35 -04:00
|
|
|
render json: Model.new
|
2015-04-15 14:30:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def two
|
2015-04-22 15:57:35 -04:00
|
|
|
render xml: Model.new
|
2015-04-15 14:30:27 -04:00
|
|
|
end
|
2016-01-20 19:16:23 -05:00
|
|
|
|
|
|
|
def plain
|
2016-08-06 12:54:50 -04:00
|
|
|
render plain: "Hi from plain", status: 500
|
2016-01-20 19:16:23 -05:00
|
|
|
end
|
2015-04-15 14:30:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
class RenderersApiTest < ActionController::TestCase
|
|
|
|
tests RenderersApiController
|
|
|
|
|
|
|
|
def test_render_json
|
|
|
|
get :one
|
|
|
|
assert_response :success
|
2016-08-06 12:54:50 -04:00
|
|
|
assert_equal({ a: "b" }.to_json, @response.body)
|
2015-04-15 14:30:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_render_xml
|
|
|
|
get :two
|
|
|
|
assert_response :success
|
2016-08-06 12:54:50 -04:00
|
|
|
assert_equal({ a: "b" }.to_xml, @response.body)
|
2015-04-15 14:30:27 -04:00
|
|
|
end
|
2016-01-20 19:16:23 -05:00
|
|
|
|
|
|
|
def test_render_plain
|
|
|
|
get :plain
|
|
|
|
assert_response :internal_server_error
|
2016-08-06 12:54:50 -04:00
|
|
|
assert_equal("Hi from plain", @response.body)
|
2016-01-20 19:16:23 -05:00
|
|
|
end
|
2015-04-15 14:30:27 -04:00
|
|
|
end
|