aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2008-02-02 05:57:16 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2008-02-02 05:57:16 +0000
commitfadaba679ac81aaab5c035bce61a369c1b33b1fe (patch)
treed4faccbfd7cba55ce1a5416a6b7711bc8f167ba0 /actionpack/test
parent9e1d91c24bfd260df8609d5008fe40210f32cfd9 (diff)
downloadrails-fadaba679ac81aaab5c035bce61a369c1b33b1fe.tar.gz
rails-fadaba679ac81aaab5c035bce61a369c1b33b1fe.tar.bz2
rails-fadaba679ac81aaab5c035bce61a369c1b33b1fe.zip
Introduce map.resources :cards, :as => 'tarjetas' to use a custom resource name in the URL: cards_path == '/tarjetas'. Closes #10578.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8785 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/controller/resources_test.rb39
1 files changed, 34 insertions, 5 deletions
diff --git a/actionpack/test/controller/resources_test.rb b/actionpack/test/controller/resources_test.rb
index 9031c633ca..c62a2043d9 100644
--- a/actionpack/test/controller/resources_test.rb
+++ b/actionpack/test/controller/resources_test.rb
@@ -609,6 +609,35 @@ class ResourcesTest < Test::Unit::TestCase
end
end
+ def test_with_path_segment
+ with_restful_routing :messages, :as => 'reviews' do
+ assert_simply_restful_for :messages, :as => 'reviews'
+ end
+ end
+
+ def test_multiple_with_path_segment_and_controller
+ with_routing do |set|
+ set.draw do |map|
+ map.resources :products do |products|
+ products.resources :product_reviews, :as => 'reviews', :controller => 'messages'
+ end
+ map.resources :tutors do |tutors|
+ tutors.resources :tutor_reviews, :as => 'reviews', :controller => 'comments'
+ end
+ end
+
+ assert_simply_restful_for :product_reviews, :controller=>'messages', :as => 'reviews', :name_prefix => 'product_', :path_prefix => 'products/1/', :options => {:product_id => '1'}
+ assert_simply_restful_for :tutor_reviews,:controller=>'comments', :as => 'reviews', :name_prefix => 'tutor_', :path_prefix => 'tutors/1/', :options => {:tutor_id => '1'}
+ end
+ end
+
+ def test_with_path_segment_path_prefix_requirements
+ expected_options = {:controller => 'messages', :action => 'show', :thread_id => '1.1.1', :id => '1'}
+ with_restful_routing :messages, :as => 'comments',:path_prefix => '/thread/:thread_id', :requirements => { :thread_id => /[0-9]\.[0-9]\.[0-9]/ } do
+ assert_recognizes(expected_options, :path => 'thread/1.1.1/comments/1', :method => :get)
+ end
+ end
+
protected
def with_restful_routing(*args)
with_routing do |set|
@@ -639,7 +668,7 @@ class ResourcesTest < Test::Unit::TestCase
options[:options] ||= {}
options[:options][:controller] = options[:controller] || controller_name.to_s
- collection_path = "/#{options[:path_prefix]}#{controller_name}"
+ collection_path = "/#{options[:path_prefix]}#{options[:as] || controller_name}"
member_path = "#{collection_path}/1"
new_path = "#{collection_path}/new"
edit_member_path = "#{member_path}/edit"
@@ -692,9 +721,9 @@ class ResourcesTest < Test::Unit::TestCase
get :index, options[:options]
options[:options].delete :action
- full_prefix = "/#{options[:path_prefix]}#{controller_name}"
+ full_prefix = "/#{options[:path_prefix]}#{options[:as] || controller_name}"
name_prefix = options[:name_prefix]
-
+
assert_named_route "#{full_prefix}", "#{name_prefix}#{controller_name}_path", options[:options]
assert_named_route "#{full_prefix}.xml", "formatted_#{name_prefix}#{controller_name}_path", options[:options].merge( :format => 'xml')
assert_named_route "#{full_prefix}/1", "#{name_prefix}#{singular_name}_path", options[:options].merge(:id => '1')
@@ -712,7 +741,7 @@ class ResourcesTest < Test::Unit::TestCase
options[:options] ||= {}
options[:options][:controller] = options[:controller] || singleton_name.to_s.pluralize
- full_path = "/#{options[:path_prefix]}#{singleton_name}"
+ full_path = "/#{options[:path_prefix]}#{options[:as] || singleton_name}"
new_path = "#{full_path}/new"
edit_path = "#{full_path}/edit"
formatted_edit_path = "#{full_path}/edit.xml"
@@ -751,7 +780,7 @@ class ResourcesTest < Test::Unit::TestCase
get :show, options[:options]
options[:options].delete :action
- full_path = "/#{options[:path_prefix]}#{singleton_name}"
+ full_path = "/#{options[:path_prefix]}#{options[:as] || singleton_name}"
name_prefix = options[:name_prefix]
assert_named_route "#{full_path}", "#{name_prefix}#{singleton_name}_path", options[:options]