Skip to content
代码片段 群组 项目
提交 41570d14 编辑于 作者: Roy Zwambag's avatar Roy Zwambag
浏览文件

Merge branch '349267_support_paretheses_for_issue_templates' into 'master'

No related branches found
No related tags found
无相关合并请求
...@@ -8,7 +8,7 @@ class ProjectTemplates < ::API::Base ...@@ -8,7 +8,7 @@ class ProjectTemplates < ::API::Base
# The regex is needed to ensure a period (e.g. agpl-3.0) # The regex is needed to ensure a period (e.g. agpl-3.0)
# isn't confused with a format type. We also need to allow encoded # isn't confused with a format type. We also need to allow encoded
# values (e.g. C%2B%2B for C++), so allow % and + as well. # values (e.g. C%2B%2B for C++), so allow % and + as well.
TEMPLATE_NAMES_ENDPOINT_REQUIREMENTS = API::NAMESPACE_OR_PROJECT_REQUIREMENTS.merge(name: /[\w%.+-]+/) TEMPLATE_NAMES_ENDPOINT_REQUIREMENTS = API::NAMESPACE_OR_PROJECT_REQUIREMENTS.merge(name: /[\w()%.+-]+/)
before { authenticate_non_get! } before { authenticate_non_get! }
......
...@@ -342,6 +342,12 @@ ...@@ -342,6 +342,12 @@
'something valid', 'something valid',
message: 'test 3', message: 'test 3',
branch_name: 'master') branch_name: 'master')
project.repository.create_file(
project.creator,
".gitlab/#{templates_path}/(test).md",
'parentheses',
message: 'test 3',
branch_name: 'master')
project.repository.create_file( project.repository.create_file(
project.creator, project.creator,
".gitlab/#{templates_path}/template_test.md", ".gitlab/#{templates_path}/template_test.md",
......
...@@ -69,7 +69,7 @@ ...@@ -69,7 +69,7 @@
expect(response).to have_gitlab_http_status(:ok) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(response).to match_response_schema('public_api/v4/template_list') expect(response).to match_response_schema('public_api/v4/template_list')
expect(json_response.map { |t| t['key'] }).to match_array(%w[bug feature_proposal template_test]) expect(json_response.map { |t| t['key'] }).to match_array(%w[bug feature_proposal template_test (test)])
end end
it 'returns merge request templates' do it 'returns merge request templates' do
...@@ -78,7 +78,7 @@ ...@@ -78,7 +78,7 @@
expect(response).to have_gitlab_http_status(:ok) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(response).to match_response_schema('public_api/v4/template_list') expect(response).to match_response_schema('public_api/v4/template_list')
expect(json_response.map { |t| t['key'] }).to match_array(%w[bug feature_proposal template_test]) expect(json_response.map { |t| t['key'] }).to match_array(%w[bug feature_proposal template_test (test)])
end end
it 'returns 400 for an unknown template type' do it 'returns 400 for an unknown template type' do
...@@ -171,6 +171,17 @@ ...@@ -171,6 +171,17 @@
expect(json_response['content']).to eq('something valid') expect(json_response['content']).to eq('something valid')
end end
context 'when issue template uses parentheses' do
it 'returns a specific issue template' do
get api("/projects/#{private_project.id}/templates/issues/(test)", developer)
expect(response).to have_gitlab_http_status(:ok)
expect(response).to match_response_schema('public_api/v4/template')
expect(json_response['name']).to eq('(test)')
expect(json_response['content']).to eq('parentheses')
end
end
it 'returns a specific merge request template' do it 'returns a specific merge request template' do
get api("/projects/#{public_project.id}/templates/merge_requests/feature_proposal") get api("/projects/#{public_project.id}/templates/merge_requests/feature_proposal")
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册