2017-07-24 16:20:53 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-06 12:54:50 -04:00
|
|
|
require "abstract_unit"
|
|
|
|
require "controller/fake_models"
|
2009-05-13 20:00:36 -04:00
|
|
|
|
2009-09-19 14:04:12 -04:00
|
|
|
class RenderJSTest < ActionController::TestCase
|
|
|
|
class TestController < ActionController::Base
|
|
|
|
protect_from_forgery
|
2009-05-13 20:00:36 -04:00
|
|
|
|
2009-09-19 14:04:12 -04:00
|
|
|
def self.controller_path
|
2016-08-06 12:54:50 -04:00
|
|
|
"test"
|
2009-09-19 14:04:12 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def render_vanilla_js_hello
|
2016-08-06 13:35:13 -04:00
|
|
|
render js: "alert('hello')"
|
2009-09-19 14:04:12 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def show_partial
|
2016-08-06 13:35:13 -04:00
|
|
|
render partial: "partial"
|
2009-09-19 14:04:12 -04:00
|
|
|
end
|
2009-05-13 20:00:36 -04:00
|
|
|
end
|
|
|
|
|
2009-05-22 20:07:40 -04:00
|
|
|
tests TestController
|
|
|
|
|
2009-05-13 20:00:36 -04:00
|
|
|
def test_render_vanilla_js
|
2015-02-01 08:07:42 -05:00
|
|
|
get :render_vanilla_js_hello, xhr: true
|
2009-05-13 20:00:36 -04:00
|
|
|
assert_equal "alert('hello')", @response.body
|
2019-04-17 02:37:16 -04:00
|
|
|
assert_equal "text/javascript", @response.media_type
|
2009-05-13 20:00:36 -04:00
|
|
|
end
|
2009-09-19 14:04:12 -04:00
|
|
|
|
2009-05-13 20:00:36 -04:00
|
|
|
def test_should_render_js_partial
|
2016-08-06 12:54:50 -04:00
|
|
|
get :show_partial, format: "js", xhr: true
|
|
|
|
assert_equal "partial js", @response.body
|
2009-08-15 01:32:40 -04:00
|
|
|
end
|
2009-09-19 14:04:12 -04:00
|
|
|
end
|