#-- encoding: UTF-8 #-- copyright # ChiliProject is a project management system. # # Copyright (C) 2010-2011 the ChiliProject Team # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # See doc/COPYRIGHT.rdoc for more details. #++ require File.expand_path('../../test_helper', __FILE__) class RoutingTest < ActionController::IntegrationTest context "activities" do should route(:get, "/activity").to( :controller => 'activities', :action => 'index' ) should route(:get, "/activity.atom").to( :controller => 'activities', :action => 'index', :format => 'atom' ) should "route /activities to activities#index" do assert_recognizes({ :controller => 'activities', :action => 'index' }, "/activities") end should "route /activites.atom to activities#index" do assert_recognizes({ :controller => 'activities', :action => 'index', :format => 'atom' }, "/activities.atom") end should route(:get, "projects/eCookbook/activity").to( :controller => 'activities', :action => 'index', :project_id => "eCookbook" ) should route(:get, "projects/eCookbook/activity.atom").to( :controller => 'activities', :action => 'index', :project_id => "eCookbook", :format => 'atom') should "route project/eCookbook/activities to activities#index" do assert_recognizes({ :controller => 'activities', :action => 'index', :project_id => "eCookbook" }, "/projects/eCookbook/activities") end should "route project/eCookbook/activites.atom to activities#index" do assert_recognizes({ :controller => 'activities', :action => 'index', :format => 'atom', :project_id => "eCookbook" }, "/projects/eCookbook/activities.atom") end end context "attachments" do should route(:get, "/attachments/1").to( :controller => 'attachments', :action => 'show', :id => '1') should route(:get, "/attachments/1/filename.ext").to( :controller => 'attachments', :action => 'show', :id => '1', :filename => 'filename.ext' ) should route(:get, "/attachments/1/download").to( :controller => 'attachments', :action => 'download', :id => '1' ) should route(:get, "/attachments/1/download/filename.ext").to( :controller => 'attachments', :action => 'download', :id => '1', :filename => 'filename.ext' ) should "redirect /atttachments/download/1 to /attachments/1/download" do get '/attachments/download/1' assert_redirected_to '/attachments/1/download' end should "redirect /atttachments/download/1/filename.ext to /attachments/1/download/filename.ext" do get '/attachments/download/1/filename.ext' assert_redirected_to '/attachments/1/download/filename.ext' end end context "boards" do should route(:get, "/projects/world_domination/boards").to( :controller => 'boards', :action => 'index', :project_id => 'world_domination') should route(:get, "/projects/world_domination/boards/new").to( :controller => 'boards', :action => 'new', :project_id => 'world_domination') should route(:post, "/projects/world_domination/boards").to( :controller => 'boards', :action => 'create', :project_id => 'world_domination') should route(:get, "/projects/world_domination/boards/44").to( :controller => 'boards', :action => 'show', :project_id => 'world_domination', :id => '44') should route(:get, "/projects/world_domination/boards/44.atom").to( :controller => 'boards', :action => 'show', :project_id => 'world_domination', :id => '44', :format => 'atom') should route(:get, "/projects/world_domination/boards/44/edit").to( :controller => 'boards', :action => 'edit', :project_id => 'world_domination', :id => '44') should route(:put, "/projects/world_domination/boards/44").to( :controller => 'boards', :action => 'update', :project_id => 'world_domination', :id => '44') should route(:delete, "/projects/world_domination/boards/44").to( :controller => 'boards', :action => 'destroy', :project_id => 'world_domination', :id => '44') end context "documents" do should route(:get, "/projects/567/documents").to( :controller => 'documents', :action => 'index', :project_id => '567') should route(:get, "/projects/567/documents/new").to( :controller => 'documents', :action => 'new', :project_id => '567') should route(:get, "/documents/22").to( :controller => 'documents', :action => 'show', :id => '22') should route(:get, "/documents/22/edit").to( :controller => 'documents', :action => 'edit', :id => '22') should route(:post, "/projects/567/documents/new").to( :controller => 'documents', :action => 'new', :project_id => '567') should route(:post, "/documents/567/edit").to( :controller => 'documents', :action => 'edit', :id => '567') should route(:post, "/documents/567/destroy").to( :controller => 'documents', :action => 'destroy', :id => '567') end context "issues" do # REST actions should route(:get, "/issues").to( :controller => 'issues', :action => 'index') should route(:get, "/issues.pdf").to( :controller => 'issues', :action => 'index', :format => 'pdf') should route(:get, "/issues.atom").to( :controller => 'issues', :action => 'index', :format => 'atom') should route(:get, "/issues.xml").to( :controller => 'issues', :action => 'index', :format => 'xml') should route(:get, "/projects/23/issues").to( :controller => 'issues', :action => 'index', :project_id => '23') should route(:get, "/projects/23/issues.pdf").to( :controller => 'issues', :action => 'index', :project_id => '23', :format => 'pdf') should route(:get, "/projects/23/issues.atom").to( :controller => 'issues', :action => 'index', :project_id => '23', :format => 'atom') should route(:get, "/projects/23/issues.xml").to( :controller => 'issues', :action => 'index', :project_id => '23', :format => 'xml') should route(:get, "/issues/64").to( :controller => 'issues', :action => 'show', :id => '64') should route(:get, "/issues/64.pdf").to( :controller => 'issues', :action => 'show', :id => '64', :format => 'pdf') should route(:get, "/issues/64.atom").to( :controller => 'issues', :action => 'show', :id => '64', :format => 'atom') should route(:get, "/issues/64.xml").to( :controller => 'issues', :action => 'show', :id => '64', :format => 'xml') should route(:get, "/projects/23/issues/new").to( :controller => 'issues', :action => 'new', :project_id => '23') should route(:post, "/projects/23/issues").to( :controller => 'issues', :action => 'create', :project_id => '23') # TODO: remove as issues should be created scoped under project should route(:post, "/issues.xml").to( :controller => 'issues', :action => 'create', :format => 'xml') should route(:get, "/issues/64/edit").to( :controller => 'issues', :action => 'edit', :id => '64') should route(:put, "/issues/1.xml").to( :controller => 'issues', :action => 'update', :id => '1', :format => 'xml') should route(:delete, "/issues/1.xml").to( :controller => 'issues', :action => 'destroy', :id => '1', :format => 'xml') # Extra actions should route(:get, "/projects/23/issues/64/copy").to( :controller => 'issues', :action => 'new', :project_id => '23', :copy_from => '64') should route(:get, "/issues/move/new").to( :controller => 'issues/moves', :action => 'new') should route(:post, "/issues/move").to( :controller => 'issues/moves', :action => 'create') should route(:post, "/issues/1/quoted").to( :controller => 'journals', :action => 'new', :id => '1') should route(:get, "/issues/calendar").to( :controller => 'issues/calendars', :action => 'index') should route(:get, "/projects/project-name/issues/calendar").to( :controller => 'issues/calendars', :action => 'index', :project_id => 'project-name' ) should route(:get, "/issues/gantt").to( :controller => 'issues/gantts', :action => 'index') should route(:get, "/projects/project-name/issues/gantt").to( :controller => 'issues/gantts', :action => 'index', :project_id => 'project-name') should route(:get, "/issues/auto_complete").to( :controller => 'issues/auto_completes', :action => 'issues') should route(:post, "/issues/auto_complete").to( :controller => 'issues/auto_completes', :action => 'issues') should route(:get, "/issues/preview/123").to( :controller => 'previews', :action => 'issue', :id => '123') should route(:post, "/issues/preview/123").to( :controller => 'previews', :action => 'issue', :id => '123') should route(:get, "/issues/context_menu").to( :controller => 'issues/context_menus', :action => 'issues') should route(:post, "/issues/context_menu").to( :controller => 'issues/context_menus', :action => 'issues') should route(:get, "/issues/changes").to( :controller => 'journals', :action => 'index') should route(:get, "/issues/bulk_edit").to( :controller => 'issues', :action => 'bulk_edit') should route(:put, "/issues/bulk_update").to( :controller => 'issues', :action => 'bulk_update') end context "watches" do ['issues', 'messages', 'boards', 'wikis', 'wiki_pages'].each do |type| should route(:post, "/#{type}/1/watch").to( :controller => 'watchers', :action => 'watch', :object_type => type, :object_id => '1' ) should route(:delete, "/#{type}/1/unwatch").to( :controller => 'watchers', :action => 'unwatch', :object_type => type, :object_id => '1' ) should route(:get, "/#{type}/1/watchers/new").to( :controller => 'watchers', :action => 'new', :object_type => type, :object_id => '1' ) end should route(:delete, "/watchers/1").to( :controller => 'watchers', :action => 'destroy', :id => '1' ) end context "enumerations" do context "within admin" do should route(:get, "admin/enumerations").to( :controller => 'enumerations', :action => 'index' ) should route(:get, "admin/enumerations/new").to( :controller => 'enumerations', :action => 'new' ) should route(:post, "admin/enumerations").to( :controller => 'enumerations', :action => 'create' ) should route(:get, "admin/enumerations/1/edit").to( :controller => 'enumerations', :action => 'edit', :id => '1' ) should route(:put, "admin/enumerations/1").to( :controller => 'enumerations', :action => 'update', :id => '1' ) should route(:delete, "admin/enumerations/1").to( :controller => 'enumerations', :action => 'destroy', :id => '1' ) end end context "roles" do context "witin admin" do should route(:get, "admin/roles").to( :controller => 'roles', :action => 'index' ) should route(:get, "admin/roles/new").to( :controller => 'roles', :action => 'new' ) should route(:post, "admin/roles").to( :controller => 'roles', :action => 'create' ) should route(:get, "admin/roles/1/edit").to( :controller => 'roles', :action => 'edit', :id => '1' ) should route(:put, "admin/roles/1").to( :controller => 'roles', :action => 'update', :id => '1' ) should route(:delete, "admin/roles/1").to( :controller => 'roles', :action => 'destroy', :id => '1' ) should route(:get, "admin/roles/report").to( :controller => 'roles', :action => 'report' ) should route(:put, "admin/roles").to( :controller => 'roles', :action => 'bulk_update' ) end end # context "issue categories" do # should route(:get, "/projects/test/issue_categories/new").to( :controller => 'issue_categories', :action => 'new', :project_id => 'test') # # should route(:post, "/projects/test/issue_categories/new").to( :controller => 'issue_categories', :action => 'new', :project_id => 'test') # end # # context "issue relations" do # should route(:post, "/issues/1/relations").to( :controller => 'issue_relations', :action => 'new', :issue_id => '1') # should route(:post, "/issues/1/relations/23/destroy").to( :controller => 'issue_relations', :action => 'destroy', :issue_id => '1', :id => '23') # end # # context "issue reports" do # should route(:get, "/projects/567/issues/report").to( :controller => 'reports', :action => 'issue_report', :id => '567') # should route(:get, "/projects/567/issues/report/assigned_to").to( :controller => 'reports', :action => 'issue_report_details', :id => '567', :detail => 'assigned_to') # end # # context "members" do # should route(:post, "/projects/5234/members/new").to( :controller => 'members', :action => 'new', :id => '5234') # end # # context "messages" do # should route(:get, "/boards/22/topics/2").to( :controller => 'messages', :action => 'show', :id => '2', :board_id => '22') # should route(:get, "/boards/lala/topics/new").to( :controller => 'messages', :action => 'new', :board_id => 'lala') # should route(:get, "/boards/lala/topics/22/edit").to( :controller => 'messages', :action => 'edit', :id => '22', :board_id => 'lala') # # should route(:post, "/boards/lala/topics/new").to( :controller => 'messages', :action => 'new', :board_id => 'lala') # should route(:post, "/boards/lala/topics/22/edit").to( :controller => 'messages', :action => 'edit', :id => '22', :board_id => 'lala') # should route(:post, "/boards/22/topics/555/replies").to( :controller => 'messages', :action => 'reply', :id => '555', :board_id => '22') # should route(:post, "/boards/22/topics/555/destroy").to( :controller => 'messages', :action => 'destroy', :id => '555', :board_id => '22') # end # # context "news" do # should route(:get, "/news").to( :controller => 'news', :action => 'index') # should route(:get, "/news.atom").to( :controller => 'news', :action => 'index', :format => 'atom') # should route(:get, "/news.xml").to( :controller => 'news', :action => 'index', :format => 'xml') # should route(:get, "/news.json").to( :controller => 'news', :action => 'index', :format => 'json') # should route(:get, "/projects/567/news").to( :controller => 'news', :action => 'index', :project_id => '567') # should route(:get, "/projects/567/news.atom").to( :controller => 'news', :action => 'index', :format => 'atom', :project_id => '567') # should route(:get, "/projects/567/news.xml").to( :controller => 'news', :action => 'index', :format => 'xml', :project_id => '567') # should route(:get, "/projects/567/news.json").to( :controller => 'news', :action => 'index', :format => 'json', :project_id => '567') # should route(:get, "/news/2").to( :controller => 'news', :action => 'show', :id => '2') # should route(:get, "/projects/567/news/new").to( :controller => 'news', :action => 'new', :project_id => '567') # should route(:get, "/news/234").to( :controller => 'news', :action => 'show', :id => '234') # should route(:get, "/news/567/edit").to( :controller => 'news', :action => 'edit', :id => '567') # should route(:get, "/news/preview").to( :controller => 'previews', :action => 'news') # # should route(:post, "/projects/567/news").to( :controller => 'news', :action => 'create', :project_id => '567') # should route(:post, "/news/567/comments").to( :controller => 'comments', :action => 'create', :id => '567') # # should route(:put, "/news/567").to( :controller => 'news', :action => 'update', :id => '567') # # should route(:delete, "/news/567").to( :controller => 'news', :action => 'destroy', :id => '567') # should route(:delete, "/news/567/comments/15").to( :controller => 'comments', :action => 'destroy', :id => '567', :comment_id => '15') # end # context "projects" do # should route(:get, "/projects").to( :controller => 'projects', :action => 'index') # should route(:get, "/projects.atom").to( :controller => 'projects', :action => 'index', :format => 'atom') # should route(:get, "/projects.xml").to( :controller => 'projects', :action => 'index', :format => 'xml') # should route(:get, "/projects/new").to( :controller => 'projects', :action => 'new') # should route(:get, "/projects/test").to( :controller => 'projects', :action => 'show', :id => 'test') # should route(:get, "/projects/1.xml").to( :controller => 'projects', :action => 'show', :id => '1', :format => 'xml') # should route(:get, "/projects/4223/settings").to( :controller => 'projects', :action => 'settings', :id => '4223') # should route(:get, "/projects/4223/settings/members").to( :controller => 'projects', :action => 'settings', :id => '4223', :tab => 'members') # should route(:get, "/projects/33/files").to( :controller => 'files', :action => 'index', :project_id => '33') # should route(:get, "/projects/33/files/new").to( :controller => 'files', :action => 'new', :project_id => '33') # should route(:get, "/projects/33/roadmap").to( :controller => 'versions', :action => 'index', :project_id => '33') # should route(:get, "/projects/33/activity").to( :controller => 'activities', :action => 'index', :id => '33') # should route(:get, "/projects/33/activity.atom").to( :controller => 'activities', :action => 'index', :id => '33', :format => 'atom') # # should route(:post, "/projects").to( :controller => 'projects', :action => 'create') # should route(:post, "/projects.xml").to( :controller => 'projects', :action => 'create', :format => 'xml') # should route(:post, "/projects/33/files").to( :controller => 'files', :action => 'create', :project_id => '33') # should route(:post, "/projects/64/archive").to( :controller => 'projects', :action => 'archive', :id => '64') # should route(:post, "/projects/64/unarchive").to( :controller => 'projects', :action => 'unarchive', :id => '64') # should route(:put, "/projects/64/enumerations").to( :controller => 'project_enumerations', :action => 'update', :project_id => '64' ) # should route(:put, "/projects/4223").to( :controller => 'projects', :action => 'update', :id => '4223') # should route(:put, "/projects/1.xml").to( :controller => 'projects', :action => 'update', :id => '1', :format => 'xml') # # should route(:delete, "/projects/64").to( :controller => 'projects', :action => 'destroy', :id => '64') # should route(:delete, "/projects/1.xml").to( :controller => 'projects', :action => 'destroy', :id => '1', :format => 'xml') should route(:delete, "/projects/64/enumerations").to( :controller => 'project_enumerations', :action => 'destroy', :project_id => '64' ) # end # # context "repositories" do # should route(:get, "/projects/redmine/repository").to( :controller => 'repositories', :action => 'show', :id => 'redmine') # should route(:get, "/projects/redmine/repository/edit").to( :controller => 'repositories', :action => 'edit', :id => 'redmine') # should route(:get, "/projects/redmine/repository/revisions").to( :controller => 'repositories', :action => 'revisions', :id => 'redmine') # should route(:get, "/projects/redmine/repository/revisions.atom").to( :controller => 'repositories', :action => 'revisions', :id => 'redmine', :format => 'atom') # should route(:get, "/projects/redmine/repository/revisions/2457").to( :controller => 'repositories', :action => 'revision', :id => 'redmine', :rev => '2457') # should route(:get, "/projects/redmine/repository/revisions/2457/diff").to( :controller => 'repositories', :action => 'diff', :id => 'redmine', :rev => '2457') # should route(:get, "/projects/redmine/repository/revisions/2457/diff.diff").to( :controller => 'repositories', :action => 'diff', :id => 'redmine', :rev => '2457', :format => 'diff') # should route(:get, "/projects/redmine/repository/diff/path/to/file.c").to( :controller => 'repositories', :action => 'diff', :id => 'redmine', :path => %w[path to file.c]) # should route(:get, "/projects/redmine/repository/revisions/2/diff/path/to/file.c").to( :controller => 'repositories', :action => 'diff', :id => 'redmine', :path => %w[path to file.c], :rev => '2') # should route(:get, "/projects/redmine/repository/browse/path/to/file.c").to( :controller => 'repositories', :action => 'browse', :id => 'redmine', :path => %w[path to file.c]) # should route(:get, "/projects/redmine/repository/entry/path/to/file.c").to( :controller => 'repositories', :action => 'entry', :id => 'redmine', :path => %w[path to file.c]) # should route(:get, "/projects/redmine/repository/revisions/2/entry/path/to/file.c").to( :controller => 'repositories', :action => 'entry', :id => 'redmine', :path => %w[path to file.c], :rev => '2') # should route(:get, "/projects/redmine/repository/raw/path/to/file.c").to( :controller => 'repositories', :action => 'entry', :id => 'redmine', :path => %w[path to file.c], :format => 'raw') # should route(:get, "/projects/redmine/repository/revisions/2/raw/path/to/file.c").to( :controller => 'repositories', :action => 'entry', :id => 'redmine', :path => %w[path to file.c], :rev => '2', :format => 'raw') # should route(:get, "/projects/redmine/repository/annotate/path/to/file.c").to( :controller => 'repositories', :action => 'annotate', :id => 'redmine', :path => %w[path to file.c]) # should route(:get, "/projects/redmine/repository/changes/path/to/file.c").to( :controller => 'repositories', :action => 'changes', :id => 'redmine', :path => %w[path to file.c]) # should route(:get, "/projects/redmine/repository/statistics").to( :controller => 'repositories', :action => 'stats', :id => 'redmine') # # # should route(:post, "/projects/redmine/repository/edit").to( :controller => 'repositories', :action => 'edit', :id => 'redmine') end # context "timelogs" do should route(:get, "/time_entries").to( :controller => 'timelog', :action => 'index' ) should route(:get, "/time_entries.csv").to( :controller => 'timelog', :action => 'index', :format => 'csv' ) should route(:get, "/time_entries.atom").to( :controller => 'timelog', :action => 'index', :format => 'atom' ) should route(:get, "/time_entries/new").to( :controller => 'timelog', :action => 'new' ) should route(:get, "/time_entries/22/edit").to( :controller => 'timelog', :action => 'edit', :id => '22' ) should route(:post, "/time_entries").to( :controller => 'timelog', :action => 'create' ) should route(:put, "/time_entries/22").to( :controller => 'timelog', :action => 'update', :id => '22' ) should route(:delete, "/time_entries/55").to( :controller => 'timelog', :action => 'destroy', :id => '55' ) context "project scoped" do should route(:get, "/projects/567/time_entries").to( :controller => 'timelog', :action => 'index', :project_id => '567' ) should route(:get, "/projects/567/time_entries.csv").to( :controller => 'timelog', :action => 'index', :project_id => '567', :format => 'csv' ) should route(:get, "/projects/567/time_entries.atom").to( :controller => 'timelog', :action => 'index', :project_id => '567', :format => 'atom' ) should route(:get, "/projects/567/time_entries/new").to( :controller => 'timelog', :action => 'new', :project_id => '567' ) should route(:get, "/projects/567/time_entries/22/edit").to( :controller => 'timelog', :action => 'edit', :id => '22', :project_id => '567' ) should route(:post, "/projects/567/time_entries").to( :controller => 'timelog', :action => 'create', :project_id => '567' ) should route(:put, "/projects/567/time_entries/22").to( :controller => 'timelog', :action => 'update', :id => '22', :project_id => '567' ) should route(:delete, "/projects/567/time_entries/55").to( :controller => 'timelog', :action => 'destroy', :id => '55', :project_id => '567' ) end context "issue scoped" do should route(:get, "/issues/234/time_entries").to( :controller => 'timelog', :action => 'index', :issue_id => '234' ) should route(:get, "/issues/234/time_entries.csv").to( :controller => 'timelog', :action => 'index', :issue_id => '234', :format => 'csv' ) should route(:get, "/issues/234/time_entries.atom").to( :controller => 'timelog', :action => 'index', :issue_id => '234', :format => 'atom' ) should route(:get, "/issues/234/time_entries/new").to( :controller => 'timelog', :action => 'new', :issue_id => '234' ) should route(:get, "/issues/234/time_entries/22/edit").to( :controller => 'timelog', :action => 'edit', :id => '22', :issue_id => '234' ) should route(:post, "/issues/234/time_entries").to( :controller => 'timelog', :action => 'create', :issue_id => '234' ) should route(:put, "/issues/234/time_entries/22").to( :controller => 'timelog', :action => 'update', :id => '22', :issue_id => '234' ) should route(:delete, "/issues/234/time_entries/55").to( :controller => 'timelog', :action => 'destroy', :id => '55', :issue_id => '234' ) end end context "time_entries/reports" do should route(:get, "/time_entries/report").to( :controller => 'time_entries/reports', :action => 'show' ) should route(:get, "/issues/5/time_entries/report").to( :controller => 'time_entries/reports', :action => 'show', :issue_id => '5' ) should route(:get, "/projects/567/time_entries/report").to( :controller => 'time_entries/reports', :action => 'show', :project_id => '567' ) should route(:get, "/projects/567/time_entries/report.csv").to( :controller => 'time_entries/reports', :action => 'show', :project_id => '567', :format => 'csv' ) end # # context "users" do # should route(:get, "/users").to( :controller => 'users', :action => 'index') # should route(:get, "/users.xml").to( :controller => 'users', :action => 'index', :format => 'xml') # should route(:get, "/users/44").to( :controller => 'users', :action => 'show', :id => '44') # should route(:get, "/users/44.xml").to( :controller => 'users', :action => 'show', :id => '44', :format => 'xml') # should route(:get, "/users/current").to( :controller => 'users', :action => 'show', :id => 'current') # should route(:get, "/users/current.xml").to( :controller => 'users', :action => 'show', :id => 'current', :format => 'xml') # should route(:get, "/users/new").to( :controller => 'users', :action => 'new') # should route(:get, "/users/444/edit").to( :controller => 'users', :action => 'edit', :id => '444') # should route(:get, "/users/222/edit/membership").to( :controller => 'users', :action => 'edit', :id => '222', :tab => 'membership') # # should route(:post, "/users").to( :controller => 'users', :action => 'create') # should route(:post, "/users.xml").to( :controller => 'users', :action => 'create', :format => 'xml') # should route(:post, "/users/123/memberships").to( :controller => 'users', :action => 'edit_membership', :id => '123') # should route(:post, "/users/123/memberships/55").to( :controller => 'users', :action => 'edit_membership', :id => '123', :membership_id => '55') # should route(:post, "/users/567/memberships/12/destroy").to( :controller => 'users', :action => 'destroy_membership', :id => '567', :membership_id => '12') # # should route(:put, "/users/444").to( :controller => 'users', :action => 'update', :id => '444') # should route(:put, "/users/444.xml").to( :controller => 'users', :action => 'update', :id => '444', :format => 'xml') # end # context "versions" do should route(:get, "/versions/1").to( :controller => 'versions', :action => 'show', :id => '1' ) should route(:get, "/versions/1/edit").to( :controller => 'versions', :action => 'edit', :id => '1' ) should route(:put, "/versions/1").to( :controller => 'versions', :action => 'update', :id => '1' ) should route(:delete, "/versions/1").to( :controller => 'versions', :action => 'destroy', :id => '1' ) should route(:get, "/versions/1/status_by").to( :controller => 'versions', :action => 'status_by', :id => '1' ) context "project" do should route(:get, "/projects/foo/versions/new").to( :controller => 'versions', :action => 'new', :project_id => 'foo' ) should route(:post, "/projects/foo/versions").to( :controller => 'versions', :action => 'create', :project_id => 'foo' ) should route(:put, "/projects/foo/versions/close_completed").to( :controller => 'versions', :action => 'close_completed', :project_id => 'foo' ) should route(:get, "/projects/foo/roadmap").to( :controller => 'versions', :action => 'index', :project_id => 'foo' ) end end context "wiki (singular, project's pages)" do context "within project" do should route(:get, "/projects/567/wiki").to( :controller => 'wiki', :action => 'show', :project_id => '567' ) should route(:get, "/projects/567/wiki/lalala").to( :controller => 'wiki', :action => 'show', :project_id => '567', :id => 'lalala' ) should route(:get, "/projects/567/wiki/my_page/edit").to( :controller => 'wiki', :action => 'edit', :project_id => '567', :id => 'my_page' ) should route(:get, "/projects/1/wiki/CookBook_documentation/history").to( :controller => 'wiki', :action => 'history', :project_id => '1', :id => 'CookBook_documentation' ) should route(:get, "/projects/1/wiki/CookBook_documentation/diff").to( :controller => 'wiki', :action => 'diff', :project_id => '1', :id => 'CookBook_documentation' ) should route(:get, "/projects/1/wiki/CookBook_documentation/diff/2").to( :controller => 'wiki', :action => 'diff', :project_id => '1', :id => 'CookBook_documentation', :version => '2' ) should route(:get, "/projects/1/wiki/CookBook_documentation/diff/2/vs/1").to( :controller => 'wiki', :action => 'diff', :project_id => '1', :id => 'CookBook_documentation', :version => '2', :version_from => '1') should route(:get, "/projects/1/wiki/CookBook_documentation/annotate/2").to( :controller => 'wiki', :action => 'annotate', :project_id => '1', :id => 'CookBook_documentation', :version => '2' ) should route(:get, "/projects/22/wiki/ladida/rename").to( :controller => 'wiki', :action => 'rename', :project_id => '22', :id => 'ladida' ) should route(:get, "/projects/567/wiki/index").to( :controller => 'wiki', :action => 'index', :project_id => '567' ) should route(:get, "/projects/567/wiki/date_index").to( :controller => 'wiki', :action => 'date_index', :project_id => '567' ) should route(:get, "/projects/567/wiki/export").to( :controller => 'wiki', :action => 'export', :project_id => '567' ) should route(:post, "/projects/567/wiki/CookBook_documentation/preview").to( :controller => 'wiki', :action => 'preview', :project_id => '567', :id => 'CookBook_documentation' ) should route(:post, "/projects/22/wiki/ladida/rename").to( :controller => 'wiki', :action => 'rename', :project_id => '22', :id => 'ladida' ) should route(:post, "/projects/22/wiki/ladida/protect").to( :controller => 'wiki', :action => 'protect', :project_id => '22', :id => 'ladida' ) should route(:post, "/projects/22/wiki/ladida/add_attachment").to( :controller => 'wiki', :action => 'add_attachment', :project_id => '22', :id => 'ladida' ) should route(:put, "/projects/567/wiki/my_page").to( :controller => 'wiki', :action => 'update', :project_id => '567', :id => 'my_page' ) should route(:delete, "/projects/22/wiki/ladida").to( :controller => 'wiki', :action => 'destroy', :project_id => '22', :id => 'ladida' ) end end context "wikis (plural, admin setup)" do should route(:get, "/projects/ladida/wiki/destroy").to( :controller => 'wikis', :action => 'destroy', :id => 'ladida') should route(:post, "/projects/ladida/wiki").to( :controller => 'wikis', :action => 'edit', :id => 'ladida') should route(:post, "/projects/ladida/wiki/destroy").to( :controller => 'wikis', :action => 'destroy', :id => 'ladida') end context "administration panel" do should route(:get, "/admin/projects").to( :controller => 'admin', :action => 'projects') end context "groups" do should route(:get, "/admin/groups").to( :controller => 'groups', :action => 'index' ) should route(:get, "/admin/groups/new").to( :controller => 'groups', :action => 'new' ) should route(:post, "/admin/groups").to( :controller => 'groups', :action => 'create' ) should route(:get, "/admin/groups/4").to( :controller => 'groups', :action => 'show', :id => '4' ) should route(:get, "/admin/groups/4/edit").to( :controller => 'groups', :action => 'edit', :id => '4' ) should route(:put, "/admin/groups/4").to( :controller => 'groups', :action => 'update', :id => '4' ) should route(:delete, "/admin/groups/4").to( :controller => 'groups', :action => 'destroy', :id => '4' ) should route(:get, "/admin/groups/4/autocomplete_for_user").to( :controller => 'groups', :action => 'autocomplete_for_user', :id => '4' ) should route(:post, "/admin/groups/4/members").to( :controller => 'groups', :action => 'add_users', :id => '4' ) should route(:delete, "/admin/groups/4/members/5").to( :controller => 'groups', :action => 'remove_user', :id => '4', :user_id => '5' ) should route(:post, "/admin/groups/4/memberships").to( :controller => 'groups', :action => 'create_memberships', :id => '4' ) should route(:put, "/admin/groups/4/memberships/5").to( :controller => 'groups', :action => 'edit_membership', :id => '4', :membership_id => '5' ) should route(:delete, "/admin/groups/4/memberships/5").to( :controller => 'groups', :action => 'destroy_membership', :id => '4', :membership_id => '5' ) end end