summaryrefslogtreecommitdiff
path: root/spec/features/dashboard_issues_spec.rb
blob: 4dccf645454124d68674d5212354aeabc3111066 (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
64
65
66
67
68
69
require 'spec_helper'

describe "Dashboard Issues filtering", feature: true, js: true do
  let(:user)      { create(:user) }
  let(:project)   { create(:project) }
  let(:milestone) { create(:milestone, project: project) }

  context 'filtering by milestone' do
    before do
      project.team << [user, :master]
      login_as(user)

      create(:issue, project: project, author: user, assignee: user)
      create(:issue, project: project, author: user, assignee: user, milestone: milestone)

      visit_issues
    end

    it 'shows all issues with no milestone' do
      show_milestone_dropdown

      click_link 'No Milestone'

      page.within '.issues-state-filters' do
        expect(page).to have_content('Open 1')
        expect(page).to have_content('Closed 0')
        expect(page).to have_content('All 1')
      end
      expect(page).to have_selector('.issue', count: 1)
    end

    it 'shows all issues with any milestone' do
      show_milestone_dropdown

      click_link 'Any Milestone'

      page.within '.issues-state-filters' do
        expect(page).to have_content('Open 2')
        expect(page).to have_content('Closed 0')
        expect(page).to have_content('All 2')
      end
      expect(page).to have_selector('.issue', count: 2)
    end

    it 'shows all issues with the selected milestone' do
      show_milestone_dropdown

      page.within '.dropdown-content' do
        click_link milestone.title
      end

      page.within '.issues-state-filters' do
        expect(page).to have_content('Open 1')
        expect(page).to have_content('Closed 0')
        expect(page).to have_content('All 1')
      end
      expect(page).to have_selector('.issue', count: 1)
    end
  end

  def show_milestone_dropdown
    click_button 'Milestone'
    expect(page).to have_selector('.dropdown-content', visible: true)
  end

  def visit_issues
    visit issues_dashboard_path
  end
end