debian-mirror-gitlab/spec/views/projects/merge_requests/show.html.haml_spec.rb

61 lines
1.8 KiB
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
2016-09-29 09:46:39 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe 'projects/merge_requests/show.html.haml' do
2021-02-22 17:27:13 +05:30
include Spec::Support::Helpers::Features::MergeRequestHelpers
2020-06-23 00:09:42 +05:30
before do
allow(view).to receive(:experiment_enabled?).and_return(false)
end
2021-02-22 17:27:13 +05:30
context 'when the merge request is open' do
include_context 'open merge request show action'
2019-02-15 15:39:39 +05:30
2021-02-22 17:27:13 +05:30
it 'shows the "Mark as draft" button' do
render
2019-02-15 15:39:39 +05:30
2021-02-22 17:27:13 +05:30
expect(rendered).to have_css('a', visible: true, text: 'Mark as draft')
expect(rendered).to have_css('a', visible: false, text: 'Reopen')
expect(rendered).to have_css('a', visible: true, text: 'Close')
2019-02-15 15:39:39 +05:30
end
end
2016-09-29 09:46:39 +05:30
context 'when the merge request is closed' do
2021-02-22 17:27:13 +05:30
include_context 'closed merge request show action'
describe 'merge request assignee sidebar' do
context 'when assignee is allowed to merge' do
it 'does not show a warning icon' do
closed_merge_request.update!(assignee_id: user.id)
project.add_maintainer(user)
assign(:issuable_sidebar, serialize_issuable_sidebar(user, project, closed_merge_request))
render
expect(rendered).not_to have_css('.merge-icon')
end
end
end
2016-09-29 09:46:39 +05:30
it 'shows the "Reopen" button' do
render
2021-02-22 17:27:13 +05:30
expect(rendered).not_to have_css('a', visible: true, text: 'Mark as draft')
2016-09-29 09:46:39 +05:30
expect(rendered).to have_css('a', visible: true, text: 'Reopen')
expect(rendered).to have_css('a', visible: false, text: 'Close')
end
it 'does not show the "Reopen" button when the source project does not exist' do
unlink_project.execute
closed_merge_request.reload
2021-02-22 17:27:13 +05:30
preload_view_requirements(closed_merge_request, note)
2016-09-29 09:46:39 +05:30
render
expect(rendered).to have_css('a', visible: false, text: 'Reopen')
expect(rendered).to have_css('a', visible: false, text: 'Close')
end
end
end