diff options
author | Sean McGivern <sean@gitlab.com> | 2019-04-08 07:43:51 +0000 |
---|---|---|
committer | Sean McGivern <sean@gitlab.com> | 2019-04-08 07:43:51 +0000 |
commit | ddf3edc7a956dbf54115fd141c81b4b2f7a655b4 (patch) | |
tree | d9810bc18c7137715d3f86a028ff28ff8131fdee /spec/support | |
parent | 26658d139b449b256980b25c34aa0f1492152e47 (diff) | |
parent | 5b64beca82b17d37e5ab2206175c06242ae5ac27 (diff) | |
download | gitlab-ce-ddf3edc7a956dbf54115fd141c81b4b2f7a655b4.tar.gz |
Merge branch '59570-duplicate-quick-action' into 'master'
Extract duplicate quick action spec to a shared example
Closes #59570
See merge request gitlab-org/gitlab-ce!26912
Diffstat (limited to 'spec/support')
-rw-r--r-- | spec/support/shared_examples/quick_actions/issue/duplicate_quick_action_shared_examples.rb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/spec/support/shared_examples/quick_actions/issue/duplicate_quick_action_shared_examples.rb b/spec/support/shared_examples/quick_actions/issue/duplicate_quick_action_shared_examples.rb index 24576fe0021..633c7135fbc 100644 --- a/spec/support/shared_examples/quick_actions/issue/duplicate_quick_action_shared_examples.rb +++ b/spec/support/shared_examples/quick_actions/issue/duplicate_quick_action_shared_examples.rb @@ -1,4 +1,38 @@ # frozen_string_literal: true shared_examples 'duplicate quick action' do + context 'mark issue as duplicate' do + let(:original_issue) { create(:issue, project: project) } + + context 'when the current user can update issues' do + it 'does not create a note, and marks the issue as a duplicate' do + add_note("/duplicate ##{original_issue.to_reference}") + + expect(page).not_to have_content "/duplicate #{original_issue.to_reference}" + expect(page).to have_content 'Commands applied' + expect(page).to have_content "marked this issue as a duplicate of #{original_issue.to_reference}" + + expect(issue.reload).to be_closed + end + end + + context 'when the current user cannot update the issue' do + let(:guest) { create(:user) } + before do + project.add_guest(guest) + gitlab_sign_out + sign_in(guest) + visit project_issue_path(project, issue) + end + + it 'does not create a note, and does not mark the issue as a duplicate' do + add_note("/duplicate ##{original_issue.to_reference}") + + expect(page).not_to have_content 'Commands applied' + expect(page).not_to have_content "marked this issue as a duplicate of #{original_issue.to_reference}" + + expect(issue.reload).to be_open + end + end + end end |