Fix Error 500 when creating global milestones with Unicode characters
Two issues:
1. The constraints in the resources were incorrect. Here's what it was before:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
In this case, id is actually the title of the milestone, which can be anything at the moment.
After:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[^\/]+/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
2. `parameterize` would strip all Unicode characters, leaving a blank string. Rails would report something like:
ActionView::Template::Error (No route matches {:action=>"show", :controller=>"groups/milestones", :group_id=>#<Group id: 48, name: "ops-dev", path: "ops-dev", owner_id: nil, created_at: "2015-11-15 08:55:30", updated_at: "2015-12-02 06:23:26", type: "Group", description: "", avatar: "sha1.c71e73d51af1865c1bbbf6208e10044d46c9bb93.png", public: false>, :id=>"", :title=>"肯定不是中文的问题"} missing required keys: [:id]):
This change uses the babosa library to create a better slug, which surprisingly
isn't actually used by the global milestone controllers. Instead, they use the
title passed as a query string for some reason.
Closes https://github.com/gitlabhq/gitlabhq/issues/9881
Fix constraints
2015-12-04 02:33:52 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Groups::MilestonesController do
|
|
|
|
let(:group) { create(:group) }
|
2017-08-02 15:55:11 -04:00
|
|
|
let!(:project) { create(:project, group: group) }
|
|
|
|
let!(:project2) { create(:project, group: group) }
|
Fix Error 500 when creating global milestones with Unicode characters
Two issues:
1. The constraints in the resources were incorrect. Here's what it was before:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
In this case, id is actually the title of the milestone, which can be anything at the moment.
After:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[^\/]+/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
2. `parameterize` would strip all Unicode characters, leaving a blank string. Rails would report something like:
ActionView::Template::Error (No route matches {:action=>"show", :controller=>"groups/milestones", :group_id=>#<Group id: 48, name: "ops-dev", path: "ops-dev", owner_id: nil, created_at: "2015-11-15 08:55:30", updated_at: "2015-12-02 06:23:26", type: "Group", description: "", avatar: "sha1.c71e73d51af1865c1bbbf6208e10044d46c9bb93.png", public: false>, :id=>"", :title=>"肯定不是中文的问题"} missing required keys: [:id]):
This change uses the babosa library to create a better slug, which surprisingly
isn't actually used by the global milestone controllers. Instead, they use the
title passed as a query string for some reason.
Closes https://github.com/gitlabhq/gitlabhq/issues/9881
Fix constraints
2015-12-04 02:33:52 -05:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:title) { '肯定不是中文的问题' }
|
2017-04-26 06:32:21 -04:00
|
|
|
let(:milestone) do
|
|
|
|
project_milestone = create(:milestone, project: project)
|
|
|
|
|
|
|
|
GroupMilestone.build(
|
|
|
|
group,
|
|
|
|
[project],
|
|
|
|
project_milestone.title
|
|
|
|
)
|
|
|
|
end
|
|
|
|
let(:milestone_path) { group_milestone_path(group, milestone.safe_title, title: milestone.title) }
|
Fix Error 500 when creating global milestones with Unicode characters
Two issues:
1. The constraints in the resources were incorrect. Here's what it was before:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
In this case, id is actually the title of the milestone, which can be anything at the moment.
After:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[^\/]+/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
2. `parameterize` would strip all Unicode characters, leaving a blank string. Rails would report something like:
ActionView::Template::Error (No route matches {:action=>"show", :controller=>"groups/milestones", :group_id=>#<Group id: 48, name: "ops-dev", path: "ops-dev", owner_id: nil, created_at: "2015-11-15 08:55:30", updated_at: "2015-12-02 06:23:26", type: "Group", description: "", avatar: "sha1.c71e73d51af1865c1bbbf6208e10044d46c9bb93.png", public: false>, :id=>"", :title=>"肯定不是中文的问题"} missing required keys: [:id]):
This change uses the babosa library to create a better slug, which surprisingly
isn't actually used by the global milestone controllers. Instead, they use the
title passed as a query string for some reason.
Closes https://github.com/gitlabhq/gitlabhq/issues/9881
Fix constraints
2015-12-04 02:33:52 -05:00
|
|
|
|
2017-07-07 11:08:49 -04:00
|
|
|
let(:milestone_params) do
|
|
|
|
{
|
|
|
|
title: title,
|
|
|
|
start_date: Date.today,
|
|
|
|
due_date: 1.month.from_now.to_date
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
Fix Error 500 when creating global milestones with Unicode characters
Two issues:
1. The constraints in the resources were incorrect. Here's what it was before:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
In this case, id is actually the title of the milestone, which can be anything at the moment.
After:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[^\/]+/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
2. `parameterize` would strip all Unicode characters, leaving a blank string. Rails would report something like:
ActionView::Template::Error (No route matches {:action=>"show", :controller=>"groups/milestones", :group_id=>#<Group id: 48, name: "ops-dev", path: "ops-dev", owner_id: nil, created_at: "2015-11-15 08:55:30", updated_at: "2015-12-02 06:23:26", type: "Group", description: "", avatar: "sha1.c71e73d51af1865c1bbbf6208e10044d46c9bb93.png", public: false>, :id=>"", :title=>"肯定不是中文的问题"} missing required keys: [:id]):
This change uses the babosa library to create a better slug, which surprisingly
isn't actually used by the global milestone controllers. Instead, they use the
title passed as a query string for some reason.
Closes https://github.com/gitlabhq/gitlabhq/issues/9881
Fix constraints
2015-12-04 02:33:52 -05:00
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
group.add_owner(user)
|
2017-12-22 03:18:28 -05:00
|
|
|
project.add_master(user)
|
Fix Error 500 when creating global milestones with Unicode characters
Two issues:
1. The constraints in the resources were incorrect. Here's what it was before:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
In this case, id is actually the title of the milestone, which can be anything at the moment.
After:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[^\/]+/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
2. `parameterize` would strip all Unicode characters, leaving a blank string. Rails would report something like:
ActionView::Template::Error (No route matches {:action=>"show", :controller=>"groups/milestones", :group_id=>#<Group id: 48, name: "ops-dev", path: "ops-dev", owner_id: nil, created_at: "2015-11-15 08:55:30", updated_at: "2015-12-02 06:23:26", type: "Group", description: "", avatar: "sha1.c71e73d51af1865c1bbbf6208e10044d46c9bb93.png", public: false>, :id=>"", :title=>"肯定不是中文的问题"} missing required keys: [:id]):
This change uses the babosa library to create a better slug, which surprisingly
isn't actually used by the global milestone controllers. Instead, they use the
title passed as a query string for some reason.
Closes https://github.com/gitlabhq/gitlabhq/issues/9881
Fix constraints
2015-12-04 02:33:52 -05:00
|
|
|
end
|
|
|
|
|
2017-07-07 11:08:49 -04:00
|
|
|
describe '#index' do
|
2017-06-22 20:29:08 -04:00
|
|
|
it 'shows group milestones page' do
|
|
|
|
get :index, group_id: group.to_param
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2017-06-22 20:29:08 -04:00
|
|
|
end
|
|
|
|
|
2017-07-07 11:08:49 -04:00
|
|
|
context 'as JSON' do
|
|
|
|
let!(:milestone) { create(:milestone, group: group, title: 'group milestone') }
|
|
|
|
let!(:legacy_milestone1) { create(:milestone, project: project, title: 'legacy') }
|
|
|
|
let!(:legacy_milestone2) { create(:milestone, project: project2, title: 'legacy') }
|
2017-06-22 20:29:08 -04:00
|
|
|
|
2017-07-07 11:08:49 -04:00
|
|
|
it 'lists legacy group milestones and group milestones' do
|
|
|
|
get :index, group_id: group.to_param, format: :json
|
|
|
|
|
|
|
|
milestones = JSON.parse(response.body)
|
|
|
|
|
|
|
|
expect(milestones.count).to eq(2)
|
|
|
|
expect(milestones.first["title"]).to eq("group milestone")
|
|
|
|
expect(milestones.second["title"]).to eq("legacy")
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2017-07-07 11:08:49 -04:00
|
|
|
expect(response.content_type).to eq 'application/json'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#show' do
|
|
|
|
let(:milestone1) { create(:milestone, project: project, title: 'legacy') }
|
|
|
|
let(:milestone2) { create(:milestone, project: project, title: 'legacy') }
|
|
|
|
let(:group_milestone) { create(:milestone, group: group) }
|
|
|
|
|
|
|
|
context 'when there is a title parameter' do
|
|
|
|
it 'searchs for a legacy group milestone' do
|
|
|
|
expect(GlobalMilestone).to receive(:build)
|
|
|
|
expect(Milestone).not_to receive(:find_by_iid)
|
|
|
|
|
|
|
|
get :show, group_id: group.to_param, id: title, title: milestone1.safe_title
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when there is not a title parameter' do
|
|
|
|
it 'searchs for a group milestone' do
|
|
|
|
expect(GlobalMilestone).not_to receive(:build)
|
|
|
|
expect(Milestone).to receive(:find_by_iid)
|
|
|
|
|
|
|
|
get :show, group_id: group.to_param, id: group_milestone.id
|
|
|
|
end
|
2017-06-22 20:29:08 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-26 06:32:21 -04:00
|
|
|
it_behaves_like 'milestone tabs'
|
|
|
|
|
Fix Error 500 when creating global milestones with Unicode characters
Two issues:
1. The constraints in the resources were incorrect. Here's what it was before:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
In this case, id is actually the title of the milestone, which can be anything at the moment.
After:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[^\/]+/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
2. `parameterize` would strip all Unicode characters, leaving a blank string. Rails would report something like:
ActionView::Template::Error (No route matches {:action=>"show", :controller=>"groups/milestones", :group_id=>#<Group id: 48, name: "ops-dev", path: "ops-dev", owner_id: nil, created_at: "2015-11-15 08:55:30", updated_at: "2015-12-02 06:23:26", type: "Group", description: "", avatar: "sha1.c71e73d51af1865c1bbbf6208e10044d46c9bb93.png", public: false>, :id=>"", :title=>"肯定不是中文的问题"} missing required keys: [:id]):
This change uses the babosa library to create a better slug, which surprisingly
isn't actually used by the global milestone controllers. Instead, they use the
title passed as a query string for some reason.
Closes https://github.com/gitlabhq/gitlabhq/issues/9881
Fix constraints
2015-12-04 02:33:52 -05:00
|
|
|
describe "#create" do
|
2016-07-25 14:16:19 -04:00
|
|
|
it "creates group milestone with Chinese title" do
|
Fix Error 500 when creating global milestones with Unicode characters
Two issues:
1. The constraints in the resources were incorrect. Here's what it was before:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
In this case, id is actually the title of the milestone, which can be anything at the moment.
After:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[^\/]+/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
2. `parameterize` would strip all Unicode characters, leaving a blank string. Rails would report something like:
ActionView::Template::Error (No route matches {:action=>"show", :controller=>"groups/milestones", :group_id=>#<Group id: 48, name: "ops-dev", path: "ops-dev", owner_id: nil, created_at: "2015-11-15 08:55:30", updated_at: "2015-12-02 06:23:26", type: "Group", description: "", avatar: "sha1.c71e73d51af1865c1bbbf6208e10044d46c9bb93.png", public: false>, :id=>"", :title=>"肯定不是中文的问题"} missing required keys: [:id]):
This change uses the babosa library to create a better slug, which surprisingly
isn't actually used by the global milestone controllers. Instead, they use the
title passed as a query string for some reason.
Closes https://github.com/gitlabhq/gitlabhq/issues/9881
Fix constraints
2015-12-04 02:33:52 -05:00
|
|
|
post :create,
|
2017-05-18 19:23:05 -04:00
|
|
|
group_id: group.to_param,
|
2017-07-07 11:08:49 -04:00
|
|
|
milestone: milestone_params
|
Fix Error 500 when creating global milestones with Unicode characters
Two issues:
1. The constraints in the resources were incorrect. Here's what it was before:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
In this case, id is actually the title of the milestone, which can be anything at the moment.
After:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[^\/]+/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
2. `parameterize` would strip all Unicode characters, leaving a blank string. Rails would report something like:
ActionView::Template::Error (No route matches {:action=>"show", :controller=>"groups/milestones", :group_id=>#<Group id: 48, name: "ops-dev", path: "ops-dev", owner_id: nil, created_at: "2015-11-15 08:55:30", updated_at: "2015-12-02 06:23:26", type: "Group", description: "", avatar: "sha1.c71e73d51af1865c1bbbf6208e10044d46c9bb93.png", public: false>, :id=>"", :title=>"肯定不是中文的问题"} missing required keys: [:id]):
This change uses the babosa library to create a better slug, which surprisingly
isn't actually used by the global milestone controllers. Instead, they use the
title passed as a query string for some reason.
Closes https://github.com/gitlabhq/gitlabhq/issues/9881
Fix constraints
2015-12-04 02:33:52 -05:00
|
|
|
|
2017-07-07 11:08:49 -04:00
|
|
|
milestone = Milestone.find_by_title(title)
|
|
|
|
|
|
|
|
expect(response).to redirect_to(group_milestone_path(group, milestone.iid))
|
|
|
|
expect(milestone.group_id).to eq(group.id)
|
|
|
|
expect(milestone.due_date).to eq(milestone_params[:due_date])
|
|
|
|
expect(milestone.start_date).to eq(milestone_params[:start_date])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "#update" do
|
|
|
|
let(:milestone) { create(:milestone, group: group) }
|
|
|
|
|
|
|
|
it "updates group milestone" do
|
|
|
|
milestone_params[:title] = "title changed"
|
|
|
|
|
|
|
|
put :update,
|
|
|
|
id: milestone.iid,
|
|
|
|
group_id: group.to_param,
|
|
|
|
milestone: milestone_params
|
|
|
|
|
|
|
|
milestone.reload
|
|
|
|
expect(response).to redirect_to(group_milestone_path(group, milestone.iid))
|
|
|
|
expect(milestone.title).to eq("title changed")
|
Fix Error 500 when creating global milestones with Unicode characters
Two issues:
1. The constraints in the resources were incorrect. Here's what it was before:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
In this case, id is actually the title of the milestone, which can be anything at the moment.
After:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[^\/]+/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
2. `parameterize` would strip all Unicode characters, leaving a blank string. Rails would report something like:
ActionView::Template::Error (No route matches {:action=>"show", :controller=>"groups/milestones", :group_id=>#<Group id: 48, name: "ops-dev", path: "ops-dev", owner_id: nil, created_at: "2015-11-15 08:55:30", updated_at: "2015-12-02 06:23:26", type: "Group", description: "", avatar: "sha1.c71e73d51af1865c1bbbf6208e10044d46c9bb93.png", public: false>, :id=>"", :title=>"肯定不是中文的问题"} missing required keys: [:id]):
This change uses the babosa library to create a better slug, which surprisingly
isn't actually used by the global milestone controllers. Instead, they use the
title passed as a query string for some reason.
Closes https://github.com/gitlabhq/gitlabhq/issues/9881
Fix constraints
2015-12-04 02:33:52 -05:00
|
|
|
end
|
2016-03-31 15:11:49 -04:00
|
|
|
|
2017-07-07 11:08:49 -04:00
|
|
|
context "legacy group milestones" do
|
|
|
|
let!(:milestone1) { create(:milestone, project: project, title: 'legacy milestone', description: "old description") }
|
|
|
|
let!(:milestone2) { create(:milestone, project: project2, title: 'legacy milestone', description: "old description") }
|
|
|
|
|
|
|
|
it "updates only group milestones state" do
|
|
|
|
milestone_params[:title] = "title changed"
|
|
|
|
milestone_params[:description] = "description changed"
|
|
|
|
milestone_params[:state_event] = "close"
|
|
|
|
|
|
|
|
put :update,
|
|
|
|
id: milestone1.title.to_slug.to_s,
|
|
|
|
group_id: group.to_param,
|
|
|
|
milestone: milestone_params,
|
|
|
|
title: milestone1.title
|
|
|
|
|
|
|
|
expect(response).to redirect_to(group_milestone_path(group, milestone1.safe_title, title: milestone1.title))
|
|
|
|
|
|
|
|
[milestone1, milestone2].each do |milestone|
|
|
|
|
milestone.reload
|
|
|
|
expect(milestone.title).to eq("legacy milestone")
|
|
|
|
expect(milestone.description).to eq("old description")
|
|
|
|
expect(milestone.state).to eq("closed")
|
|
|
|
end
|
|
|
|
end
|
2016-03-31 15:11:49 -04:00
|
|
|
end
|
Fix Error 500 when creating global milestones with Unicode characters
Two issues:
1. The constraints in the resources were incorrect. Here's what it was before:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
In this case, id is actually the title of the milestone, which can be anything at the moment.
After:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[^\/]+/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
2. `parameterize` would strip all Unicode characters, leaving a blank string. Rails would report something like:
ActionView::Template::Error (No route matches {:action=>"show", :controller=>"groups/milestones", :group_id=>#<Group id: 48, name: "ops-dev", path: "ops-dev", owner_id: nil, created_at: "2015-11-15 08:55:30", updated_at: "2015-12-02 06:23:26", type: "Group", description: "", avatar: "sha1.c71e73d51af1865c1bbbf6208e10044d46c9bb93.png", public: false>, :id=>"", :title=>"肯定不是中文的问题"} missing required keys: [:id]):
This change uses the babosa library to create a better slug, which surprisingly
isn't actually used by the global milestone controllers. Instead, they use the
title passed as a query string for some reason.
Closes https://github.com/gitlabhq/gitlabhq/issues/9881
Fix constraints
2015-12-04 02:33:52 -05:00
|
|
|
end
|
2017-05-18 19:23:05 -04:00
|
|
|
|
|
|
|
describe '#ensure_canonical_path' do
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for a GET request' do
|
|
|
|
context 'when requesting the canonical path' do
|
|
|
|
context 'non-show path' do
|
|
|
|
context 'with exactly matching casing' do
|
|
|
|
it 'does not redirect' do
|
|
|
|
get :index, group_id: group.to_param
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).not_to have_gitlab_http_status(301)
|
2017-05-18 19:23:05 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with different casing' do
|
|
|
|
it 'redirects to the correct casing' do
|
|
|
|
get :index, group_id: group.to_param.upcase
|
|
|
|
|
|
|
|
expect(response).to redirect_to(group_milestones_path(group.to_param))
|
|
|
|
expect(controller).not_to set_flash[:notice]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'show path' do
|
|
|
|
context 'with exactly matching casing' do
|
|
|
|
it 'does not redirect' do
|
|
|
|
get :show, group_id: group.to_param, id: title
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).not_to have_gitlab_http_status(301)
|
2017-05-18 19:23:05 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with different casing' do
|
|
|
|
it 'redirects to the correct casing' do
|
|
|
|
get :show, group_id: group.to_param.upcase, id: title
|
|
|
|
|
|
|
|
expect(response).to redirect_to(group_milestone_path(group.to_param, title))
|
|
|
|
expect(controller).not_to set_flash[:notice]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when requesting a redirected path' do
|
|
|
|
let(:redirect_route) { group.redirect_routes.create(path: 'old-path') }
|
|
|
|
|
|
|
|
it 'redirects to the canonical path' do
|
|
|
|
get :merge_requests, group_id: redirect_route.path, id: title
|
|
|
|
|
|
|
|
expect(response).to redirect_to(merge_requests_group_milestone_path(group.to_param, title))
|
|
|
|
expect(controller).to set_flash[:notice].to(group_moved_message(redirect_route, group))
|
|
|
|
end
|
|
|
|
|
|
|
|
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 :merge_requests, group_id: redirect_route.path, id: title
|
|
|
|
|
|
|
|
expect(response).to redirect_to(merge_requests_group_milestone_path(group.to_param, title))
|
|
|
|
expect(controller).to set_flash[:notice].to(group_moved_message(redirect_route, group))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the old group path is substring of groups' do
|
|
|
|
# I.e. /groups/oups should not become /grfoo/oups
|
|
|
|
let(:redirect_route) { group.redirect_routes.create(path: 'oups') }
|
|
|
|
|
|
|
|
it 'does not modify the /groups part of the path' do
|
|
|
|
get :merge_requests, group_id: redirect_route.path, id: title
|
|
|
|
|
|
|
|
expect(response).to redirect_to(merge_requests_group_milestone_path(group.to_param, title))
|
|
|
|
expect(controller).to set_flash[:notice].to(group_moved_message(redirect_route, group))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the old group path is substring of groups plus the new path' do
|
|
|
|
# I.e. /groups/oups/oup should not become /grfoos
|
|
|
|
let(:redirect_route) { group.redirect_routes.create(path: 'oups/oup') }
|
|
|
|
|
|
|
|
it 'does not modify the /groups part of the path' do
|
|
|
|
get :merge_requests, group_id: redirect_route.path, id: title
|
|
|
|
|
|
|
|
expect(response).to redirect_to(merge_requests_group_milestone_path(group.to_param, title))
|
|
|
|
expect(controller).to set_flash[:notice].to(group_moved_message(redirect_route, group))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for a non-GET request' do
|
|
|
|
context 'when requesting the canonical path with different casing' do
|
|
|
|
it 'does not 404' do
|
|
|
|
post :create,
|
|
|
|
group_id: group.to_param,
|
2017-07-07 11:08:49 -04:00
|
|
|
milestone: { title: title }
|
2017-05-18 19:23:05 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).not_to have_gitlab_http_status(404)
|
2017-05-18 19:23:05 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not redirect to the correct casing' do
|
|
|
|
post :create,
|
|
|
|
group_id: group.to_param,
|
2017-07-07 11:08:49 -04:00
|
|
|
milestone: { title: title }
|
2017-05-18 19:23:05 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).not_to have_gitlab_http_status(301)
|
2017-05-18 19:23:05 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when requesting a redirected path' do
|
|
|
|
let(:redirect_route) { group.redirect_routes.create(path: 'old-path') }
|
|
|
|
|
|
|
|
it 'returns not found' do
|
|
|
|
post :create,
|
|
|
|
group_id: redirect_route.path,
|
2017-07-07 11:08:49 -04:00
|
|
|
milestone: { title: title }
|
2017-05-18 19:23:05 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(404)
|
2017-05-18 19:23:05 -04:00
|
|
|
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
|
Fix Error 500 when creating global milestones with Unicode characters
Two issues:
1. The constraints in the resources were incorrect. Here's what it was before:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
In this case, id is actually the title of the milestone, which can be anything at the moment.
After:
```
group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[^\/]+/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
```
2. `parameterize` would strip all Unicode characters, leaving a blank string. Rails would report something like:
ActionView::Template::Error (No route matches {:action=>"show", :controller=>"groups/milestones", :group_id=>#<Group id: 48, name: "ops-dev", path: "ops-dev", owner_id: nil, created_at: "2015-11-15 08:55:30", updated_at: "2015-12-02 06:23:26", type: "Group", description: "", avatar: "sha1.c71e73d51af1865c1bbbf6208e10044d46c9bb93.png", public: false>, :id=>"", :title=>"肯定不是中文的问题"} missing required keys: [:id]):
This change uses the babosa library to create a better slug, which surprisingly
isn't actually used by the global milestone controllers. Instead, they use the
title passed as a query string for some reason.
Closes https://github.com/gitlabhq/gitlabhq/issues/9881
Fix constraints
2015-12-04 02:33:52 -05:00
|
|
|
end
|