aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/action_pack_assertions_test.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2006-09-29 07:34:02 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2006-09-29 07:34:02 +0000
commitd7674637f9ac7c9764a4fe09dbc15ee239ce5a77 (patch)
treea1e89ae8634b906244a3a37680c22e7dec38ea61 /actionpack/test/controller/action_pack_assertions_test.rb
parentc0eccc9aef21c3eac9d89d3af93b82ce906b04dd (diff)
downloadrails-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/controller/action_pack_assertions_test.rb')
-rw-r--r--actionpack/test/controller/action_pack_assertions_test.rb136
1 files changed, 68 insertions, 68 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']