2017-04-26 06:32:21 -04:00
|
|
|
shared_examples 'milestone tabs' do
|
|
|
|
def go(path, extra_params = {})
|
2017-06-08 12:43:05 -04:00
|
|
|
params =
|
|
|
|
case milestone
|
|
|
|
when DashboardMilestone
|
|
|
|
{ id: milestone.safe_title, title: milestone.title }
|
|
|
|
when GroupMilestone
|
|
|
|
{ group_id: group.to_param, id: milestone.safe_title, title: milestone.title }
|
|
|
|
else
|
|
|
|
{ namespace_id: project.namespace.to_param, project_id: project, id: milestone.iid }
|
|
|
|
end
|
2017-04-26 06:32:21 -04:00
|
|
|
|
|
|
|
get path, params.merge(extra_params)
|
|
|
|
end
|
2017-04-28 06:08:18 -04:00
|
|
|
|
2017-04-26 06:32:21 -04:00
|
|
|
describe '#merge_requests' do
|
|
|
|
context 'as html' do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
go(:merge_requests, format: 'html')
|
|
|
|
end
|
2017-04-26 06:32:21 -04:00
|
|
|
|
|
|
|
it 'redirects to milestone#show' do
|
|
|
|
expect(response).to redirect_to(milestone_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'as json' do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
go(:merge_requests, format: 'json')
|
|
|
|
end
|
2017-04-26 06:32:21 -04:00
|
|
|
|
|
|
|
it 'renders the merge requests tab template to a string' do
|
|
|
|
expect(response).to render_template('shared/milestones/_merge_requests_tab')
|
|
|
|
expect(json_response).to have_key('html')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#participants' do
|
|
|
|
context 'as html' do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
go(:participants, format: 'html')
|
|
|
|
end
|
2017-04-26 06:32:21 -04:00
|
|
|
|
|
|
|
it 'redirects to milestone#show' do
|
|
|
|
expect(response).to redirect_to(milestone_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'as json' do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
go(:participants, format: 'json')
|
|
|
|
end
|
2017-04-26 06:32:21 -04:00
|
|
|
|
|
|
|
it 'renders the participants tab template to a string' do
|
|
|
|
expect(response).to render_template('shared/milestones/_participants_tab')
|
|
|
|
expect(json_response).to have_key('html')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#labels' do
|
|
|
|
context 'as html' do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
go(:labels, format: 'html')
|
|
|
|
end
|
2017-04-26 06:32:21 -04:00
|
|
|
|
|
|
|
it 'redirects to milestone#show' do
|
|
|
|
expect(response).to redirect_to(milestone_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'as json' do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
go(:labels, format: 'json')
|
|
|
|
end
|
2017-04-26 06:32:21 -04:00
|
|
|
|
|
|
|
it 'renders the labels tab template to a string' do
|
|
|
|
expect(response).to render_template('shared/milestones/_labels_tab')
|
|
|
|
expect(json_response).to have_key('html')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|