Skip to content

Commit

Permalink
Use new routing dsl in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
josh committed Dec 8, 2009
1 parent ac71104 commit 2be5e08
Show file tree
Hide file tree
Showing 15 changed files with 56 additions and 67 deletions.
2 changes: 1 addition & 1 deletion actionpack/test/abstract_unit.rb
Expand Up @@ -83,7 +83,7 @@ class ActiveSupport::TestCase
# have been loaded.
setup_once do
ActionController::Routing::Routes.draw do |map|
map.connect ':controller/:action/:id'
match ':controller(/:action(/:id))'
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion actionpack/test/activerecord/active_record_store_test.rb
Expand Up @@ -155,7 +155,7 @@ def test_allows_session_fixation
def with_test_route_set(options = {})
with_routing do |set|
set.draw do |map|
map.connect "/:action", :controller => "active_record_store_test/test"
match ':action', :to => 'active_record_store_test/test'
end
@app = ActiveRecord::SessionStore.new(set, options.reverse_merge(:key => '_session_id'))
yield
Expand Down
22 changes: 11 additions & 11 deletions actionpack/test/controller/action_pack_assertions_test.rb
Expand Up @@ -221,8 +221,8 @@ def test_post
def test_assert_redirect_to_named_route
with_routing do |set|
set.draw do |map|
map.route_one 'route_one', :controller => 'action_pack_assertions', :action => 'nothing'
map.connect ':controller/:action/:id'
match 'route_one', :to => 'action_pack_assertions#nothing', :as => :route_one
match ':controller/:action'
end
set.install_helpers

Expand All @@ -235,9 +235,9 @@ def test_assert_redirect_to_named_route
def test_assert_redirect_to_named_route_failure
with_routing do |set|
set.draw do |map|
map.route_one 'route_one', :controller => 'action_pack_assertions', :action => 'nothing', :id => 'one'
map.route_two 'route_two', :controller => 'action_pack_assertions', :action => 'nothing', :id => 'two'
map.connect ':controller/:action/:id'
match 'route_one', :to => 'action_pack_assertions#nothing', :as => :route_one
match 'route_two', :to => 'action_pack_assertions#nothing', :id => 'two', :as => :route_two
match ':controller/:action'
end
process :redirect_to_named_route
assert_raise(ActiveSupport::TestCase::Assertion) do
Expand All @@ -255,8 +255,8 @@ def test_assert_redirect_to_named_route_failure
def test_assert_redirect_to_nested_named_route
with_routing do |set|
set.draw do |map|
map.admin_inner_module 'admin/inner_module', :controller => 'admin/inner_module', :action => 'index'
map.connect ':controller/:action/:id'
match 'admin/inner_module', :to => 'admin/inner_module#index', :as => :admin_inner_module
match ':controller/:action'
end
@controller = Admin::InnerModuleController.new
process :redirect_to_index
Expand All @@ -268,8 +268,8 @@ def test_assert_redirect_to_nested_named_route
def test_assert_redirected_to_top_level_named_route_from_nested_controller
with_routing do |set|
set.draw do |map|
map.top_level '/action_pack_assertions/:id', :controller => 'action_pack_assertions', :action => 'index'
map.connect ':controller/:action/:id'
match '/action_pack_assertions/:id', :to => 'action_pack_assertions#index', :as => :top_level
match ':controller/:action'
end
@controller = Admin::InnerModuleController.new
process :redirect_to_top_level_named_route
Expand All @@ -282,8 +282,8 @@ def test_assert_redirected_to_top_level_named_route_with_same_controller_name_in
with_routing do |set|
set.draw do |map|
# this controller exists in the admin namespace as well which is the only difference from previous test
map.top_level '/user/:id', :controller => 'user', :action => 'index'
map.connect ':controller/:action/:id'
match '/user/:id', :to => 'user#index', :as => :top_level
match ':controller/:action'
end
@controller = Admin::InnerModuleController.new
process :redirect_to_top_level_named_route
Expand Down
6 changes: 3 additions & 3 deletions actionpack/test/controller/base_test.rb
Expand Up @@ -179,8 +179,8 @@ def setup
def test_default_url_options_are_used_if_set
with_routing do |set|
set.draw do |map|
map.default_url_options 'default_url_options', :controller => 'default_url_options'
map.connect ':controller/:action/:id'
match 'default_url_options', :to => 'default_url_options#default_url_options_action', :as => :default_url_options
match ':controller/:action'
end

get :default_url_options_action # Make a dummy request so that the controller is initialized properly.
Expand Down Expand Up @@ -210,7 +210,7 @@ class EnsureNamedRoutesWorksTicket22BugTest < ActionController::TestCase
def test_named_routes_still_work
with_routing do |set|
set.draw do |map|
map.resources :things
resources :things
end
EmptyController.send :include, ActionController::UrlWriter

Expand Down
8 changes: 5 additions & 3 deletions actionpack/test/controller/mime_responds_test.rb
Expand Up @@ -827,9 +827,11 @@ def test_not_acceptable
def with_test_route_set
with_routing do |set|
set.draw do |map|
map.resources :customers
map.resources :quiz_stores, :has_many => :customers
map.connect ":controller/:action/:id"
resources :customers
resources :quiz_stores do
resources :customers
end
match ":controller/:action"
end
yield
end
Expand Down
4 changes: 2 additions & 2 deletions actionpack/test/controller/redirect_test.rb
Expand Up @@ -233,8 +233,8 @@ def test_redirect_to_back_with_no_referer
def test_redirect_to_record
with_routing do |set|
set.draw do |map|
map.resources :workshops
map.connect ':controller/:action/:id'
resources :workshops
match ':controller/:action'
end

get :redirect_to_existing_record
Expand Down
30 changes: 15 additions & 15 deletions actionpack/test/controller/render_test.rb
Expand Up @@ -39,35 +39,35 @@ def conditional_hello
render :action => 'hello_world'
end
end

def conditional_hello_with_public_header
if stale?(:last_modified => Time.now.utc.beginning_of_day, :etag => [:foo, 123], :public => true)
render :action => 'hello_world'
end
end

def conditional_hello_with_public_header_and_expires_at
expires_in 1.minute
if stale?(:last_modified => Time.now.utc.beginning_of_day, :etag => [:foo, 123], :public => true)
render :action => 'hello_world'
end
end

def conditional_hello_with_expires_in
expires_in 60.1.seconds
render :action => 'hello_world'
end

def conditional_hello_with_expires_in_with_public
expires_in 1.minute, :public => true
render :action => 'hello_world'
end

def conditional_hello_with_expires_in_with_public_with_more_keys
expires_in 1.minute, :public => true, 'max-stale' => 5.hours
render :action => 'hello_world'
end

def conditional_hello_with_expires_in_with_public_with_more_keys_old_syntax
expires_in 1.minute, :public => true, :private => nil, 'max-stale' => 5.hours
render :action => 'hello_world'
Expand Down Expand Up @@ -272,7 +272,7 @@ def layout_test
def builder_layout_test
render :action => "hello", :layout => "layouts/builder"
end

# :move: test this in ActionView
def builder_partial_test
render :action => "hello_world_container"
Expand Down Expand Up @@ -1093,8 +1093,8 @@ def test_head_with_location_header
def test_head_with_location_object
with_routing do |set|
set.draw do |map|
map.resources :customers
map.connect ':controller/:action/:id'
resources :customers
match ':controller/:action'
end

get :head_with_location_object
Expand Down Expand Up @@ -1306,22 +1306,22 @@ class ExpiresInRenderTest < ActionController::TestCase
def setup
@request.host = "www.nextangle.com"
end

def test_expires_in_header
get :conditional_hello_with_expires_in
assert_equal "max-age=60, private", @response.headers["Cache-Control"]
end

def test_expires_in_header_with_public
get :conditional_hello_with_expires_in_with_public
assert_equal "max-age=60, public", @response.headers["Cache-Control"]
end

def test_expires_in_header_with_additional_headers
get :conditional_hello_with_expires_in_with_public_with_more_keys
assert_equal "max-age=60, public, max-stale=18000", @response.headers["Cache-Control"]
end

def test_expires_in_old_syntax
get :conditional_hello_with_expires_in_with_public_with_more_keys_old_syntax
assert_equal "max-age=60, public, max-stale=18000", @response.headers["Cache-Control"]
Expand Down Expand Up @@ -1425,12 +1425,12 @@ def test_etag_with_bang_should_obey_if_none_match
get :conditional_hello_with_bangs
assert_response :not_modified
end

def test_etag_with_public_true_should_set_header
get :conditional_hello_with_public_header
assert_equal "public", @response.headers['Cache-Control']
end

def test_etag_with_public_true_should_set_header_and_retain_other_headers
get :conditional_hello_with_public_header_and_expires_at
assert_equal "max-age=60, public", @response.headers['Cache-Control']
Expand Down
4 changes: 2 additions & 2 deletions actionpack/test/controller/render_xml_test.rb
Expand Up @@ -61,8 +61,8 @@ def test_rendering_xml_should_call_to_xml_if_possible
def test_rendering_with_object_location_should_set_header_with_url_for
with_routing do |set|
set.draw do |map|
map.resources :customers
map.connect ':controller/:action/:id'
resources :customers
match ':controller/:action'
end

get :render_with_object_location
Expand Down
11 changes: 0 additions & 11 deletions actionpack/test/controller/test_test.rb
Expand Up @@ -628,17 +628,6 @@ def test_binary_content_works_with_send_file
assert_nothing_raised(NoMethodError) { @response.binary_content }
end
end

protected
def with_foo_routing
with_routing do |set|
set.draw do |map|
map.generate_url 'foo', :controller => 'test'
map.connect ':controller/:action/:id'
end
yield set
end
end
end

class InferringClassNameTest < ActionController::TestCase
Expand Down
4 changes: 2 additions & 2 deletions actionpack/test/controller/url_rewriter_test.rb
Expand Up @@ -247,7 +247,7 @@ def test_relative_url_root_is_respected_for_named_routes

with_routing do |set|
set.draw do |map|
map.home '/home/sweet/home/:user', :controller => 'home', :action => 'index'
match '/home/sweet/home/:user', :to => 'home#index', :as => :home
end

kls = Class.new { include ActionController::UrlWriter }
Expand All @@ -264,7 +264,7 @@ def test_only_path
with_routing do |set|
set.draw do |map|
match 'home/sweet/home/:user', :to => 'home#index', :as => :home
map.connect ':controller/:action/:id'
match ':controller/:action/:id'
end

# We need to create a new class in order to install the new named route.
Expand Down
4 changes: 1 addition & 3 deletions actionpack/test/controller/webservice_test.rb
Expand Up @@ -255,9 +255,7 @@ def with_params_parsers(parsers = {})
def with_test_route_set
with_routing do |set|
set.draw do |map|
map.with_options :controller => "web_service_test/test" do |c|
c.connect "/", :action => "assign_parameters"
end
match '/', :to => 'web_service_test/test#assign_parameters'
end
yield
end
Expand Down
Expand Up @@ -151,7 +151,7 @@ def parse_multipart(name)
def with_test_routing
with_routing do |set|
set.draw do |map|
map.connect ':action', :controller => "multipart_params_parsing_test/test"
match ':action', :to => 'multipart_params_parsing_test/test'
end
yield
end
Expand Down
12 changes: 6 additions & 6 deletions actionpack/test/template/atom_feed_helper_test.rb
Expand Up @@ -187,10 +187,9 @@ def index
end

protected

def rescue_action(e)
raise(e)
end
def rescue_action(e)
raise(e)
end
end

class AtomFeedTest < ActionController::TestCase
Expand Down Expand Up @@ -311,11 +310,12 @@ def test_feed_xhtml
assert_select "summary div p", :text => "after 2"
end
end
private

private
def with_restful_routing(resources)
with_routing do |set|
set.draw do |map|
map.resources(resources)
resources(resources)
end
yield
end
Expand Down
4 changes: 2 additions & 2 deletions actionpack/test/template/test_case_test.rb
Expand Up @@ -114,15 +114,15 @@ def render_from_helper

test "is able to use named routes" do
with_routing do |set|
set.draw { |map| map.resources :contents }
set.draw { |map| resources :contents }
assert_equal 'http://test.host/contents/new', new_content_url
assert_equal 'http://test.host/contents/1', content_url(:id => 1)
end
end

test "named routes can be used from helper included in view" do
with_routing do |set|
set.draw { |map| map.resources :contents }
set.draw { |map| resources :contents }
_helpers.module_eval do
def render_from_helper
new_content_url
Expand Down
8 changes: 4 additions & 4 deletions actionpack/test/template/url_helper_test.rb
Expand Up @@ -451,7 +451,7 @@ def default_url_options(options = nil)
def with_url_helper_routing
with_routing do |set|
set.draw do |map|
map.show_named_route 'url_helper_controller_test/url_helper/show_named_route', :controller => 'url_helper_controller_test/url_helper', :action => 'show_named_route'
match 'url_helper_controller_test/url_helper/show_named_route', :to => 'url_helper_controller_test/url_helper#show_named_route', :as => :show_named_route
end
yield
end
Expand Down Expand Up @@ -505,7 +505,7 @@ def test_link_to_unless_current_shows_link
def with_restful_routing
with_routing do |set|
set.draw do |map|
map.resources :tasks
resources :tasks
end
yield
end
Expand Down Expand Up @@ -625,8 +625,8 @@ def test_existing_nested_resource
def with_restful_routing
with_routing do |set|
set.draw do |map|
map.resources :workshops do |w|
w.resources :sessions
resources :workshops do
resources :sessions
end
end
yield
Expand Down

0 comments on commit 2be5e08

Please sign in to comment.