debian-mirror-gitlab/spec/support/shared_examples/milestone_tabs_examples.rb

85 lines
2.1 KiB
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
shared_examples 'milestone tabs' do
def go(path, extra_params = {})
2017-09-10 17:25:29 +05:30
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-08-17 22:00:37 +05:30
2019-02-15 15:39:39 +05:30
get path, params: params.merge(extra_params)
2017-08-17 22:00:37 +05:30
end
describe '#merge_requests' do
context 'as html' do
2017-09-10 17:25:29 +05:30
before do
go(:merge_requests, format: 'html')
end
2017-08-17 22:00:37 +05:30
it 'redirects to milestone#show' do
expect(response).to redirect_to(milestone_path)
end
end
context 'as json' do
2017-09-10 17:25:29 +05:30
before do
go(:merge_requests, format: 'json')
end
2017-08-17 22:00:37 +05:30
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-09-10 17:25:29 +05:30
before do
go(:participants, format: 'html')
end
2017-08-17 22:00:37 +05:30
it 'redirects to milestone#show' do
expect(response).to redirect_to(milestone_path)
end
end
context 'as json' do
2017-09-10 17:25:29 +05:30
before do
go(:participants, format: 'json')
end
2017-08-17 22:00:37 +05:30
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-09-10 17:25:29 +05:30
before do
go(:labels, format: 'html')
end
2017-08-17 22:00:37 +05:30
it 'redirects to milestone#show' do
expect(response).to redirect_to(milestone_path)
end
end
context 'as json' do
2017-09-10 17:25:29 +05:30
before do
go(:labels, format: 'json')
end
2017-08-17 22:00:37 +05:30
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