diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2006-09-29 07:34:02 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2006-09-29 07:34:02 +0000 |
commit | d7674637f9ac7c9764a4fe09dbc15ee239ce5a77 (patch) | |
tree | a1e89ae8634b906244a3a37680c22e7dec38ea61 /actionpack/test | |
parent | c0eccc9aef21c3eac9d89d3af93b82ce906b04dd (diff) | |
download | rails-d7674637f9ac7c9764a4fe09dbc15ee239ce5a77.tar.gz rails-d7674637f9ac7c9764a4fe09dbc15ee239ce5a77.tar.bz2 rails-d7674637f9ac7c9764a4fe09dbc15ee239ce5a77.zip |
Deprecation: @request will be removed after 1.2. Use the request method instead.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5201 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test')
6 files changed, 84 insertions, 93 deletions
diff --git a/actionpack/test/controller/action_pack_assertions_test.rb b/actionpack/test/controller/action_pack_assertions_test.rb index 6e1ccba50e..1b4e0b5aca 100644 --- a/actionpack/test/controller/action_pack_assertions_test.rb +++ b/actionpack/test/controller/action_pack_assertions_test.rb @@ -11,7 +11,7 @@ class ActionPackAssertionsController < ActionController::Base # a standard template def hello_xml_world() render "test/hello_xml_world"; end - + # a redirect to an internal location def redirect_internal() redirect_to "/nothing"; end @@ -22,10 +22,10 @@ class ActionPackAssertionsController < ActionController::Base def redirect_to_path() redirect_to '/some/path' end def redirect_to_named_route() redirect_to route_one_url end - + # a redirect to an external location def redirect_external() redirect_to_url "http://www.rubyonrails.org"; end - + # a 404 def response404() render_text "", "404 AWOL"; end @@ -70,52 +70,52 @@ class ActionPackAssertionsController < ActionController::Base session['xmas'] = 'turkey' render_text "ho ho ho" end - + # raises exception on get requests def raise_on_get - raise "get" if @request.get? - render_text "request method: #{@request.env['REQUEST_METHOD']}" + raise "get" if request.get? + render_text "request method: #{request.env['REQUEST_METHOD']}" end # raises exception on post requests def raise_on_post - raise "post" if @request.post? - render_text "request method: #{@request.env['REQUEST_METHOD']}" - end - + raise "post" if request.post? + render_text "request method: #{request.env['REQUEST_METHOD']}" + end + def get_valid_record - @record = Class.new do + @record = Class.new do def valid? true end def errors - Class.new do - def full_messages; []; end + Class.new do + def full_messages; []; end end.new - end - + end + end.new - - render :nothing => true + + render :nothing => true end def get_invalid_record - @record = Class.new do - + @record = Class.new do + def valid? false end - + def errors - Class.new do - def full_messages; ['...stuff...']; end + Class.new do + def full_messages; ['...stuff...']; end end.new end - end.new - - render :nothing => true + end.new + + render :nothing => true end # 911 @@ -145,20 +145,20 @@ end # --------------------------------------------------------------------------- -# tell the controller where to find its templates but start from parent -# directory of test_request_response to simulate the behaviour of a +# tell the controller where to find its templates but start from parent +# directory of test_request_response to simulate the behaviour of a # production environment ActionPackAssertionsController.template_root = File.dirname(__FILE__) + "/../fixtures/" # a test case to exercise the new capabilities TestRequest & TestResponse class ActionPackAssertionsControllerTest < Test::Unit::TestCase - # let's get this party started + # let's get this party started def setup @controller = ActionPackAssertionsController.new @request, @response = ActionController::TestRequest.new, ActionController::TestResponse.new end - + # -- assertion-based testing ------------------------------------------------ def test_assert_tag_and_url_for @@ -172,7 +172,7 @@ class ActionPackAssertionsControllerTest < Test::Unit::TestCase assert_deprecated_assertion { assert_session_has 'xmas' } assert_deprecated_assertion { assert_session_has_no 'halloween' } end - + # test the get method, make sure the request really was a get def test_get assert_raise(RuntimeError) { get :raise_on_get } @@ -186,7 +186,7 @@ class ActionPackAssertionsControllerTest < Test::Unit::TestCase post :raise_on_get assert_equal @response.body, 'request method: POST' end - + # the following test fails because the request_method is now cached on the request instance # test the get/post switch within one test action # def test_get_post_switch @@ -212,7 +212,7 @@ class ActionPackAssertionsControllerTest < Test::Unit::TestCase assert_deprecated_assertion { assert_template_has_no 'maple syrup' } assert_deprecated_assertion { assert_template_has_no 'howdy' } end - + # test the redirection assertions def test_assert_redirect process :redirect_internal @@ -234,7 +234,7 @@ class ActionPackAssertionsControllerTest < Test::Unit::TestCase assert_redirect_url_match 'rails.org' end end - + # test the redirection pattern matching on a pattern def test_assert_redirect_url_match_pattern process :redirect_external @@ -312,22 +312,22 @@ class ActionPackAssertionsControllerTest < Test::Unit::TestCase assert_deprecated_assertion { assert_flash_has_no 'hello' } assert_deprecated_assertion { assert_flash_has_no 'qwerty' } end - - # test the assert_rendered_file + + # test the assert_rendered_file def test_assert_rendered_file assert_deprecated(/render/) { process :hello_world } assert_deprecated_assertion { assert_rendered_file 'test/hello_world' } assert_deprecated_assertion { assert_rendered_file 'hello_world' } end - + # test the assert_success assertion def test_assert_success process :nothing assert_deprecated_assertion { assert_success } end - + # -- standard request/response object testing -------------------------------- - + # ensure our session is working properly def test_session_objects process :session_stuffing @@ -335,20 +335,20 @@ class ActionPackAssertionsControllerTest < Test::Unit::TestCase assert_deprecated_assertion { assert_session_equal 'turkey', 'xmas' } assert !@response.has_session_object?('easter') end - + # make sure that the template objects exist def test_template_objects_alive process :assign_this assert !@response.has_template_object?('hi') assert @response.has_template_object?('howdy') end - + # make sure we don't have template objects when we shouldn't def test_template_object_missing process :nothing assert_nil @response.template_objects['howdy'] end - + def test_assigned_equal process :assign_this assert_deprecated_assertion { assert_assigned_equal "ho", :howdy } @@ -376,7 +376,7 @@ class ActionPackAssertionsControllerTest < Test::Unit::TestCase assert !@response.has_flash_with_contents? assert_nil @response.flash['hello'] end - + # examine that the flash objects are what we expect def test_flash_equals process :flash_me @@ -384,8 +384,8 @@ class ActionPackAssertionsControllerTest < Test::Unit::TestCase assert_flash_equal 'my name is inigo montoya...', 'hello' end end - - # check if we were rendered by a file-based template? + + # check if we were rendered by a file-based template? def test_rendered_action process :nothing assert !@response.rendered_with_file? @@ -394,7 +394,7 @@ class ActionPackAssertionsControllerTest < Test::Unit::TestCase assert @response.rendered_with_file? assert 'hello_world', @response.rendered_file end - + # check the redirection location def test_redirection_location process :redirect_internal @@ -406,20 +406,20 @@ class ActionPackAssertionsControllerTest < Test::Unit::TestCase process :nothing assert_nil @response.redirect_url end - - - # check server errors + + + # check server errors def test_server_error_response_code process :response500 assert @response.server_error? - + process :response599 assert @response.server_error? - + process :response404 assert !@response.server_error? end - + # check a 404 response code def test_missing_response_code process :response404 @@ -435,7 +435,7 @@ class ActionPackAssertionsControllerTest < Test::Unit::TestCase assert !@response.redirect_url_match?("phpoffrails") assert !@response.redirect_url_match?(/perloffrails/) end - + # check for a redirection def test_redirection process :redirect_internal @@ -447,19 +447,19 @@ class ActionPackAssertionsControllerTest < Test::Unit::TestCase process :nothing assert !@response.redirect? end - + # check a successful response code def test_successful_response_code process :nothing assert @response.success? - end - + end + # a basic check to make sure we have a TestResponse object def test_has_response process :nothing assert_kind_of ActionController::TestResponse, @response end - + def test_render_based_on_parameters process :render_based_on_parameters, "name" => "David" assert_equal "Mr. David", @response.body @@ -491,7 +491,7 @@ class ActionPackAssertionsControllerTest < Test::Unit::TestCase def test_follow_redirect process :redirect_to_action assert_redirected_to :action => "flash_me" - + follow_redirect assert_equal 1, @request.parameters["id"].to_i @@ -534,23 +534,23 @@ class ActionPackAssertionsControllerTest < Test::Unit::TestCase @controller = Admin::InnerModuleController.new get :redirect_to_absolute_controller assert_redirected_to :controller => 'content' - + get :redirect_to_fellow_controller assert_redirected_to :controller => 'admin/user' - end - + end + def test_assert_valid get :get_valid_record - assert_valid assigns('record') - end - + assert_valid assigns('record') + end + def test_assert_valid_failing get :get_invalid_record - + begin - assert_valid assigns('record') + assert_valid assigns('record') assert false - rescue Test::Unit::AssertionFailedError => e + rescue Test::Unit::AssertionFailedError => e end end @@ -560,7 +560,7 @@ class ActionPackAssertionsControllerTest < Test::Unit::TestCase end end -class ActionPackHeaderTest < Test::Unit::TestCase +class ActionPackHeaderTest < Test::Unit::TestCase def setup @controller = ActionPackAssertionsController.new @request, @response = ActionController::TestRequest.new, ActionController::TestResponse.new @@ -577,7 +577,7 @@ class ActionPackHeaderTest < Test::Unit::TestCase assert_equal('application/pdf; charset=utf-8', @controller.headers['Content-Type']) end - + def test_render_text_with_custom_content_type get :render_text_with_custom_content_type assert_equal 'application/rss+xml; charset=utf-8', @response.headers['Content-Type'] diff --git a/actionpack/test/controller/new_render_test.rb b/actionpack/test/controller/new_render_test.rb index b2b40b7636..729119d9fb 100644 --- a/actionpack/test/controller/new_render_test.rb +++ b/actionpack/test/controller/new_render_test.rb @@ -422,18 +422,26 @@ class NewRenderTest < Test::Unit::TestCase ActionController::Base.protected_variables_cache = nil get :hello_world - assert_nil(assigns["request"]) + assert !assigns.include?('request'), 'request should not be in assigns' ActionController::Base.view_controller_internals = true ActionController::Base.protected_variables_cache = nil get :hello_world - assert_kind_of ActionController::AbstractRequest, assigns["request"] + assert assigns.include?('request'), 'request should be in assigns' + assert_deprecated 'request' do + assert_kind_of ActionController::AbstractRequest, assigns['request'] + end + assert_not_deprecated do + assert_kind_of ActionController::AbstractRequest, @response.template.request + assert_kind_of ActionController::AbstractRequest, assigns['_request'] + end + ensure ActionController::Base.view_controller_internals = view_internals_old_value ActionController::Base.protected_variables_cache = nil end - + def test_render_xml get :render_xml_hello assert_equal "<html>\n <p>Hello David</p>\n<p>This is grand!</p>\n</html>\n", @response.body diff --git a/actionpack/test/controller/render_test.rb b/actionpack/test/controller/render_test.rb index 23f90c6243..6e37a7f142 100644 --- a/actionpack/test/controller/render_test.rb +++ b/actionpack/test/controller/render_test.rb @@ -168,25 +168,6 @@ class RenderTest < Test::Unit::TestCase assert_raises(ActionController::UnknownAction, "No action responded to [determine_layout]") { get :determine_layout } end - def test_access_to_request_in_view - view_internals_old_value = ActionController::Base.view_controller_internals - - ActionController::Base.view_controller_internals = false - ActionController::Base.protected_variables_cache = nil - - get :hello_world - assert_nil assigns["request"] - - ActionController::Base.view_controller_internals = true - ActionController::Base.protected_variables_cache = nil - - get :hello_world - assert_kind_of ActionController::AbstractRequest, assigns["request"] - - ActionController::Base.view_controller_internals = view_internals_old_value - ActionController::Base.protected_variables_cache = nil - end - def test_render_xml assert_deprecated_render { get :render_xml_hello } assert_equal "<html>\n <p>Hello David</p>\n<p>This is grand!</p>\n</html>\n", @response.body diff --git a/actionpack/test/controller/verification_test.rb b/actionpack/test/controller/verification_test.rb index c5ff175d1b..05012cf724 100644 --- a/actionpack/test/controller/verification_test.rb +++ b/actionpack/test/controller/verification_test.rb @@ -59,15 +59,15 @@ class VerificationTest < Test::Unit::TestCase end def guarded_by_method - render :text => "#{@request.method}" + render :text => "#{request.method}" end def guarded_by_xhr - render :text => "#{@request.xhr?}" + render :text => "#{request.xhr?}" end def guarded_by_not_xhr - render :text => "#{@request.xhr?}" + render :text => "#{request.xhr?}" end def unguarded diff --git a/actionpack/test/fixtures/deprecated_instance_variables/_request_ivar.rhtml b/actionpack/test/fixtures/deprecated_instance_variables/_request_ivar.rhtml new file mode 100644 index 0000000000..a1680c23d5 --- /dev/null +++ b/actionpack/test/fixtures/deprecated_instance_variables/_request_ivar.rhtml @@ -0,0 +1 @@ +<%= @request.method %> diff --git a/actionpack/test/fixtures/deprecated_instance_variables/_request_method.rhtml b/actionpack/test/fixtures/deprecated_instance_variables/_request_method.rhtml new file mode 100644 index 0000000000..0c74cf1c1b --- /dev/null +++ b/actionpack/test/fixtures/deprecated_instance_variables/_request_method.rhtml @@ -0,0 +1 @@ +<%= request.method %> |