summaryrefslogtreecommitdiff
path: root/spec/features/dashboard/issues_spec.rb
blob: 5610894fd9a19562f87de90522253bc31ed8a9dd (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
require 'spec_helper'

RSpec.describe 'Dashboard Issues' do
  let(:current_user) { create :user }
  let(:user) { current_user } # Shared examples depend on this being available
  let!(:public_project) { create(:project, :public) }
  let(:project) { create(:project) }
  let(:project_with_issues_disabled) { create(:project, :issues_disabled) }
  let!(:authored_issue) { create :issue, author: current_user, project: project }
  let!(:authored_issue_on_public_project) { create :issue, author: current_user, project: public_project }
  let!(:assigned_issue) { create :issue, assignees: [current_user], project: project }
  let!(:other_issue) { create :issue, project: project }

  before do
    [project, project_with_issues_disabled].each { |project| project.team << [current_user, :master] }
    sign_in(current_user)
    visit issues_dashboard_path(assignee_id: current_user.id)
  end

  describe 'issues' do
    it 'shows issues assigned to current user' do
      expect(page).to have_content(assigned_issue.title)
      expect(page).not_to have_content(authored_issue.title)
      expect(page).not_to have_content(other_issue.title)
    end

    it 'shows checkmark when unassigned is selected for assignee', :js do
      find('.js-assignee-search').click
      find('li', text: 'Unassigned').click
      find('.js-assignee-search').click

      expect(find('li[data-user-id="0"] a.is-active')).to be_visible
    end

    it 'shows issues when current user is author', :js do
      find('#assignee_id', visible: false).set('')
      find('.js-author-search', match: :first).click

      expect(find('li[data-user-id="null"] a.is-active')).to be_visible

      find('.dropdown-menu-author li a', match: :first, text: current_user.to_reference).click
      find('.js-author-search', match: :first).click

      page.within '.dropdown-menu-user' do
        expect(find('.dropdown-menu-author li a.is-active', match: :first, text: current_user.to_reference)).to be_visible
      end

      expect(page).to have_content(authored_issue.title)
      expect(page).to have_content(authored_issue_on_public_project.title)
      expect(page).not_to have_content(assigned_issue.title)
      expect(page).not_to have_content(other_issue.title)
    end

    it 'shows all issues' do
      click_link('Reset filters')

      expect(page).to have_content(authored_issue.title)
      expect(page).to have_content(authored_issue_on_public_project.title)
      expect(page).to have_content(assigned_issue.title)
      expect(page).to have_content(other_issue.title)
    end

    it 'state filter tabs work' do
      find('#state-closed').click
      expect(page).to have_current_path(issues_dashboard_url(assignee_id: current_user.id, state: 'closed'), url: true)
    end

    it_behaves_like "it has an RSS button with current_user's RSS token"
    it_behaves_like "an autodiscoverable RSS feed with current_user's RSS token"
  end

  describe 'new issue dropdown' do
    it 'shows projects only with issues feature enabled', :js do
      find('.new-project-item-select-button').trigger('click')

      page.within('.select2-results') do
        expect(page).to have_content(project.name_with_namespace)
        expect(page).not_to have_content(project_with_issues_disabled.name_with_namespace)
      end
    end

    it 'shows the new issue page', :js do
      find('.new-project-item-select-button').trigger('click')

      wait_for_requests

      project_path = "/#{project.path_with_namespace}"
      project_json = { name: project.name_with_namespace, url: project_path }.to_json

      # similate selection, and prevent overlap by dropdown menu
      execute_script("$('.project-item-select').val('#{project_json}').trigger('change');")
      execute_script("$('#select2-drop-mask').remove();")

      find('.new-project-item-link').trigger('click')

      expect(page).to have_current_path("#{project_path}/issues/new")

      page.within('#content-body') do
        expect(page).to have_selector('.issue-form')
      end
    end
  end
end