Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Artur <fcardozo@gitlab.com>2019-06-18 17:26:48 +0300
committerSean McGivern <sean@gitlab.com>2019-06-18 17:26:48 +0300
commit61bca6222ca8f605c49233508400f9b736ce9828 (patch)
treed1ffdd1fa4cfbaa01a8c5b25cdac3f5fe6aa3a17 /spec/support/shared_examples/quick_actions/issuable/unlock_quick_action_shared_examples.rb
parent53036a5bc6dcdc120ce828e3366be8b4486f9a6a (diff)
Move some quick actions feature specs to unit tests
Move some feature specs for issues/merge requests quick actions to unit tests. They are taking too long to run on the pipelines.
Diffstat (limited to 'spec/support/shared_examples/quick_actions/issuable/unlock_quick_action_shared_examples.rb')
-rw-r--r--spec/support/shared_examples/quick_actions/issuable/unlock_quick_action_shared_examples.rb87
1 files changed, 0 insertions, 87 deletions
diff --git a/spec/support/shared_examples/quick_actions/issuable/unlock_quick_action_shared_examples.rb b/spec/support/shared_examples/quick_actions/issuable/unlock_quick_action_shared_examples.rb
deleted file mode 100644
index 998ff99b32e..00000000000
--- a/spec/support/shared_examples/quick_actions/issuable/unlock_quick_action_shared_examples.rb
+++ /dev/null
@@ -1,87 +0,0 @@
-# frozen_string_literal: true
-
-shared_examples 'unlock quick action' do |issuable_type|
- before do
- project.add_maintainer(maintainer)
- gitlab_sign_in(maintainer)
- end
-
- context "new #{issuable_type}", :js do
- before do
- case issuable_type
- when :merge_request
- visit public_send('namespace_project_new_merge_request_path', project.namespace, project, new_url_opts)
- wait_for_all_requests
- when :issue
- visit public_send('new_namespace_project_issue_path', project.namespace, project, new_url_opts)
- wait_for_all_requests
- end
- end
-
- it "creates the #{issuable_type} and interprets unlock quick action accordingly" do
- fill_in "#{issuable_type}_title", with: 'bug 345'
- fill_in "#{issuable_type}_description", with: "bug description\n/unlock"
- click_button "Submit #{issuable_type}".humanize
-
- issuable = project.public_send(issuable_type.to_s.pluralize).first
-
- expect(issuable.description).to eq 'bug description'
- expect(issuable).to be_opened
- expect(page).to have_content 'bug 345'
- expect(page).to have_content 'bug description'
- expect(issuable).not_to be_discussion_locked
- end
- end
-
- context "post note to existing #{issuable_type}" do
- before do
- issuable.update(discussion_locked: true)
- expect(issuable).to be_discussion_locked
- visit public_send("project_#{issuable_type}_path", project, issuable)
- wait_for_all_requests
- end
-
- it 'creates the note and interprets the unlock quick action accordingly' do
- add_note('/unlock')
-
- wait_for_requests
- expect(page).not_to have_content '/unlock'
- expect(page).to have_content 'Commands applied'
- expect(issuable.reload).not_to be_discussion_locked
- end
-
- context "when current user cannot unlock to #{issuable_type}" do
- before do
- guest = create(:user)
- project.add_guest(guest)
-
- gitlab_sign_out
- gitlab_sign_in(guest)
- visit public_send("project_#{issuable_type}_path", project, issuable)
- wait_for_all_requests
- end
-
- it "does not lock the #{issuable_type}" do
- add_note('/unlock')
-
- wait_for_requests
- expect(page).not_to have_content '/unlock'
- expect(issuable).to be_discussion_locked
- end
- end
- end
-
- context "preview of note on #{issuable_type}", :js do
- it 'explains unlock quick action' do
- issuable.update(discussion_locked: true)
- expect(issuable).to be_discussion_locked
-
- visit public_send("project_#{issuable_type}_path", project, issuable)
-
- preview_note('/unlock')
-
- expect(page).not_to have_content '/unlock'
- expect(page).to have_content 'Unlocks the discussion'
- end
- end
-end