2020-12-10 16:10:15 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe 'issue state', :js do
|
|
|
|
let_it_be(:project) { create(:project) }
|
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
project.add_developer(user)
|
|
|
|
sign_in(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples 'issue closed' do |selector|
|
|
|
|
it 'can close an issue' do
|
2021-01-12 22:10:20 -05:00
|
|
|
wait_for_requests
|
|
|
|
|
2020-12-10 16:10:15 -05:00
|
|
|
expect(find('.status-box')).to have_content 'Open'
|
|
|
|
|
|
|
|
within selector do
|
|
|
|
click_button 'Close issue'
|
2021-01-12 22:10:20 -05:00
|
|
|
wait_for_requests
|
2020-12-10 16:10:15 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
expect(find('.status-box')).to have_content 'Closed'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples 'issue reopened' do |selector|
|
|
|
|
it 'can reopen an issue' do
|
2021-01-12 22:10:20 -05:00
|
|
|
wait_for_requests
|
|
|
|
|
2020-12-10 16:10:15 -05:00
|
|
|
expect(find('.status-box')).to have_content 'Closed'
|
|
|
|
|
|
|
|
within selector do
|
|
|
|
click_button 'Reopen issue'
|
2021-01-12 22:10:20 -05:00
|
|
|
wait_for_requests
|
2020-12-10 16:10:15 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
expect(find('.status-box')).to have_content 'Open'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-01-13 10:10:40 -05:00
|
|
|
describe 'when open', quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/297348' do
|
2021-02-03 13:09:25 -05:00
|
|
|
context 'when clicking the top `Close issue` button', :aggregate_failures do
|
2021-02-24 04:11:09 -05:00
|
|
|
let(:open_issue) { create(:issue, project: project) }
|
|
|
|
|
2020-12-10 16:10:15 -05:00
|
|
|
before do
|
|
|
|
visit project_issue_path(project, open_issue)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'issue closed', '.detail-page-header'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when clicking the bottom `Close issue` button', :aggregate_failures do
|
2021-02-24 04:11:09 -05:00
|
|
|
let(:open_issue) { create(:issue, project: project) }
|
|
|
|
|
2020-12-10 16:10:15 -05:00
|
|
|
before do
|
|
|
|
visit project_issue_path(project, open_issue)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'issue closed', '.timeline-content-form'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-01-13 10:10:40 -05:00
|
|
|
describe 'when closed', quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/297201' do
|
2021-02-03 13:09:25 -05:00
|
|
|
context 'when clicking the top `Reopen issue` button', :aggregate_failures do
|
2021-02-24 04:11:09 -05:00
|
|
|
let(:closed_issue) { create(:issue, project: project, state: 'closed') }
|
|
|
|
|
2020-12-10 16:10:15 -05:00
|
|
|
before do
|
|
|
|
visit project_issue_path(project, closed_issue)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'issue reopened', '.detail-page-header'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when clicking the bottom `Reopen issue` button', :aggregate_failures do
|
2021-02-24 04:11:09 -05:00
|
|
|
let(:closed_issue) { create(:issue, project: project, state: 'closed') }
|
|
|
|
|
2020-12-10 16:10:15 -05:00
|
|
|
before do
|
|
|
|
visit project_issue_path(project, closed_issue)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'issue reopened', '.timeline-content-form'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|