summaryrefslogtreecommitdiff
path: root/spec/features/issues/award_spec.rb
blob: 401e1ea2b893e27216bbf160a980cac0877f92c4 (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
require 'rails_helper'

feature 'Issue awards', js: true, feature: true do
  let(:user)      { create(:user) }
  let(:project)   { create(:project, :public) }
  let(:issue)     { create(:issue, project: project) }

  describe 'logged in' do
    before do
      login_as(user)
      visit namespace_project_issue_path(project.namespace, project, issue)
    end

    it 'adds award to issue' do
      first('.js-emoji-btn').click
      expect(page).to have_selector('.js-emoji-btn.active')
      expect(first('.js-emoji-btn')).to have_content '1'

      visit namespace_project_issue_path(project.namespace, project, issue)
      expect(first('.js-emoji-btn')).to have_content '1'
    end

    it 'removes award from issue' do
      first('.js-emoji-btn').click
      find('.js-emoji-btn.active').click
      expect(first('.js-emoji-btn')).to have_content '0'

      visit namespace_project_issue_path(project.namespace, project, issue)
      expect(first('.js-emoji-btn')).to have_content '0'
    end

    it 'only has one menu on the page' do
      first('.js-add-award').click
      expect(page).to have_selector('.emoji-menu')

      expect(page).to have_selector('.emoji-menu', count: 1)
    end
  end

  describe 'logged out' do
    before do
      visit namespace_project_issue_path(project.namespace, project, issue)
    end

    it 'does not see award menu button' do
      expect(page).not_to have_selector('.js-award-holder')
    end
  end
end