summaryrefslogtreecommitdiff
path: root/spec/features/dashboard/issues_spec.rb
blob: f4420814c3a1bc94b951408c13e312f44d40a749 (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
require 'spec_helper'

RSpec.describe 'Dashboard Issues', feature: true do
  let(:current_user) { create :user }
  let(:public_project) { create(:empty_project, :public) }
  let(:project) do
    create(:empty_project) do |project|
      project.team << [current_user, :master]
    end
  end

  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, assignee: current_user, project: project }
  let!(:other_issue) { create :issue, project: project }

  before do
    login_as(current_user)

    visit issues_dashboard_path(assignee_id: current_user.id)
  end

  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 issues when current user is author', js: true do
    find('#assignee_id', visible: false).set('')
    find('.js-author-search', match: :first).click
    find('.dropdown-menu-author li a', match: :first, text: current_user.to_reference).click

    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_behaves_like "it has an RSS button with current_user's private token"
  it_behaves_like "an autodiscoverable RSS feed with current_user's private token"
end