Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
spec/controllers/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