summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/quick_actions/issuable/award_quick_action_shared_examples.rb
blob: 74cbfa3f4b4a38eed328cf7f4fe56fedecacda20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# frozen_string_literal: true

shared_examples 'award 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 award quick action accordingly" do
      fill_in "#{issuable_type}_title", with: 'bug 345'
      fill_in "#{issuable_type}_description", with: "bug description\n/award :100:"
      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.award_emoji).to eq []
    end
  end

  context "post note to existing #{issuable_type}" do
    before do
      visit public_send("project_#{issuable_type}_path", project, issuable)
      wait_for_all_requests
      expect(issuable.award_emoji).to eq []
    end

    it 'creates the note and interprets the award quick action accordingly' do
      add_note("/award :100:")

      wait_for_requests
      expect(page).not_to have_content '/award'
      expect(page).to have_content 'Commands applied'
      expect(issuable.reload.award_emoji.last.name).to eq('100')
    end
  end

  context "preview of note on #{issuable_type}", :js do
    it 'explains label quick action' do
      visit public_send("project_#{issuable_type}_path", project, issuable)

      preview_note('/award :100:')

      expect(page).not_to have_content '/award'
      expect(page).to have_selector "gl-emoji[data-name='100']"
    end
  end
end