BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
11f82de1
Commit
11f82de1
authored
May 18, 2017
by
Michael Kozono
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add test that fails without the fix
parent
52aba709
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
groups_controller_spec.rb
spec/controllers/groups_controller_spec.rb
+13
-0
No files found.
spec/controllers/groups_controller_spec.rb
View file @
11f82de1
...
...
@@ -250,6 +250,19 @@ describe GroupsController do
end
end
describe
'ensure_canonical_path'
do
context
'when the old group path is a substring of the scheme or host'
do
let
(
:redirect_route
)
{
group
.
redirect_routes
.
create
(
path:
'http'
)
}
it
'does not modify the requested host'
do
get
:issues
,
id:
redirect_route
.
path
expect
(
response
).
to
redirect_to
(
issues_group_path
(
group
.
to_param
))
expect
(
controller
).
to
set_flash
[
:notice
].
to
(
group_moved_message
(
redirect_route
,
group
))
end
end
end
def
group_moved_message
(
redirect_route
,
group
)
"Group '
#{
redirect_route
.
path
}
' was moved to '
#{
group
.
full_path
}
'. Please update any links and bookmarks that may still have the old path."
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment