2019-12-26 22:10:19 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec . describe 'project routing' do
let ( :base_params ) { { namespace_id : 'gitlab' , project_id : 'gitlabhq' } }
2017-08-17 22:00:37 +05:30
before do
allow ( Project ) . to receive ( :find_by_full_path ) . and_return ( false )
allow ( Project ) . to receive ( :find_by_full_path ) . with ( 'gitlab/gitlabhq' , any_args ) . and_return ( true )
end
# projects POST /projects(.:format) projects#create
# new_project GET /projects/new(.:format) projects#new
# files_project GET /:id/files(.:format) projects#files
# edit_project GET /:id/edit(.:format) projects#edit
# project GET /:id(.:format) projects#show
# PUT /:id(.:format) projects#update
# DELETE /:id(.:format) projects#destroy
# preview_markdown_project POST /:id/preview_markdown(.:format) projects#preview_markdown
describe ProjectsController , 'routing' do
2020-07-28 23:09:34 +05:30
it 'to #index' do
expect ( get ( '/projects' ) ) . to route_to ( 'projects#index' )
end
2017-08-17 22:00:37 +05:30
it 'to #create' do
expect ( post ( '/projects' ) ) . to route_to ( 'projects#create' )
end
it 'to #new' do
expect ( get ( '/projects/new' ) ) . to route_to ( 'projects#new' )
end
it 'to #edit' do
expect ( get ( '/gitlab/gitlabhq/edit' ) ) . to route_to ( 'projects#edit' , namespace_id : 'gitlab' , id : 'gitlabhq' )
end
describe 'to #show' do
context 'regular name' do
it { expect ( get ( '/gitlab/gitlabhq' ) ) . to route_to ( 'projects#show' , namespace_id : 'gitlab' , id : 'gitlabhq' ) }
end
context 'name with dot' do
2017-09-10 17:25:29 +05:30
before do
allow ( Project ) . to receive ( :find_by_full_path ) . with ( 'gitlab/gitlabhq.keys' , any_args ) . and_return ( true )
end
2017-08-17 22:00:37 +05:30
it { expect ( get ( '/gitlab/gitlabhq.keys' ) ) . to route_to ( 'projects#show' , namespace_id : 'gitlab' , id : 'gitlabhq.keys' ) }
end
context 'with nested group' do
2017-09-10 17:25:29 +05:30
before do
allow ( Project ) . to receive ( :find_by_full_path ) . with ( 'gitlab/subgroup/gitlabhq' , any_args ) . and_return ( true )
end
2017-08-17 22:00:37 +05:30
it { expect ( get ( '/gitlab/subgroup/gitlabhq' ) ) . to route_to ( 'projects#show' , namespace_id : 'gitlab/subgroup' , id : 'gitlabhq' ) }
end
end
it 'to #update' do
expect ( put ( '/gitlab/gitlabhq' ) ) . to route_to ( 'projects#update' , namespace_id : 'gitlab' , id : 'gitlabhq' )
end
it 'to #destroy' do
expect ( delete ( '/gitlab/gitlabhq' ) ) . to route_to ( 'projects#destroy' , namespace_id : 'gitlab' , id : 'gitlabhq' )
end
it 'to #preview_markdown' do
expect ( post ( '/gitlab/gitlabhq/preview_markdown' ) ) . to (
route_to ( 'projects#preview_markdown' , namespace_id : 'gitlab' , id : 'gitlabhq' )
)
end
2022-05-07 20:08:51 +05:30
end
2019-03-02 22:35:43 +05:30
2022-05-07 20:08:51 +05:30
describe Projects :: RedirectController , 'routing' do
it 'to #redirect_from_id' do
expect ( get ( '/projects/1' ) ) . to route_to ( 'projects/redirect#redirect_from_id' , id : '1' )
2019-03-02 22:35:43 +05:30
end
2017-08-17 22:00:37 +05:30
end
# members_namespace_project_autocomplete_sources_path GET /:project_id/autocomplete_sources/members(.:format) projects/autocomplete_sources#members
# issues_namespace_project_autocomplete_sources_path GET /:project_id/autocomplete_sources/issues(.:format) projects/autocomplete_sources#issues
# merge_requests_namespace_project_autocomplete_sources_path GET /:project_id/autocomplete_sources/merge_requests(.:format) projects/autocomplete_sources#merge_requests
# labels_namespace_project_autocomplete_sources_path GET /:project_id/autocomplete_sources/labels(.:format) projects/autocomplete_sources#labels
# milestones_namespace_project_autocomplete_sources_path GET /:project_id/autocomplete_sources/milestones(.:format) projects/autocomplete_sources#milestones
# commands_namespace_project_autocomplete_sources_path GET /:project_id/autocomplete_sources/commands(.:format) projects/autocomplete_sources#commands
2018-12-05 23:21:45 +05:30
# snippets_namespace_project_autocomplete_sources_path GET /:project_id/autocomplete_sources/snippets(.:format) projects/autocomplete_sources#snippets
2017-08-17 22:00:37 +05:30
describe Projects :: AutocompleteSourcesController , 'routing' do
2018-12-05 23:21:45 +05:30
[ :members , :issues , :merge_requests , :labels , :milestones , :commands , :snippets ] . each do | action |
2017-08-17 22:00:37 +05:30
it " to # #{ action } " do
2019-09-04 21:01:54 +05:30
expect ( get ( " /gitlab/gitlabhq/-/autocomplete_sources/ #{ action } " ) ) . to route_to ( " projects/autocomplete_sources # #{ action } " , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
2017-08-17 22:00:37 +05:30
end
end
end
2020-07-28 23:09:34 +05:30
# project_wikis_git_access GET /:project_id/-/wikis/git_access(.:format) projects/wikis#git_access
# project_wikis_pages GET /:project_id/-/wikis/pages(.:format) projects/wikis#pages
# project_wikis_new GET /:project_id/-/wikis/new(.:format) projects/wikis#new
# POST /:project_id/-/wikis(.:format) projects/wikis#create
# project_wiki_edit GET /:project_id/-/wikis/*id/edit projects/wikis#edit
# project_wiki_history GET /:project_id/-/wikis/*id/history projects/wikis#history
# project_wiki_preview_markdown POST /:project_id/-/wikis/*id/preview_markdown projects/wikis#preview_markdown
# project_wiki GET /:project_id/-/wikis/*id projects/wikis#show
# PUT /:project_id/-/wikis/*id projects/wikis#update
# DELETE /:project_id/-/wikis/*id projects/wikis#destroy
2017-08-17 22:00:37 +05:30
describe Projects :: WikisController , 'routing' do
2020-07-28 23:09:34 +05:30
it_behaves_like 'wiki routing' do
let ( :base_path ) { '/gitlab/gitlabhq/-/wikis' }
2017-08-17 22:00:37 +05:30
end
2020-01-01 13:55:28 +05:30
2021-03-08 18:12:59 +05:30
it_behaves_like 'redirecting a legacy path' , " /gitlab/gitlabhq/wikis " , " /gitlab/gitlabhq/-/wikis "
it_behaves_like 'redirecting a legacy path' , " /gitlab/gitlabhq/wikis/home/edit " , " /gitlab/gitlabhq/-/wikis/home/edit "
2017-08-17 22:00:37 +05:30
end
# branches_project_repository GET /:project_id/repository/branches(.:format) projects/repositories#branches
# tags_project_repository GET /:project_id/repository/tags(.:format) projects/repositories#tags
# archive_project_repository GET /:project_id/repository/archive(.:format) projects/repositories#archive
# edit_project_repository GET /:project_id/repository/edit(.:format) projects/repositories#edit
describe Projects :: RepositoriesController , 'routing' do
it 'to #archive format:zip' do
2018-05-09 12:01:36 +05:30
expect ( get ( '/gitlab/gitlabhq/-/archive/master/archive.zip' ) ) . to route_to ( 'projects/repositories#archive' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , format : 'zip' , id : 'master/archive' )
2017-08-17 22:00:37 +05:30
end
it 'to #archive format:tar.bz2' do
2018-05-09 12:01:36 +05:30
expect ( get ( '/gitlab/gitlabhq/-/archive/master/archive.tar.bz2' ) ) . to route_to ( 'projects/repositories#archive' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , format : 'tar.bz2' , id : 'master/archive' )
2017-09-10 17:25:29 +05:30
end
it 'to #archive with "/" in route' do
2018-05-09 12:01:36 +05:30
expect ( get ( '/gitlab/gitlabhq/-/archive/improve/awesome/gitlabhq-improve-awesome.tar.gz' ) ) . to route_to ( 'projects/repositories#archive' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , format : 'tar.gz' , id : 'improve/awesome/gitlabhq-improve-awesome' )
end
2017-08-17 22:00:37 +05:30
end
describe Projects :: BranchesController , 'routing' do
it 'to #branches' do
2019-09-04 21:01:54 +05:30
expect ( get ( '/gitlab/gitlabhq/-/branches' ) ) . to route_to ( 'projects/branches#index' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
expect ( delete ( '/gitlab/gitlabhq/-/branches/feature%2345' ) ) . to route_to ( 'projects/branches#destroy' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'feature#45' )
expect ( delete ( '/gitlab/gitlabhq/-/branches/feature%2B45' ) ) . to route_to ( 'projects/branches#destroy' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'feature+45' )
expect ( delete ( '/gitlab/gitlabhq/-/branches/feature@45' ) ) . to route_to ( 'projects/branches#destroy' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'feature@45' )
expect ( delete ( '/gitlab/gitlabhq/-/branches/feature%2345/foo/bar/baz' ) ) . to route_to ( 'projects/branches#destroy' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'feature#45/foo/bar/baz' )
expect ( delete ( '/gitlab/gitlabhq/-/branches/feature%2B45/foo/bar/baz' ) ) . to route_to ( 'projects/branches#destroy' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'feature+45/foo/bar/baz' )
expect ( delete ( '/gitlab/gitlabhq/-/branches/feature@45/foo/bar/baz' ) ) . to route_to ( 'projects/branches#destroy' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'feature@45/foo/bar/baz' )
2017-08-17 22:00:37 +05:30
end
end
describe Projects :: TagsController , 'routing' do
it 'to #tags' do
2019-09-04 21:01:54 +05:30
expect ( get ( '/gitlab/gitlabhq/-/tags' ) ) . to route_to ( 'projects/tags#index' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
expect ( delete ( '/gitlab/gitlabhq/-/tags/feature%2345' ) ) . to route_to ( 'projects/tags#destroy' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'feature#45' )
expect ( delete ( '/gitlab/gitlabhq/-/tags/feature%2B45' ) ) . to route_to ( 'projects/tags#destroy' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'feature+45' )
expect ( delete ( '/gitlab/gitlabhq/-/tags/feature@45' ) ) . to route_to ( 'projects/tags#destroy' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'feature@45' )
expect ( delete ( '/gitlab/gitlabhq/-/tags/feature%2345/foo/bar/baz' ) ) . to route_to ( 'projects/tags#destroy' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'feature#45/foo/bar/baz' )
expect ( delete ( '/gitlab/gitlabhq/-/tags/feature%2B45/foo/bar/baz' ) ) . to route_to ( 'projects/tags#destroy' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'feature+45/foo/bar/baz' )
expect ( delete ( '/gitlab/gitlabhq/-/tags/feature@45/foo/bar/baz' ) ) . to route_to ( 'projects/tags#destroy' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'feature@45/foo/bar/baz' )
2017-08-17 22:00:37 +05:30
end
2020-05-24 23:13:21 +05:30
2021-03-08 18:12:59 +05:30
it_behaves_like 'redirecting a legacy path' , " /gitlab/gitlabhq/tags " , " /gitlab/gitlabhq/-/tags "
2017-08-17 22:00:37 +05:30
end
# project_deploy_keys GET /:project_id/deploy_keys(.:format) deploy_keys#index
# POST /:project_id/deploy_keys(.:format) deploy_keys#create
# new_project_deploy_key GET /:project_id/deploy_keys/new(.:format) deploy_keys#new
# project_deploy_key GET /:project_id/deploy_keys/:id(.:format) deploy_keys#show
2017-09-10 17:25:29 +05:30
# edit_project_deploy_key GET /:project_id/deploy_keys/:id/edit(.:format) deploy_keys#edit
# project_deploy_key PATCH /:project_id/deploy_keys/:id(.:format) deploy_keys#update
2017-08-17 22:00:37 +05:30
# DELETE /:project_id/deploy_keys/:id(.:format) deploy_keys#destroy
describe Projects :: DeployKeysController , 'routing' do
2020-07-28 23:09:34 +05:30
it_behaves_like 'resource routing' do
let ( :actions ) { % i [ index new create edit update ] }
let ( :base_path ) { '/gitlab/gitlabhq/-/deploy_keys' }
2017-08-17 22:00:37 +05:30
end
end
# project_protected_branches GET /:project_id/protected_branches(.:format) protected_branches#index
# POST /:project_id/protected_branches(.:format) protected_branches#create
# project_protected_branch DELETE /:project_id/protected_branches/:id(.:format) protected_branches#destroy
describe Projects :: ProtectedBranchesController , 'routing' do
2020-07-28 23:09:34 +05:30
it_behaves_like 'resource routing' do
let ( :actions ) { % i [ index create destroy ] }
let ( :base_path ) { '/gitlab/gitlabhq/-/protected_branches' }
2017-08-17 22:00:37 +05:30
end
end
# switch_project_refs GET /:project_id/refs/switch(.:format) refs#switch
# logs_tree_project_ref GET /:project_id/refs/:id/logs_tree(.:format) refs#logs_tree
# logs_file_project_ref GET /:project_id/refs/:id/logs_tree/:path(.:format) refs#logs_tree
describe Projects :: RefsController , 'routing' do
it 'to #switch' do
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/-/refs/switch' ) ) . to route_to ( 'projects/refs#switch' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
2017-08-17 22:00:37 +05:30
end
it 'to #logs_tree' do
2022-11-25 23:54:43 +05:30
expect ( get ( '/gitlab/gitlabhq/-/refs/stable/logs_tree/..%2F..%2F..%2F..%2F..%2F@example.com/tree/a' ) ) . to route_to ( 'projects/refs#logs_tree' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'stable' , path : '../../../../../@example.com/tree/a' )
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/-/refs/stable/logs_tree' ) ) . to route_to ( 'projects/refs#logs_tree' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'stable' )
expect ( get ( '/gitlab/gitlabhq/-/refs/feature%2345/logs_tree' ) ) . to route_to ( 'projects/refs#logs_tree' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'feature#45' )
expect ( get ( '/gitlab/gitlabhq/-/refs/feature%2B45/logs_tree' ) ) . to route_to ( 'projects/refs#logs_tree' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'feature+45' )
expect ( get ( '/gitlab/gitlabhq/-/refs/feature@45/logs_tree' ) ) . to route_to ( 'projects/refs#logs_tree' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'feature@45' )
expect ( get ( '/gitlab/gitlabhq/-/refs/stable/logs_tree/foo/bar/baz' ) ) . to route_to ( 'projects/refs#logs_tree' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'stable' , path : 'foo/bar/baz' )
expect ( get ( '/gitlab/gitlabhq/-/refs/feature%2345/logs_tree/foo/bar/baz' ) ) . to route_to ( 'projects/refs#logs_tree' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'feature#45' , path : 'foo/bar/baz' )
expect ( get ( '/gitlab/gitlabhq/-/refs/feature%2B45/logs_tree/foo/bar/baz' ) ) . to route_to ( 'projects/refs#logs_tree' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'feature+45' , path : 'foo/bar/baz' )
expect ( get ( '/gitlab/gitlabhq/-/refs/feature@45/logs_tree/foo/bar/baz' ) ) . to route_to ( 'projects/refs#logs_tree' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'feature@45' , path : 'foo/bar/baz' )
expect ( get ( '/gitlab/gitlabhq/-/refs/stable/logs_tree/files.scss' ) ) . to route_to ( 'projects/refs#logs_tree' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'stable' , path : 'files.scss' )
assert_routing ( { path : " /gitlab/gitlabhq/-/refs/stable/logs_tree/new%0A%0Aline.txt " ,
2019-12-21 20:55:43 +05:30
method : :get } ,
{ controller : 'projects/refs' , action : 'logs_tree' ,
namespace_id : 'gitlab' , project_id : 'gitlabhq' ,
id : " stable " , path : " new \n \n line.txt " } )
2017-08-17 22:00:37 +05:30
end
2021-09-04 01:27:46 +05:30
it_behaves_like 'redirecting a legacy path' , '/gitlab/gitlabhq/refs/switch' , '/gitlab/gitlabhq/-/refs/switch'
it_behaves_like 'redirecting a legacy path' ,
'/gitlab/gitlabhq/refs/feature%2345/logs_tree' ,
'/gitlab/gitlabhq/-/refs/feature%2345/logs_tree'
it_behaves_like 'redirecting a legacy path' ,
'/gitlab/gitlabhq/refs/stable/logs_tree/new%0A%0Aline.txt' ,
'/gitlab/gitlabhq/-/refs/stable/logs_tree/new%0A%0Aline.txt'
2022-11-25 23:54:43 +05:30
it_behaves_like 'redirecting a legacy path' ,
'/gitlab/gitlabhq/refs/feature%2345/logs_tree/../../../../../@example.com/tree/a' ,
'/gitlab/gitlabhq/-/refs/feature#45/logs_tree/../../../../../-/example.com/tree/a'
2017-08-17 22:00:37 +05:30
end
describe Projects :: MergeRequestsController , 'routing' do
2017-09-10 17:25:29 +05:30
it 'to #commits' do
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/-/merge_requests/1/commits.json' ) ) . to route_to ( 'projects/merge_requests#commits' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '1' , format : 'json' )
2017-08-17 22:00:37 +05:30
end
2017-09-10 17:25:29 +05:30
it 'to #pipelines' do
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/-/merge_requests/1/pipelines.json' ) ) . to route_to ( 'projects/merge_requests#pipelines' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '1' , format : 'json' )
2017-08-17 22:00:37 +05:30
end
it 'to #merge' do
2020-03-13 15:44:24 +05:30
expect ( post ( '/gitlab/gitlabhq/-/merge_requests/1/merge' ) ) . to route_to (
2017-08-17 22:00:37 +05:30
'projects/merge_requests#merge' ,
namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '1'
)
end
2017-09-10 17:25:29 +05:30
it 'to #show' do
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/-/merge_requests/1.diff' ) ) . to route_to ( 'projects/merge_requests#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '1' , format : 'diff' )
expect ( get ( '/gitlab/gitlabhq/-/merge_requests/1.patch' ) ) . to route_to ( 'projects/merge_requests#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '1' , format : 'patch' )
expect ( get ( '/gitlab/gitlabhq/-/merge_requests/1/diffs' ) ) . to route_to ( 'projects/merge_requests#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '1' , tab : 'diffs' )
expect ( get ( '/gitlab/gitlabhq/-/merge_requests/1/commits' ) ) . to route_to ( 'projects/merge_requests#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '1' , tab : 'commits' )
expect ( get ( '/gitlab/gitlabhq/-/merge_requests/1/pipelines' ) ) . to route_to ( 'projects/merge_requests#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '1' , tab : 'pipelines' )
end
it 'to #show from scoped route' do
expect ( get ( '/gitlab/gitlabhq/-/merge_requests/1.diff' ) ) . to route_to ( 'projects/merge_requests#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '1' , format : 'diff' )
expect ( get ( '/gitlab/gitlabhq/-/merge_requests/1.patch' ) ) . to route_to ( 'projects/merge_requests#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '1' , format : 'patch' )
expect ( get ( '/gitlab/gitlabhq/-/merge_requests/1/diffs' ) ) . to route_to ( 'projects/merge_requests#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '1' , tab : 'diffs' )
2017-09-10 17:25:29 +05:30
end
2020-07-28 23:09:34 +05:30
it_behaves_like 'resource routing' do
let ( :actions ) { % i [ index edit show update ] }
let ( :base_path ) { '/gitlab/gitlabhq/-/merge_requests' }
2017-09-10 17:25:29 +05:30
end
2020-03-13 15:44:24 +05:30
2021-03-08 18:12:59 +05:30
it_behaves_like 'redirecting a legacy path' , " /gitlab/gitlabhq/merge_requests " , " /gitlab/gitlabhq/-/merge_requests "
it_behaves_like 'redirecting a legacy path' , " /gitlab/gitlabhq/merge_requests/1/diffs " , " /gitlab/gitlabhq/-/merge_requests/1/diffs "
2017-09-10 17:25:29 +05:30
end
describe Projects :: MergeRequests :: CreationsController , 'routing' do
it 'to #new' do
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/-/merge_requests/new' ) ) . to route_to ( 'projects/merge_requests/creations#new' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
expect ( get ( '/gitlab/gitlabhq/-/merge_requests/new/diffs' ) ) . to route_to ( 'projects/merge_requests/creations#new' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , tab : 'diffs' )
expect ( get ( '/gitlab/gitlabhq/-/merge_requests/new/pipelines' ) ) . to route_to ( 'projects/merge_requests/creations#new' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , tab : 'pipelines' )
2017-09-10 17:25:29 +05:30
end
it 'to #create' do
2020-03-13 15:44:24 +05:30
expect ( post ( '/gitlab/gitlabhq/-/merge_requests' ) ) . to route_to ( 'projects/merge_requests/creations#create' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
2017-09-10 17:25:29 +05:30
end
2017-08-17 22:00:37 +05:30
it 'to #branch_from' do
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/-/merge_requests/new/branch_from' ) ) . to route_to ( 'projects/merge_requests/creations#branch_from' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
2017-08-17 22:00:37 +05:30
end
it 'to #branch_to' do
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/-/merge_requests/new/branch_to' ) ) . to route_to ( 'projects/merge_requests/creations#branch_to' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
2017-08-17 22:00:37 +05:30
end
2017-09-10 17:25:29 +05:30
it 'to #pipelines' do
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/-/merge_requests/new/pipelines.json' ) ) . to route_to ( 'projects/merge_requests/creations#pipelines' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , format : 'json' )
2017-08-17 22:00:37 +05:30
end
2017-09-10 17:25:29 +05:30
it 'to #diffs' do
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/-/merge_requests/new/diffs.json' ) ) . to route_to ( 'projects/merge_requests/creations#diffs' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , format : 'json' )
2017-09-10 17:25:29 +05:30
end
2020-03-13 15:44:24 +05:30
2021-03-08 18:12:59 +05:30
it_behaves_like 'redirecting a legacy path' , " /gitlab/gitlabhq/merge_requests/new " , " /gitlab/gitlabhq/-/merge_requests/new "
2017-09-10 17:25:29 +05:30
end
describe Projects :: MergeRequests :: DiffsController , 'routing' do
it 'to #show' do
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/-/merge_requests/1/diffs.json' ) ) . to route_to ( 'projects/merge_requests/diffs#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '1' , format : 'json' )
2017-08-17 22:00:37 +05:30
end
end
2017-09-10 17:25:29 +05:30
describe Projects :: MergeRequests :: ConflictsController , 'routing' do
it 'to #show' do
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/-/merge_requests/1/conflicts' ) ) . to route_to ( 'projects/merge_requests/conflicts#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '1' )
2017-09-10 17:25:29 +05:30
end
end
2017-08-17 22:00:37 +05:30
# raw_project_snippet GET /:project_id/snippets/:id/raw(.:format) snippets#raw
# project_snippets GET /:project_id/snippets(.:format) snippets#index
# new_project_snippet GET /:project_id/snippets/new(.:format) snippets#new
# edit_project_snippet GET /:project_id/snippets/:id/edit(.:format) snippets#edit
# project_snippet GET /:project_id/snippets/:id(.:format) snippets#show
describe SnippetsController , 'routing' do
it 'to #raw' do
2020-10-24 23:57:45 +05:30
expect ( get ( '/gitlab/gitlabhq/-/snippets/1/raw' ) ) . to route_to ( 'projects/snippets#raw' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '1' )
2017-08-17 22:00:37 +05:30
end
it 'to #index' do
2020-10-24 23:57:45 +05:30
expect ( get ( '/gitlab/gitlabhq/-/snippets' ) ) . to route_to ( 'projects/snippets#index' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
2017-08-17 22:00:37 +05:30
end
it 'to #new' do
2020-10-24 23:57:45 +05:30
expect ( get ( '/gitlab/gitlabhq/-/snippets/new' ) ) . to route_to ( 'projects/snippets#new' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
2017-08-17 22:00:37 +05:30
end
it 'to #edit' do
2020-10-24 23:57:45 +05:30
expect ( get ( '/gitlab/gitlabhq/-/snippets/1/edit' ) ) . to route_to ( 'projects/snippets#edit' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '1' )
2017-08-17 22:00:37 +05:30
end
it 'to #show' do
2020-10-24 23:57:45 +05:30
expect ( get ( '/gitlab/gitlabhq/-/snippets/1' ) ) . to route_to ( 'projects/snippets#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '1' )
2017-08-17 22:00:37 +05:30
end
2021-09-04 01:27:46 +05:30
it 'to #raw from unscope routing' do
expect ( get ( '/gitlab/gitlabhq/snippets/1/raw' ) ) . to route_to ( 'projects/snippets#raw' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '1' )
2020-07-28 23:09:34 +05:30
end
2021-09-04 01:27:46 +05:30
it_behaves_like 'redirecting a legacy path' , '/gitlab/gitlabhq/snippets/1' , '/gitlab/gitlabhq/-/snippets/1'
2017-08-17 22:00:37 +05:30
end
2021-04-29 21:17:54 +05:30
# test_project_hook POST /:project_id/-/hooks/:id/test(.:format) hooks#test
# project_hooks GET /:project_id/-/hooks(.:format) hooks#index
# POST /:project_id/-/hooks(.:format) hooks#create
# edit_project_hook GET /:project_id/-/hooks/:id/edit(.:format) hooks#edit
# project_hook PUT /:project_id/-/hooks/:id(.:format) hooks#update
# DELETE /:project_id/-/hooks/:id(.:format) hooks#destroy
2017-08-17 22:00:37 +05:30
describe Projects :: HooksController , 'routing' do
it 'to #test' do
2021-04-29 21:17:54 +05:30
expect ( post ( '/gitlab/gitlabhq/-/hooks/1/test' ) ) . to route_to ( 'projects/hooks#test' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '1' )
2017-08-17 22:00:37 +05:30
end
2020-07-28 23:09:34 +05:30
it_behaves_like 'resource routing' do
let ( :actions ) { % i [ index create destroy edit update ] }
2021-04-29 21:17:54 +05:30
let ( :base_path ) { '/gitlab/gitlabhq/-/hooks' }
2017-08-17 22:00:37 +05:30
end
2021-04-29 21:17:54 +05:30
it_behaves_like 'redirecting a legacy path' , '/gitlab/gitlabhq/hooks' , '/gitlab/gitlabhq/-/hooks'
2017-08-17 22:00:37 +05:30
end
2021-04-29 21:17:54 +05:30
# retry_namespace_project_hook_hook_log POST /:project_id/-/hooks/:hook_id/hook_logs/:id/retry(.:format) projects/hook_logs#retry
# namespace_project_hook_hook_log GET /:project_id/-/hooks/:hook_id/hook_logs/:id(.:format) projects/hook_logs#show
2017-09-10 17:25:29 +05:30
describe Projects :: HookLogsController , 'routing' do
it 'to #retry' do
2021-04-29 21:17:54 +05:30
expect ( post ( '/gitlab/gitlabhq/-/hooks/1/hook_logs/1/retry' ) ) . to route_to ( 'projects/hook_logs#retry' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , hook_id : '1' , id : '1' )
2017-09-10 17:25:29 +05:30
end
it 'to #show' do
2021-04-29 21:17:54 +05:30
expect ( get ( '/gitlab/gitlabhq/-/hooks/1/hook_logs/1' ) ) . to route_to ( 'projects/hook_logs#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , hook_id : '1' , id : '1' )
2017-09-10 17:25:29 +05:30
end
2021-04-29 21:17:54 +05:30
it_behaves_like 'redirecting a legacy path' , '/gitlab/gitlabhq/hooks/hook_logs/1' , '/gitlab/gitlabhq/-/hooks/hook_logs/1'
2017-09-10 17:25:29 +05:30
end
2017-08-17 22:00:37 +05:30
# project_commit GET /:project_id/commit/:id(.:format) commit#show {id: /\h{7,40}/, project_id: /[^\/]+/}
describe Projects :: CommitController , 'routing' do
it 'to #show' do
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/-/commit/4246fbd' ) ) . to route_to ( 'projects/commit#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '4246fbd' )
expect ( get ( '/gitlab/gitlabhq/-/commit/4246fbd.diff' ) ) . to route_to ( 'projects/commit#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '4246fbd' , format : 'diff' )
expect ( get ( '/gitlab/gitlabhq/-/commit/4246fbd.patch' ) ) . to route_to ( 'projects/commit#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '4246fbd' , format : 'patch' )
expect ( get ( '/gitlab/gitlabhq/-/commit/4246fbd13872934f72a8fd0d6fb1317b47b59cb5' ) ) . to route_to ( 'projects/commit#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '4246fbd13872934f72a8fd0d6fb1317b47b59cb5' )
end
2021-09-04 01:27:46 +05:30
it_behaves_like 'redirecting a legacy path' , " /gitlab/gitlabhq/commit/4246fbd " , " /gitlab/gitlabhq/-/commit/4246fbd "
2017-08-17 22:00:37 +05:30
end
# patch_project_commit GET /:project_id/commits/:id/patch(.:format) commits#patch
# project_commits GET /:project_id/commits(.:format) commits#index
# POST /:project_id/commits(.:format) commits#create
# project_commit GET /:project_id/commits/:id(.:format) commits#show
describe Projects :: CommitsController , 'routing' do
2020-07-28 23:09:34 +05:30
it_behaves_like 'resource routing' do
let ( :actions ) { % i [ show ] }
let ( :base_path ) { '/gitlab/gitlabhq/-/commits' }
2017-08-17 22:00:37 +05:30
end
it 'to #show' do
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/-/commits/master.atom' ) ) . to route_to ( 'projects/commits#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'master.atom' )
end
2021-09-04 01:27:46 +05:30
it_behaves_like 'redirecting a legacy path' , " /gitlab/gitlabhq/commits/master " , " /gitlab/gitlabhq/-/commits/master "
2017-08-17 22:00:37 +05:30
end
# project_project_members GET /:project_id/project_members(.:format) project_members#index
# POST /:project_id/project_members(.:format) project_members#create
# PUT /:project_id/project_members/:id(.:format) project_members#update
# DELETE /:project_id/project_members/:id(.:format) project_members#destroy
describe Projects :: ProjectMembersController , 'routing' do
2020-07-28 23:09:34 +05:30
it_behaves_like 'resource routing' do
2022-05-07 20:08:51 +05:30
let ( :actions ) { % i [ index update destroy ] }
2020-07-28 23:09:34 +05:30
let ( :base_path ) { '/gitlab/gitlabhq/-/project_members' }
2017-08-17 22:00:37 +05:30
end
end
2018-03-17 18:26:18 +05:30
# project_milestones GET /:project_id/milestones(.:format) milestones#index
# POST /:project_id/milestones(.:format) milestones#create
# new_project_milestone GET /:project_id/milestones/new(.:format) milestones#new
# edit_project_milestone GET /:project_id/milestones/:id/edit(.:format) milestones#edit
# project_milestone GET /:project_id/milestones/:id(.:format) milestones#show
# PUT /:project_id/milestones/:id(.:format) milestones#update
# DELETE /:project_id/milestones/:id(.:format) milestones#destroy
# promote_project_milestone POST /:project_id/milestones/:id/promote milestones#promote
2017-08-17 22:00:37 +05:30
describe Projects :: MilestonesController , 'routing' do
2020-07-28 23:09:34 +05:30
it_behaves_like 'resource routing' do
let ( :actions ) { % i [ index create new edit show update ] }
let ( :base_path ) { '/gitlab/gitlabhq/-/milestones' }
2017-08-17 22:00:37 +05:30
end
2018-03-17 18:26:18 +05:30
it 'to #promote' do
2019-09-04 21:01:54 +05:30
expect ( post ( '/gitlab/gitlabhq/-/milestones/1/promote' ) ) . to route_to ( 'projects/milestones#promote' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : " 1 " )
2018-03-17 18:26:18 +05:30
end
2017-08-17 22:00:37 +05:30
end
# project_labels GET /:project_id/labels(.:format) labels#index
describe Projects :: LabelsController , 'routing' do
it 'to #index' do
2019-09-04 21:01:54 +05:30
expect ( get ( '/gitlab/gitlabhq/-/labels' ) ) . to route_to ( 'projects/labels#index' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
2017-08-17 22:00:37 +05:30
end
end
# sort_project_issues POST /:project_id/issues/sort(.:format) issues#sort
# bulk_update_project_issues POST /:project_id/issues/bulk_update(.:format) issues#bulk_update
# search_project_issues GET /:project_id/issues/search(.:format) issues#search
# project_issues GET /:project_id/issues(.:format) issues#index
# POST /:project_id/issues(.:format) issues#create
# new_project_issue GET /:project_id/issues/new(.:format) issues#new
# edit_project_issue GET /:project_id/issues/:id/edit(.:format) issues#edit
# project_issue GET /:project_id/issues/:id(.:format) issues#show
# PUT /:project_id/issues/:id(.:format) issues#update
# DELETE /:project_id/issues/:id(.:format) issues#destroy
describe Projects :: IssuesController , 'routing' do
it 'to #bulk_update' do
2020-05-24 23:13:21 +05:30
expect ( post ( '/gitlab/gitlabhq/-/issues/bulk_update' ) ) . to route_to ( 'projects/issues#bulk_update' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
2017-08-17 22:00:37 +05:30
end
2020-07-28 23:09:34 +05:30
it_behaves_like 'resource routing' do
let ( :actions ) { % i [ index create new edit show update ] }
let ( :base_path ) { '/gitlab/gitlabhq/-/issues' }
2017-08-17 22:00:37 +05:30
end
2020-05-24 23:13:21 +05:30
2021-03-08 18:12:59 +05:30
it_behaves_like 'redirecting a legacy path' , " /gitlab/gitlabhq/issues " , " /gitlab/gitlabhq/-/issues "
it_behaves_like 'redirecting a legacy path' , " /gitlab/gitlabhq/issues/1/edit " , " /gitlab/gitlabhq/-/issues/1/edit "
2017-08-17 22:00:37 +05:30
end
# project_noteable_notes GET /:project_id/noteable/:target_type/:target_id/notes notes#index
# POST /:project_id/notes(.:format) notes#create
# project_note DELETE /:project_id/notes/:id(.:format) notes#destroy
describe Projects :: NotesController , 'routing' do
it 'to #index' do
expect ( get ( '/gitlab/gitlabhq/noteable/issue/1/notes' ) ) . to route_to (
'projects/notes#index' ,
namespace_id : 'gitlab' ,
project_id : 'gitlabhq' ,
target_type : 'issue' ,
target_id : '1'
)
end
2020-07-28 23:09:34 +05:30
it_behaves_like 'resource routing' do
let ( :actions ) { % i [ create destroy ] }
let ( :base_path ) { '/gitlab/gitlabhq/notes' }
2017-08-17 22:00:37 +05:30
end
end
2019-12-04 20:38:33 +05:30
# project_blame GET /:project_id/blame/:id(.:format) blame#show {id: /[^\0]+/, project_id: /[^\/]+/}
2017-08-17 22:00:37 +05:30
describe Projects :: BlameController , 'routing' do
it 'to #show' do
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/-/blame/master/app/models/project.rb' ) ) . to route_to ( 'projects/blame#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'master/app/models/project.rb' )
expect ( get ( '/gitlab/gitlabhq/-/blame/master/files.scss' ) ) . to route_to ( 'projects/blame#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'master/files.scss' )
2019-12-04 20:38:33 +05:30
newline_file = " new \n \n line.txt "
url_encoded_newline_file = ERB :: Util . url_encode ( newline_file )
2020-03-13 15:44:24 +05:30
assert_routing ( { path : " /gitlab/gitlabhq/-/blame/master/ #{ url_encoded_newline_file } " ,
2022-10-11 01:57:18 +05:30
method : :get } ,
2019-12-04 20:38:33 +05:30
{ controller : 'projects/blame' , action : 'show' ,
namespace_id : 'gitlab' , project_id : 'gitlabhq' ,
id : " master/ #{ newline_file } " } )
2017-08-17 22:00:37 +05:30
end
end
2020-03-13 15:44:24 +05:30
# project_blob GET /:project_id/-/blob/:id(.:format) blob#show {id: /[^\0]+/, project_id: /[^\/]+/}
2017-08-17 22:00:37 +05:30
describe Projects :: BlobController , 'routing' do
it 'to #show' do
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/-/blob/master/app/models/project.rb' ) ) . to route_to ( 'projects/blob#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'master/app/models/project.rb' )
expect ( get ( '/gitlab/gitlabhq/-/blob/master/app/models/compare.rb' ) ) . to route_to ( 'projects/blob#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'master/app/models/compare.rb' )
expect ( get ( '/gitlab/gitlabhq/-/blob/master/app/models/diff.js' ) ) . to route_to ( 'projects/blob#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'master/app/models/diff.js' )
expect ( get ( '/gitlab/gitlabhq/-/blob/master/files.scss' ) ) . to route_to ( 'projects/blob#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'master/files.scss' )
expect ( get ( '/gitlab/gitlabhq/-/blob/master/blob/index.js' ) ) . to route_to ( 'projects/blob#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'master/blob/index.js' )
expect ( get ( '/gitlab/gitlabhq/-/blob/blob/master/blob/index.js' ) ) . to route_to ( 'projects/blob#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'blob/master/blob/index.js' )
2019-12-04 20:38:33 +05:30
newline_file = " new \n \n line.txt "
url_encoded_newline_file = ERB :: Util . url_encode ( newline_file )
2020-03-13 15:44:24 +05:30
assert_routing ( { path : " /gitlab/gitlabhq/-/blob/blob/master/blob/ #{ url_encoded_newline_file } " ,
2022-10-11 01:57:18 +05:30
method : :get } ,
2019-12-04 20:38:33 +05:30
{ controller : 'projects/blob' , action : 'show' ,
namespace_id : 'gitlab' , project_id : 'gitlabhq' ,
id : " blob/master/blob/ #{ newline_file } " } )
2017-08-17 22:00:37 +05:30
end
2020-03-13 15:44:24 +05:30
it 'to #show from unscoped routing' do
expect ( get ( '/gitlab/gitlabhq/blob/master/app/models/project.rb' ) ) . to route_to ( 'projects/blob#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'master/app/models/project.rb' )
end
2017-08-17 22:00:37 +05:30
end
2020-03-13 15:44:24 +05:30
# project_tree GET /:project_id/-/tree/:id(.:format) tree#show {id: /[^\0]+/, project_id: /[^\/]+/}
2017-08-17 22:00:37 +05:30
describe Projects :: TreeController , 'routing' do
it 'to #show' do
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/-/tree/master/app/models/project.rb' ) ) . to route_to ( 'projects/tree#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'master/app/models/project.rb' )
expect ( get ( '/gitlab/gitlabhq/-/tree/master/files.scss' ) ) . to route_to ( 'projects/tree#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'master/files.scss' )
expect ( get ( '/gitlab/gitlabhq/-/tree/master/tree/files' ) ) . to route_to ( 'projects/tree#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'master/tree/files' )
expect ( get ( '/gitlab/gitlabhq/-/tree/tree/master/tree/files' ) ) . to route_to ( 'projects/tree#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'tree/master/tree/files' )
2019-12-04 20:38:33 +05:30
newline_file = " new \n \n line.txt "
url_encoded_newline_file = ERB :: Util . url_encode ( newline_file )
2020-03-13 15:44:24 +05:30
assert_routing ( { path : " /gitlab/gitlabhq/-/tree/master/ #{ url_encoded_newline_file } " ,
2022-10-11 01:57:18 +05:30
method : :get } ,
2019-12-04 20:38:33 +05:30
{ controller : 'projects/tree' , action : 'show' ,
namespace_id : 'gitlab' , project_id : 'gitlabhq' ,
id : " master/ #{ newline_file } " } )
2017-08-17 22:00:37 +05:30
end
2020-03-13 15:44:24 +05:30
it 'to #show from unscoped routing' do
2021-09-04 01:27:46 +05:30
expect ( get ( '/gitlab/gitlabhq/tree/master' ) ) . to route_to ( 'projects/tree#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'master' )
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/tree/master/app/models/project.rb' ) ) . to route_to ( 'projects/tree#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'master/app/models/project.rb' )
end
2017-08-17 22:00:37 +05:30
end
2020-03-13 15:44:24 +05:30
# project_find_file GET /:namespace_id/:project_id/-/find_file/*id(.:format) projects/find_file#show {:id=>/[^\0]+/, :namespace_id=>/[a-zA-Z.0-9_\-]+/, :project_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/, :format=>/html/}
# project_files GET /:namespace_id/:project_id/-/files/*id(.:format) projects/find_file#list {:id=>/(?:[^.]|\.(?!json$))+/, :namespace_id=>/[a-zA-Z.0-9_\-]+/, :project_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/, :format=>/json/}
2017-08-17 22:00:37 +05:30
describe Projects :: FindFileController , 'routing' do
it 'to #show' do
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/-/find_file/master' ) ) . to route_to ( 'projects/find_file#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'master' )
2019-12-04 20:38:33 +05:30
newline_file = " new \n \n line.txt "
url_encoded_newline_file = ERB :: Util . url_encode ( newline_file )
2020-03-13 15:44:24 +05:30
assert_routing ( { path : " /gitlab/gitlabhq/-/find_file/ #{ url_encoded_newline_file } " ,
2022-10-11 01:57:18 +05:30
method : :get } ,
2019-12-04 20:38:33 +05:30
{ controller : 'projects/find_file' , action : 'show' ,
namespace_id : 'gitlab' , project_id : 'gitlabhq' ,
id : " #{ newline_file } " } )
2017-08-17 22:00:37 +05:30
end
it 'to #list' do
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/-/files/master.json' ) ) . to route_to ( 'projects/find_file#list' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'master.json' )
2019-12-04 20:38:33 +05:30
newline_file = " new \n \n line.txt "
url_encoded_newline_file = ERB :: Util . url_encode ( newline_file )
2020-03-13 15:44:24 +05:30
assert_routing ( { path : " /gitlab/gitlabhq/-/files/ #{ url_encoded_newline_file } " ,
2022-10-11 01:57:18 +05:30
method : :get } ,
2019-12-04 20:38:33 +05:30
{ controller : 'projects/find_file' , action : 'list' ,
namespace_id : 'gitlab' , project_id : 'gitlabhq' ,
id : " #{ newline_file } " } )
2017-08-17 22:00:37 +05:30
end
2021-09-04 01:27:46 +05:30
it_behaves_like 'redirecting a legacy path' , " /gitlab/gitlabhq/find_file " , " /gitlab/gitlabhq/-/find_file "
it_behaves_like 'redirecting a legacy path' , " /gitlab/gitlabhq/files/master " , " /gitlab/gitlabhq/-/files/master "
2017-08-17 22:00:37 +05:30
end
describe Projects :: BlobController , 'routing' do
it 'to #edit' do
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/-/edit/master/app/models/project.rb' ) ) . to (
2017-08-17 22:00:37 +05:30
route_to ( 'projects/blob#edit' ,
namespace_id : 'gitlab' , project_id : 'gitlabhq' ,
id : 'master/app/models/project.rb' ) )
2019-12-04 20:38:33 +05:30
newline_file = " new \n \n line.txt "
url_encoded_newline_file = ERB :: Util . url_encode ( newline_file )
2020-03-13 15:44:24 +05:30
assert_routing ( { path : " /gitlab/gitlabhq/-/edit/master/docs/ #{ url_encoded_newline_file } " ,
2022-10-11 01:57:18 +05:30
method : :get } ,
2019-12-04 20:38:33 +05:30
{ controller : 'projects/blob' , action : 'edit' ,
namespace_id : 'gitlab' , project_id : 'gitlabhq' ,
id : " master/docs/ #{ newline_file } " } )
2017-08-17 22:00:37 +05:30
end
it 'to #preview' do
2020-03-13 15:44:24 +05:30
expect ( post ( '/gitlab/gitlabhq/-/preview/master/app/models/project.rb' ) ) . to (
2017-08-17 22:00:37 +05:30
route_to ( 'projects/blob#preview' ,
namespace_id : 'gitlab' , project_id : 'gitlabhq' ,
id : 'master/app/models/project.rb' ) )
2019-12-04 20:38:33 +05:30
newline_file = " new \n \n line.txt "
url_encoded_newline_file = ERB :: Util . url_encode ( newline_file )
2020-03-13 15:44:24 +05:30
assert_routing ( { path : " /gitlab/gitlabhq/-/edit/master/docs/ #{ url_encoded_newline_file } " ,
2022-10-11 01:57:18 +05:30
method : :get } ,
2019-12-04 20:38:33 +05:30
{ controller : 'projects/blob' , action : 'edit' ,
namespace_id : 'gitlab' , project_id : 'gitlabhq' ,
id : " master/docs/ #{ newline_file } " } )
end
2021-09-04 01:27:46 +05:30
it_behaves_like 'redirecting a legacy path' , " /gitlab/gitlabhq/new/master " , " /gitlab/gitlabhq/-/new/master "
it_behaves_like 'redirecting a legacy path' , " /gitlab/gitlabhq/edit/master/README " , " /gitlab/gitlabhq/-/edit/master/README "
2019-12-04 20:38:33 +05:30
end
2020-03-13 15:44:24 +05:30
# project_raw GET /:project_id/-/raw/:id(.:format) raw#show {id: /[^\0]+/, project_id: /[^\/]+/}
2019-12-04 20:38:33 +05:30
describe Projects :: RawController , 'routing' do
it 'to #show' do
newline_file = " new \n \n line.txt "
url_encoded_newline_file = ERB :: Util . url_encode ( newline_file )
2020-03-13 15:44:24 +05:30
assert_routing ( { path : " /gitlab/gitlabhq/-/raw/master/ #{ url_encoded_newline_file } " ,
2022-10-11 01:57:18 +05:30
method : :get } ,
2019-12-04 20:38:33 +05:30
{ controller : 'projects/raw' , action : 'show' ,
namespace_id : 'gitlab' , project_id : 'gitlabhq' ,
id : " master/ #{ newline_file } " } )
2017-08-17 22:00:37 +05:30
end
2020-03-13 15:44:24 +05:30
it 'to #show from unscoped routing' do
expect ( get ( '/gitlab/gitlabhq/raw/master/app/models/project.rb' ) ) . to route_to ( 'projects/raw#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'master/app/models/project.rb' )
end
2017-08-17 22:00:37 +05:30
end
2020-03-13 15:44:24 +05:30
# project_compare_index GET /:project_id/-/compare(.:format) compare#index {id: /[^\/]+/, project_id: /[^\/]+/}
# POST /:project_id/-/compare(.:format) compare#create {id: /[^\/]+/, project_id: /[^\/]+/}
# project_compare /:project_id/-/compare/:from...:to(.:format) compare#show {from: /.+/, to: /.+/, id: /[^\/]+/, project_id: /[^\/]+/}
2017-08-17 22:00:37 +05:30
describe Projects :: CompareController , 'routing' do
it 'to #index' do
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/-/compare' ) ) . to route_to ( 'projects/compare#index' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
2017-08-17 22:00:37 +05:30
end
it 'to #compare' do
2020-03-13 15:44:24 +05:30
expect ( post ( '/gitlab/gitlabhq/-/compare' ) ) . to route_to ( 'projects/compare#create' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
2017-08-17 22:00:37 +05:30
end
it 'to #show' do
2020-03-13 15:44:24 +05:30
expect ( get ( '/gitlab/gitlabhq/-/compare/master...stable' ) ) . to route_to ( 'projects/compare#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , from : 'master' , to : 'stable' )
expect ( get ( '/gitlab/gitlabhq/-/compare/issue/1234...stable' ) ) . to route_to ( 'projects/compare#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , from : 'issue/1234' , to : 'stable' )
2017-08-17 22:00:37 +05:30
end
2021-09-04 01:27:46 +05:30
it_behaves_like 'redirecting a legacy path' , '/gitlab/gitlabhq/compare' , '/gitlab/gitlabhq/-/compare'
it_behaves_like 'redirecting a legacy path' , '/gitlab/gitlabhq/compare/master...stable' , '/gitlab/gitlabhq/-/compare/master...stable'
2017-08-17 22:00:37 +05:30
end
describe Projects :: NetworkController , 'routing' do
it 'to #show' do
2019-09-04 21:01:54 +05:30
expect ( get ( '/gitlab/gitlabhq/-/network/master' ) ) . to route_to ( 'projects/network#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'master' )
expect ( get ( '/gitlab/gitlabhq/-/network/ends-with.json' ) ) . to route_to ( 'projects/network#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'ends-with.json' )
expect ( get ( '/gitlab/gitlabhq/-/network/master?format=json' ) ) . to route_to ( 'projects/network#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'master' , format : 'json' )
2017-08-17 22:00:37 +05:30
end
end
describe Projects :: GraphsController , 'routing' do
it 'to #show' do
2019-09-04 21:01:54 +05:30
expect ( get ( '/gitlab/gitlabhq/-/graphs/master' ) ) . to route_to ( 'projects/graphs#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'master' )
expect ( get ( '/gitlab/gitlabhq/-/graphs/ends-with.json' ) ) . to route_to ( 'projects/graphs#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'ends-with.json' )
expect ( get ( '/gitlab/gitlabhq/-/graphs/master?format=json' ) ) . to route_to ( 'projects/graphs#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'master' , format : 'json' )
2017-08-17 22:00:37 +05:30
end
end
describe Projects :: ForksController , 'routing' do
it 'to #new' do
2019-09-04 21:01:54 +05:30
expect ( get ( '/gitlab/gitlabhq/-/forks/new' ) ) . to route_to ( 'projects/forks#new' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
2017-08-17 22:00:37 +05:30
end
it 'to #create' do
2019-09-04 21:01:54 +05:30
expect ( post ( '/gitlab/gitlabhq/-/forks' ) ) . to route_to ( 'projects/forks#create' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
2017-08-17 22:00:37 +05:30
end
end
# project_avatar DELETE /project/avatar(.:format) projects/avatars#destroy
describe Projects :: AvatarsController , 'routing' do
it 'to #destroy' do
2019-09-04 21:01:54 +05:30
expect ( delete ( '/gitlab/gitlabhq/-/avatar' ) ) . to route_to (
2017-08-17 22:00:37 +05:30
'projects/avatars#destroy' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
end
end
describe Projects :: PagesDomainsController , 'routing' do
2020-07-28 23:09:34 +05:30
it_behaves_like 'resource routing' do
let ( :actions ) { % i [ show new create destroy ] }
let ( :base_path ) { '/gitlab/gitlabhq/pages/domains' }
let ( :id ) { 'my.domain.com' }
2017-08-17 22:00:37 +05:30
end
it 'to #destroy with a valid domain name' do
expect ( delete ( '/gitlab/gitlabhq/pages/domains/my.domain.com' ) ) . to route_to ( 'projects/pages_domains#destroy' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'my.domain.com' )
end
it 'to #show with a valid domain' do
expect ( get ( '/gitlab/gitlabhq/pages/domains/my.domain.com' ) ) . to route_to ( 'projects/pages_domains#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'my.domain.com' )
end
2014-09-02 18:07:02 +05:30
end
2017-09-10 17:25:29 +05:30
2022-05-07 20:08:51 +05:30
describe Projects :: ReleasesController , 'routing' do
it 'to #latest_permalink with a valid permalink path' do
expect ( get ( '/gitlab/gitlabhq/-/releases/permalink/latest/downloads/release-binary.zip' ) ) . to route_to (
'projects/releases#latest_permalink' ,
namespace_id : 'gitlab' ,
project_id : 'gitlabhq' ,
suffix_path : 'downloads/release-binary.zip'
)
expect ( get ( '/gitlab/gitlabhq/-/releases/permalink/latest' ) ) . to route_to (
'projects/releases#latest_permalink' ,
namespace_id : 'gitlab' ,
project_id : 'gitlabhq'
)
end
it 'to #show for the release with tag named permalink' do
expect ( get ( '/gitlab/gitlabhq/-/releases/permalink' ) ) . to route_to (
'projects/releases#show' ,
namespace_id : 'gitlab' ,
project_id : 'gitlabhq' ,
tag : 'permalink'
)
end
end
2017-09-10 17:25:29 +05:30
describe Projects :: Registry :: TagsController , 'routing' do
describe '#destroy' do
it 'correctly routes to a destroy action' do
expect ( delete ( '/gitlab/gitlabhq/registry/repository/1/tags/rc1' ) )
. to route_to ( 'projects/registry/tags#destroy' ,
namespace_id : 'gitlab' ,
project_id : 'gitlabhq' ,
repository_id : '1' ,
id : 'rc1' )
end
it 'takes registry tag name constrains into account' do
expect ( delete ( '/gitlab/gitlabhq/registry/repository/1/tags/-rc1' ) )
. not_to route_to ( 'projects/registry/tags#destroy' ,
namespace_id : 'gitlab' ,
project_id : 'gitlabhq' ,
repository_id : '1' ,
id : '-rc1' )
end
end
end
2019-07-07 11:18:12 +05:30
2021-04-29 21:17:54 +05:30
describe Projects :: PipelinesController , 'routing' do
it 'to #index' do
expect ( get ( '/gitlab/gitlabhq/-/pipelines' ) ) . to route_to ( 'projects/pipelines#index' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
end
it 'to #show' do
expect ( get ( '/gitlab/gitlabhq/-/pipelines/12' ) ) . to route_to ( 'projects/pipelines#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '12' )
end
it_behaves_like 'redirecting a legacy path' , '/gitlab/gitlabhq/pipelines' , '/gitlab/gitlabhq/-/pipelines'
end
describe Projects :: PipelineSchedulesController , 'routing' do
it 'to #index' do
expect ( get ( '/gitlab/gitlabhq/-/pipeline_schedules' ) ) . to route_to ( 'projects/pipeline_schedules#index' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
end
it_behaves_like 'redirecting a legacy path' , '/gitlab/gitlabhq/pipeline_schedules' , '/gitlab/gitlabhq/-/pipeline_schedules'
end
2020-07-28 23:09:34 +05:30
describe Projects :: Settings :: OperationsController , 'routing' do
it 'to #reset_alerting_token' do
expect ( post ( '/gitlab/gitlabhq/-/settings/operations/reset_alerting_token' ) ) . to route_to ( 'projects/settings/operations#reset_alerting_token' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
end
end
2019-09-04 21:01:54 +05:30
describe Projects :: Settings :: RepositoryController , 'routing' do
it 'to #show' do
expect ( get ( '/gitlab/gitlabhq/-/settings/repository' ) ) . to route_to ( 'projects/settings/repository#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
end
2020-04-25 10:58:03 +05:30
it 'to repository#create_deploy_token' do
expect ( post ( 'gitlab/gitlabhq/-/settings/ci_cd/deploy_token/create' ) ) . to route_to ( 'projects/settings/repository#create_deploy_token' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
2021-01-03 14:25:43 +05:30
end
end
describe Projects :: Settings :: CiCdController , 'routing' do
it " to # runner_setup_scripts " do
expect ( get ( " /gitlab/gitlabhq/-/settings/ci_cd/runner_setup_scripts " ) ) . to route_to ( 'projects/settings/ci_cd#runner_setup_scripts' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
2020-04-08 14:13:33 +05:30
end
2019-09-04 21:01:54 +05:30
end
2022-08-27 11:52:29 +05:30
describe Projects :: Settings :: PackagesAndRegistriesController , 'routing' do
it 'to #show' do
expect ( get ( '/gitlab/gitlabhq/-/settings/packages_and_registries' ) ) . to route_to ( 'projects/settings/packages_and_registries#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
end
it 'to #cleanup_tags' do
expect ( get ( 'gitlab/gitlabhq/-/settings/packages_and_registries/cleanup_image_tags' ) ) . to route_to ( 'projects/settings/packages_and_registries#cleanup_tags' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
end
end
2022-07-23 23:45:48 +05:30
describe Projects :: Settings :: IntegrationsController , 'routing' do
it 'to #index' do
expect ( get ( '/gitlab/gitlabhq/-/settings/integrations' ) ) . to route_to ( 'projects/settings/integrations#index' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
end
it 'to #edit' do
expect ( get ( '/gitlab/gitlabhq/-/settings/integrations/acme/edit' ) ) . to route_to ( 'projects/settings/integrations#edit' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'acme' )
end
it 'to #update' do
expect ( put ( '/gitlab/gitlabhq/-/settings/integrations/acme' ) ) . to route_to ( 'projects/settings/integrations#update' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'acme' )
end
it 'to #test' do
expect ( put ( '/gitlab/gitlabhq/-/settings/integrations/acme/test' ) ) . to route_to ( 'projects/settings/integrations#test' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : 'acme' )
end
end
describe Projects :: Settings :: IntegrationHookLogsController do
it 'to #show' do
expect ( get ( '/gitlab/gitlabhq/-/settings/integrations/acme/hook_logs/log' ) ) . to route_to ( 'projects/settings/integration_hook_logs#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , integration_id : 'acme' , id : 'log' )
end
it 'to #retry' do
expect ( post ( '/gitlab/gitlabhq/-/settings/integrations/acme/hook_logs/log/retry' ) ) . to route_to ( 'projects/settings/integration_hook_logs#retry' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , integration_id : 'acme' , id : 'log' )
end
end
2019-07-07 11:18:12 +05:30
describe Projects :: TemplatesController , 'routing' do
describe '#show' do
def show_with_template_type ( template_type )
" /gitlab/gitlabhq/templates/ #{ template_type } /template_name "
end
it 'routes when :template_type is `merge_request`' do
expect ( get ( show_with_template_type ( 'merge_request' ) ) ) . to route_to ( 'projects/templates#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , template_type : 'merge_request' , key : 'template_name' , format : 'json' )
end
it 'routes when :template_type is `issue`' do
expect ( get ( show_with_template_type ( 'issue' ) ) ) . to route_to ( 'projects/templates#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , template_type : 'issue' , key : 'template_name' , format : 'json' )
end
it 'routes to application#route_not_found when :template_type is unknown' do
expect ( get ( show_with_template_type ( 'invalid' ) ) ) . to route_to ( 'application#route_not_found' , unmatched_route : 'gitlab/gitlabhq/templates/invalid/template_name' )
end
end
end
2019-09-30 21:07:59 +05:30
describe Projects :: DeployTokensController , 'routing' do
it 'routes to deploy_tokens#revoke' do
expect ( put ( " /gitlab/gitlabhq/-/deploy_tokens/1/revoke " ) ) . to route_to ( " projects/deploy_tokens # revoke " , namespace_id : 'gitlab' , project_id : 'gitlabhq' , id : '1' )
end
end
2019-12-26 22:10:19 +05:30
2021-09-30 23:02:18 +05:30
describe Projects :: ServicePingController , 'routing' do
it 'routes to service_ping#web_ide_clientside_preview' do
expect ( post ( '/gitlab/gitlabhq/service_ping/web_ide_clientside_preview' ) ) . to route_to ( 'projects/service_ping#web_ide_clientside_preview' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
2019-12-26 22:10:19 +05:30
end
2020-05-24 23:13:21 +05:30
2021-09-30 23:02:18 +05:30
it 'routes to service_ping#web_ide_pipelines_count' do
expect ( post ( '/gitlab/gitlabhq/service_ping/web_ide_pipelines_count' ) ) . to route_to ( 'projects/service_ping#web_ide_pipelines_count' , namespace_id : 'gitlab' , project_id : 'gitlabhq' )
2020-05-24 23:13:21 +05:30
end
2019-12-26 22:10:19 +05:30
end
2020-01-01 13:55:28 +05:30
describe Projects :: EnvironmentsController , 'routing' do
describe 'legacy routing' do
2021-03-08 18:12:59 +05:30
it_behaves_like 'redirecting a legacy path' , " /gitlab/gitlabhq/environments " , " /gitlab/gitlabhq/-/environments "
2020-01-01 13:55:28 +05:30
end
end
describe Projects :: ClustersController , 'routing' do
describe 'legacy routing' do
2021-03-08 18:12:59 +05:30
it_behaves_like 'redirecting a legacy path' , " /gitlab/gitlabhq/clusters " , " /gitlab/gitlabhq/-/clusters "
2020-01-01 13:55:28 +05:30
end
end
describe Projects :: ErrorTrackingController , 'routing' do
describe 'legacy routing' do
2021-03-08 18:12:59 +05:30
it_behaves_like 'redirecting a legacy path' , " /gitlab/gitlabhq/error_tracking " , " /gitlab/gitlabhq/-/error_tracking "
2020-01-01 13:55:28 +05:30
end
end
describe Projects :: Serverless , 'routing' do
describe 'legacy routing' do
2021-03-08 18:12:59 +05:30
it_behaves_like 'redirecting a legacy path' , " /gitlab/gitlabhq/serverless " , " /gitlab/gitlabhq/-/serverless "
2020-01-01 13:55:28 +05:30
end
end
2020-05-24 23:13:21 +05:30
describe Projects :: DesignManagement :: Designs :: RawImagesController , 'routing' do
it 'to #show' do
expect ( get ( '/gitlab/gitlabhq/-/design_management/designs/1/raw_image' ) ) . to route_to ( 'projects/design_management/designs/raw_images#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , design_id : '1' )
expect ( get ( '/gitlab/gitlabhq/-/design_management/designs/1/c6f00aa50b80887ada30a6fe517670be9f8f9ece/raw_image' ) ) . to route_to ( 'projects/design_management/designs/raw_images#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , design_id : '1' , sha : 'c6f00aa50b80887ada30a6fe517670be9f8f9ece' )
end
end
describe Projects :: DesignManagement :: Designs :: ResizedImageController , 'routing' do
it 'to #show' do
expect ( get ( '/gitlab/gitlabhq/-/design_management/designs/1/resized_image/v432x230' ) ) . to route_to ( 'projects/design_management/designs/resized_image#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , design_id : '1' , id : 'v432x230' )
expect ( get ( '/gitlab/gitlabhq/-/design_management/designs/1/c6f00aa50b80887ada30a6fe517670be9f8f9ece/resized_image/v432x230' ) ) . to route_to ( 'projects/design_management/designs/resized_image#show' , namespace_id : 'gitlab' , project_id : 'gitlabhq' , design_id : '1' , sha : 'c6f00aa50b80887ada30a6fe517670be9f8f9ece' , id : 'v432x230' )
expect ( get ( '/gitlab/gitlabhq/-/design_management/designs/1/invalid/resized_image/v432x230' ) ) . to route_to ( 'application#route_not_found' , unmatched_route : 'gitlab/gitlabhq/-/design_management/designs/1/invalid/resized_image/v432x230' )
expect ( get ( '/gitlab/gitlabhq/-/design_management/designs/1/c6f00aa50b80887ada30a6fe517670be9f8f9ece/resized_image/small' ) ) . to route_to ( 'application#route_not_found' , unmatched_route : 'gitlab/gitlabhq/-/design_management/designs/1/c6f00aa50b80887ada30a6fe517670be9f8f9ece/resized_image/small' )
end
end
2020-07-28 23:09:34 +05:30
describe Projects :: Snippets :: BlobsController , " routing " do
it " to # raw " do
expect ( get ( '/gitlab/gitlabhq/-/snippets/1/raw/master/lib/version.rb' ) )
2022-10-11 01:57:18 +05:30
. to route_to ( 'projects/snippets/blobs#raw' ,
namespace_id : 'gitlab' , project_id : 'gitlabhq' , snippet_id : '1' , ref : 'master' , path : 'lib/version.rb' )
2020-07-28 23:09:34 +05:30
end
end
2020-10-24 23:57:45 +05:30
describe Projects :: MetricsDashboardController , 'routing' do
it 'routes to #show with no dashboard_path and no page' do
expect ( get : " /gitlab/gitlabhq/-/metrics " ) . to route_to (
" projects/metrics_dashboard # show " ,
** base_params
)
end
it 'routes to #show with only dashboard_path' do
expect ( get : " /gitlab/gitlabhq/-/metrics/dashboard1.yml " ) . to route_to (
" projects/metrics_dashboard # show " ,
dashboard_path : 'dashboard1.yml' ,
** base_params
)
end
it 'routes to #show with only page' do
expect ( get : " /gitlab/gitlabhq/-/metrics/panel/new " ) . to route_to (
" projects/metrics_dashboard # show " ,
page : 'panel/new' ,
** base_params
)
end
it 'routes to #show with dashboard_path and page' do
expect ( get : " /gitlab/gitlabhq/-/metrics/config%2Fprometheus%2Fcommon_metrics.yml/panel/new " ) . to route_to (
" projects/metrics_dashboard # show " ,
dashboard_path : 'config/prometheus/common_metrics.yml' ,
page : 'panel/new' ,
** base_params
)
end
it 'routes to 404 with invalid page' do
expect ( get : " /gitlab/gitlabhq/-/metrics/invalid_page " ) . to route_to (
'application#route_not_found' ,
unmatched_route : 'gitlab/gitlabhq/-/metrics/invalid_page'
)
end
2022-06-21 17:19:12 +05:30
it 'routes to 404 without format for invalid page' do
expect ( get : " /gitlab/gitlabhq/-/metrics/invalid_page.md " ) . to route_to (
'application#route_not_found' ,
unmatched_route : 'gitlab/gitlabhq/-/metrics/invalid_page.md'
)
end
2020-10-24 23:57:45 +05:30
it 'routes to 404 with invalid dashboard_path' do
expect ( get : " /gitlab/gitlabhq/-/metrics/invalid_dashboard " ) . to route_to (
'application#route_not_found' ,
unmatched_route : 'gitlab/gitlabhq/-/metrics/invalid_dashboard'
)
end
it 'routes to 404 with invalid dashboard_path and valid page' do
expect ( get : " /gitlab/gitlabhq/-/metrics/dashboard1/panel/new " ) . to route_to (
'application#route_not_found' ,
unmatched_route : 'gitlab/gitlabhq/-/metrics/dashboard1/panel/new'
)
end
it 'routes to 404 with valid dashboard_path and invalid page' do
expect ( get : " /gitlab/gitlabhq/-/metrics/dashboard1.yml/invalid_page " ) . to route_to (
'application#route_not_found' ,
unmatched_route : 'gitlab/gitlabhq/-/metrics/dashboard1.yml/invalid_page'
)
end
end
2021-02-04 15:43:07 +05:30
context 'with a non-existent project' do
it 'routes to 404 with get request' do
expect ( get : " /gitlab/not_exist " ) . to route_to (
'application#route_not_found' ,
unmatched_route : 'gitlab/not_exist'
)
end
it 'routes to 404 with delete request' do
expect ( delete : " /gitlab/not_exist " ) . to route_to (
'application#route_not_found' ,
namespace_id : 'gitlab' ,
project_id : 'not_exist'
)
end
it 'routes to 404 with post request' do
expect ( post : " /gitlab/not_exist " ) . to route_to (
'application#route_not_found' ,
namespace_id : 'gitlab' ,
project_id : 'not_exist'
)
end
it 'routes to 404 with put request' do
expect ( put : " /gitlab/not_exist " ) . to route_to (
'application#route_not_found' ,
namespace_id : 'gitlab' ,
project_id : 'not_exist'
)
end
context 'with route to some action' do
it 'routes to 404 with get request to' do
expect ( get : " /gitlab/not_exist/some_action " ) . to route_to (
'application#route_not_found' ,
unmatched_route : 'gitlab/not_exist/some_action'
)
end
it 'routes to 404 with delete request' do
expect ( delete : " /gitlab/not_exist/some_action " ) . to route_to (
'application#route_not_found' ,
namespace_id : 'gitlab' ,
project_id : 'not_exist' ,
all : 'some_action'
)
end
it 'routes to 404 with post request' do
expect ( post : " /gitlab/not_exist/some_action " ) . to route_to (
'application#route_not_found' ,
namespace_id : 'gitlab' ,
project_id : 'not_exist' ,
all : 'some_action'
)
end
it 'routes to 404 with put request' do
expect ( put : " /gitlab/not_exist/some_action " ) . to route_to (
'application#route_not_found' ,
namespace_id : 'gitlab' ,
project_id : 'not_exist' ,
all : 'some_action'
)
end
end
end
2014-09-02 18:07:02 +05:30
end