rails/actionpack/test/dispatch/routing_test.rb

538 lines
17 KiB
Ruby
Raw Normal View History

require 'abstract_unit'
require 'controller/fake_controllers'
class TestRoutingMapper < ActionDispatch::IntegrationTest
SprocketsApp = lambda { |env|
[200, {"Content-Type" => "text/html"}, ["javascripts"]]
}
class IpRestrictor
def self.matches?(request)
request.ip =~ /192\.168\.1\.1\d\d/
end
end
stub_controllers do |routes|
Routes = routes
Routes.draw do
controller :sessions do
get 'login' => :new, :as => :login
post 'login' => :create
delete 'logout' => :destroy, :as => :logout
end
match 'account/logout' => redirect("/logout"), :as => :logout_redirect
match 'account/login', :to => redirect("/login")
match 'account/overview'
match 'account/modulo/:name', :to => redirect("/%{name}s")
match 'account/proc/:name', :to => redirect {|params| "/#{params[:name].pluralize}" }
match 'account/google' => redirect('http://www.google.com/')
match 'openid/login', :via => [:get, :post], :to => "openid#login"
controller(:global) do
get 'global/hide_notice'
match 'global/export', :to => :export, :as => :export_request
match '/export/:id/:file', :to => :export, :as => :export_download, :constraints => { :file => /.*/ }
match 'global/:action'
end
constraints(:ip => /192\.168\.1\.\d\d\d/) do
get 'admin' => "queenbee#index"
end
constraints ::TestRoutingMapper::IpRestrictor do
get 'admin/accounts' => "queenbee#accounts"
end
resources :projects, :controller => :project do
resources :involvements, :attachments
resources :participants do
put :update_all, :on => :collection
end
resources :companies do
resources :people
resource :avatar
end
resources :images do
post :revise, :on => :member
end
resources :people do
nested do
scope "/:access_token" do
resource :avatar
end
end
member do
put :accessible_projects
post :resend, :generate_new_password
end
end
resources :posts do
get :archive, :toggle_view, :on => :collection
post :preview, :on => :member
resource :subscription
resources :comments do
post :preview, :on => :collection
end
end
end
match 'sprockets.js' => ::TestRoutingMapper::SprocketsApp
match 'people/:id/update', :to => 'people#update', :as => :update_person
match '/projects/:project_id/people/:id/update', :to => 'people#update', :as => :update_project_person
# misc
match 'articles/:year/:month/:day/:title', :to => "articles#show", :as => :article
namespace :account do
resource :subscription, :credit, :credit_card
end
controller :articles do
2009-12-08 23:19:49 +00:00
scope '/articles', :name_prefix => 'article' do
scope :path => '/:title', :title => /[a-z]+/, :as => :with_title do
match '/:id', :to => :with_id
end
end
end
scope ':access_token', :constraints => { :access_token => /\w{5,5}/ } do
resources :rooms
end
match '/info' => 'projects#info', :as => 'info'
2009-12-24 23:24:57 +00:00
2009-12-22 05:49:36 +00:00
root :to => 'projects#index'
end
end
def app
Routes
end
def test_logout
2009-10-28 00:32:31 +00:00
with_test_routes do
delete '/logout'
assert_equal 'sessions#destroy', @response.body
2009-10-28 00:32:31 +00:00
assert_equal '/logout', logout_path
2009-10-28 00:57:57 +00:00
assert_equal '/logout', url_for(:controller => 'sessions', :action => 'destroy', :only_path => true)
2009-10-28 00:32:31 +00:00
end
end
def test_login
2009-10-28 00:32:31 +00:00
with_test_routes do
get '/login'
assert_equal 'sessions#new', @response.body
2009-10-28 00:57:57 +00:00
assert_equal '/login', login_path
2009-10-28 00:32:31 +00:00
post '/login'
assert_equal 'sessions#create', @response.body
2009-10-28 00:57:57 +00:00
assert_equal '/login', url_for(:controller => 'sessions', :action => 'create', :only_path => true)
assert_equal '/login', url_for(:controller => 'sessions', :action => 'new', :only_path => true)
2009-10-28 00:32:31 +00:00
end
end
def test_login_redirect
2009-10-28 00:32:31 +00:00
with_test_routes do
get '/account/login'
assert_equal 301, @response.status
assert_equal 'http://www.example.com/login', @response.headers['Location']
assert_equal 'Moved Permanently', @response.body
end
end
def test_logout_redirect_without_to
with_test_routes do
assert_equal '/account/logout', logout_redirect_path
get '/account/logout'
assert_equal 301, @response.status
assert_equal 'http://www.example.com/logout', @response.headers['Location']
assert_equal 'Moved Permanently', @response.body
end
end
def test_redirect_modulo
with_test_routes do
get '/account/modulo/name'
assert_equal 301, @response.status
assert_equal 'http://www.example.com/names', @response.headers['Location']
assert_equal 'Moved Permanently', @response.body
end
end
def test_redirect_proc
with_test_routes do
get '/account/proc/person'
assert_equal 301, @response.status
assert_equal 'http://www.example.com/people', @response.headers['Location']
assert_equal 'Moved Permanently', @response.body
end
end
def test_openid
2009-10-28 00:32:31 +00:00
with_test_routes do
get '/openid/login'
assert_equal 'openid#login', @response.body
2009-10-28 00:32:31 +00:00
post '/openid/login'
assert_equal 'openid#login', @response.body
end
end
2009-10-28 00:32:31 +00:00
# TODO: rackmount is broken
# def test_admin
2009-10-28 00:32:31 +00:00
# with_test_routes do
# get '/admin', {}, {'REMOTE_ADDR' => '192.168.1.100'}
# assert_equal 'queenbee#index', @response.body
#
2009-10-28 00:32:31 +00:00
# assert_raise(ActionController::RoutingError) { get '/admin', {}, {'REMOTE_ADDR' => '10.0.0.100'} }
#
2009-10-28 00:32:31 +00:00
# get '/admin/accounts', {}, {'REMOTE_ADDR' => '192.168.1.100'}
# assert_equal 'queenbee#accounts', @response.body
#
2009-10-28 00:32:31 +00:00
# assert_raise(ActionController::RoutingError) { get '/admin/accounts', {}, {'REMOTE_ADDR' => '10.0.0.100'} }
# end
# end
def test_global
2009-10-28 00:32:31 +00:00
with_test_routes do
get '/global/dashboard'
assert_equal 'global#dashboard', @response.body
2009-10-28 00:32:31 +00:00
get '/global/export'
assert_equal 'global#export', @response.body
2009-10-28 00:32:31 +00:00
get '/global/hide_notice'
assert_equal 'global#hide_notice', @response.body
2009-10-28 00:32:31 +00:00
get '/export/123/foo.txt'
assert_equal 'global#export', @response.body
2009-10-28 00:32:31 +00:00
assert_equal '/global/export', export_request_path
assert_equal '/global/hide_notice', global_hide_notice_path
2009-10-28 00:32:31 +00:00
assert_equal '/export/123/foo.txt', export_download_path(:id => 123, :file => 'foo.txt')
end
end
def test_projects
2009-10-28 00:32:31 +00:00
with_test_routes do
get '/projects'
assert_equal 'projects#index', @response.body
assert_equal '/projects', projects_path
2009-12-08 23:19:49 +00:00
get '/projects.xml'
assert_equal 'projects#index', @response.body
assert_equal '/projects.xml', projects_path(:format => 'xml')
get '/projects/new'
assert_equal 'projects#new', @response.body
assert_equal '/projects/new', new_project_path
2009-12-08 23:19:49 +00:00
get '/projects/new.xml'
assert_equal 'projects#new', @response.body
assert_equal '/projects/new.xml', new_project_path(:format => 'xml')
2009-10-28 00:32:31 +00:00
get '/projects/1'
assert_equal 'projects#show', @response.body
assert_equal '/projects/1', project_path(:id => '1')
2009-12-08 23:19:49 +00:00
get '/projects/1.xml'
assert_equal 'projects#show', @response.body
assert_equal '/projects/1.xml', project_path(:id => '1', :format => 'xml')
get '/projects/1/edit'
assert_equal 'projects#edit', @response.body
assert_equal '/projects/1/edit', edit_project_path(:id => '1')
2009-10-28 00:32:31 +00:00
end
end
def test_projects_involvements
2009-10-28 00:32:31 +00:00
with_test_routes do
get '/projects/1/involvements'
assert_equal 'involvements#index', @response.body
assert_equal '/projects/1/involvements', project_involvements_path(:project_id => '1')
get '/projects/1/involvements/new'
assert_equal 'involvements#new', @response.body
assert_equal '/projects/1/involvements/new', new_project_involvement_path(:project_id => '1')
2009-10-28 00:32:31 +00:00
get '/projects/1/involvements/1'
assert_equal 'involvements#show', @response.body
assert_equal '/projects/1/involvements/1', project_involvement_path(:project_id => '1', :id => '1')
put '/projects/1/involvements/1'
assert_equal 'involvements#update', @response.body
delete '/projects/1/involvements/1'
assert_equal 'involvements#destroy', @response.body
get '/projects/1/involvements/1/edit'
assert_equal 'involvements#edit', @response.body
assert_equal '/projects/1/involvements/1/edit', edit_project_involvement_path(:project_id => '1', :id => '1')
2009-10-28 00:32:31 +00:00
end
end
def test_projects_attachments
2009-10-28 00:32:31 +00:00
with_test_routes do
get '/projects/1/attachments'
assert_equal 'attachments#index', @response.body
assert_equal '/projects/1/attachments', project_attachments_path(:project_id => '1')
2009-10-28 00:32:31 +00:00
end
end
def test_projects_participants
2009-10-28 00:32:31 +00:00
with_test_routes do
get '/projects/1/participants'
assert_equal 'participants#index', @response.body
assert_equal '/projects/1/participants', project_participants_path(:project_id => '1')
2009-10-28 00:32:31 +00:00
put '/projects/1/participants/update_all'
assert_equal 'participants#update_all', @response.body
assert_equal '/projects/1/participants/update_all', update_all_project_participants_path(:project_id => '1')
2009-10-28 00:32:31 +00:00
end
end
def test_projects_companies
2009-10-28 00:32:31 +00:00
with_test_routes do
get '/projects/1/companies'
assert_equal 'companies#index', @response.body
assert_equal '/projects/1/companies', project_companies_path(:project_id => '1')
2009-10-28 00:32:31 +00:00
get '/projects/1/companies/1/people'
assert_equal 'people#index', @response.body
assert_equal '/projects/1/companies/1/people', project_company_people_path(:project_id => '1', :company_id => '1')
2009-10-28 00:32:31 +00:00
get '/projects/1/companies/1/avatar'
assert_equal 'avatars#show', @response.body
assert_equal '/projects/1/companies/1/avatar', project_company_avatar_path(:project_id => '1', :company_id => '1')
2009-10-28 00:32:31 +00:00
end
end
def test_project_images
2009-10-28 00:32:31 +00:00
with_test_routes do
get '/projects/1/images'
assert_equal 'images#index', @response.body
assert_equal '/projects/1/images', project_images_path(:project_id => '1')
2009-10-28 00:32:31 +00:00
post '/projects/1/images/1/revise'
assert_equal 'images#revise', @response.body
assert_equal '/projects/1/images/1/revise', revise_project_image_path(:project_id => '1', :id => '1')
2009-10-28 00:32:31 +00:00
end
end
def test_projects_people
2009-10-28 00:32:31 +00:00
with_test_routes do
get '/projects/1/people'
assert_equal 'people#index', @response.body
assert_equal '/projects/1/people', project_people_path(:project_id => '1')
2009-10-28 00:32:31 +00:00
get '/projects/1/people/1'
assert_equal 'people#show', @response.body
assert_equal '/projects/1/people/1', project_person_path(:project_id => '1', :id => '1')
2009-10-28 00:32:31 +00:00
get '/projects/1/people/1/7a2dec8/avatar'
assert_equal 'avatars#show', @response.body
assert_equal '/projects/1/people/1/7a2dec8/avatar', project_person_avatar_path(:project_id => '1', :person_id => '1', :access_token => '7a2dec8')
2009-10-28 00:32:31 +00:00
put '/projects/1/people/1/accessible_projects'
assert_equal 'people#accessible_projects', @response.body
assert_equal '/projects/1/people/1/accessible_projects', accessible_projects_project_person_path(:project_id => '1', :id => '1')
2009-10-28 00:32:31 +00:00
post '/projects/1/people/1/resend'
assert_equal 'people#resend', @response.body
assert_equal '/projects/1/people/1/resend', resend_project_person_path(:project_id => '1', :id => '1')
2009-10-28 00:32:31 +00:00
post '/projects/1/people/1/generate_new_password'
assert_equal 'people#generate_new_password', @response.body
assert_equal '/projects/1/people/1/generate_new_password', generate_new_password_project_person_path(:project_id => '1', :id => '1')
2009-10-28 00:32:31 +00:00
end
end
def test_projects_posts
2009-10-28 00:32:31 +00:00
with_test_routes do
get '/projects/1/posts'
assert_equal 'posts#index', @response.body
assert_equal '/projects/1/posts', project_posts_path(:project_id => '1')
2009-10-28 00:32:31 +00:00
get '/projects/1/posts/archive'
assert_equal 'posts#archive', @response.body
assert_equal '/projects/1/posts/archive', archive_project_posts_path(:project_id => '1')
2009-10-28 00:32:31 +00:00
get '/projects/1/posts/toggle_view'
assert_equal 'posts#toggle_view', @response.body
assert_equal '/projects/1/posts/toggle_view', toggle_view_project_posts_path(:project_id => '1')
2009-10-28 00:32:31 +00:00
post '/projects/1/posts/1/preview'
assert_equal 'posts#preview', @response.body
assert_equal '/projects/1/posts/1/preview', preview_project_post_path(:project_id => '1', :id => '1')
2009-10-28 00:32:31 +00:00
get '/projects/1/posts/1/subscription'
assert_equal 'subscriptions#show', @response.body
assert_equal '/projects/1/posts/1/subscription', project_post_subscription_path(:project_id => '1', :post_id => '1')
2009-10-28 00:32:31 +00:00
get '/projects/1/posts/1/comments'
assert_equal 'comments#index', @response.body
assert_equal '/projects/1/posts/1/comments', project_post_comments_path(:project_id => '1', :post_id => '1')
2009-10-28 00:32:31 +00:00
post '/projects/1/posts/1/comments/preview'
assert_equal 'comments#preview', @response.body
assert_equal '/projects/1/posts/1/comments/preview', preview_project_post_comments_path(:project_id => '1', :post_id => '1')
2009-10-28 00:32:31 +00:00
end
end
def test_sprockets
2009-10-28 00:32:31 +00:00
with_test_routes do
get '/sprockets.js'
assert_equal 'javascripts', @response.body
end
end
def test_update_person_route
2009-10-28 00:32:31 +00:00
with_test_routes do
get '/people/1/update'
assert_equal 'people#update', @response.body
2009-10-28 00:32:31 +00:00
assert_equal '/people/1/update', update_person_path(:id => 1)
end
end
def test_update_project_person
2009-10-28 00:32:31 +00:00
with_test_routes do
get '/projects/1/people/2/update'
assert_equal 'people#update', @response.body
2009-10-28 00:32:31 +00:00
assert_equal '/projects/1/people/2/update', update_project_person_path(:project_id => 1, :id => 2)
end
end
def test_articles_perma
2009-10-28 00:32:31 +00:00
with_test_routes do
get '/articles/2009/08/18/rails-3'
assert_equal 'articles#show', @response.body
2009-10-28 00:32:31 +00:00
assert_equal '/articles/2009/8/18/rails-3', article_path(:year => 2009, :month => 8, :day => 18, :title => 'rails-3')
end
end
def test_account_namespace
2009-10-28 00:32:31 +00:00
with_test_routes do
get '/account/subscription'
assert_equal 'account/subscriptions#show', @response.body
assert_equal '/account/subscription', account_subscription_path
2009-10-28 00:32:31 +00:00
get '/account/credit'
assert_equal 'account/credits#show', @response.body
assert_equal '/account/credit', account_credit_path
2009-10-28 00:32:31 +00:00
get '/account/credit_card'
assert_equal 'account/credit_cards#show', @response.body
assert_equal '/account/credit_card', account_credit_card_path
2009-10-28 00:32:31 +00:00
end
end
def test_articles_with_id
2009-10-28 00:32:31 +00:00
with_test_routes do
get '/articles/rails/1'
assert_equal 'articles#with_id', @response.body
2009-10-28 00:32:31 +00:00
assert_raise(ActionController::RoutingError) { get '/articles/123/1' }
assert_equal '/articles/rails/1', article_with_title_path(:title => 'rails', :id => 1)
2009-10-28 00:32:31 +00:00
end
end
def test_access_token_rooms
2009-10-28 00:32:31 +00:00
with_test_routes do
get '/12345/rooms'
assert_equal 'rooms#index', @response.body
2009-10-28 00:32:31 +00:00
get '/12345/rooms/1'
assert_equal 'rooms#show', @response.body
2009-10-28 00:32:31 +00:00
get '/12345/rooms/1/edit'
assert_equal 'rooms#edit', @response.body
end
end
2009-10-28 00:32:31 +00:00
2009-12-22 05:49:36 +00:00
def test_root
with_test_routes do
assert_equal '/', root_path
2009-12-22 05:49:36 +00:00
get '/'
assert_equal 'projects#index', @response.body
end
end
def test_index
with_test_routes do
assert_equal '/info', info_path
get '/info'
assert_equal 'projects#info', @response.body
end
end
2009-12-22 05:49:36 +00:00
def test_index
with_test_routes do
assert_equal '/info', info_path
get '/info'
assert_equal 'projects#info', @response.body
end
end
def test_convention_match_with_no_scope
with_test_routes do
assert_equal '/account/overview', account_overview_path
get '/account/overview'
assert_equal 'account#overview', @response.body
end
end
def test_redirect_with_complete_url
with_test_routes do
get '/account/google'
assert_equal 301, @response.status
assert_equal 'http://www.google.com/', @response.headers['Location']
assert_equal 'Moved Permanently', @response.body
end
end
def test_redirect_with_port
previous_host, self.host = self.host, 'www.example.com:3000'
with_test_routes do
get '/account/login'
assert_equal 301, @response.status
assert_equal 'http://www.example.com:3000/login', @response.headers['Location']
assert_equal 'Moved Permanently', @response.body
end
ensure
self.host = previous_host
end
2009-10-28 00:32:31 +00:00
private
def with_test_routes
real_routes, temp_routes = ActionController::Routing::Routes, Routes
ActionController::Routing.module_eval { remove_const :Routes }
ActionController::Routing.module_eval { const_set :Routes, temp_routes }
yield
ensure
ActionController::Routing.module_eval { remove_const :Routes }
ActionController::Routing.const_set(:Routes, real_routes)
end
end