dashboard_issues_spec.rb 3.42 KB
Newer Older
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
1 2
require 'spec_helper'

3
describe "Dashboard Issues Feed", feature: true  do
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
4
  describe "GET /issues" do
5 6
    let!(:user)     { create(:user, email: 'private1@example.com', public_email: 'public1@example.com') }
    let!(:assignee) { create(:user, email: 'private2@example.com', public_email: 'public2@example.com') }
7 8
    let!(:project1) { create(:project) }
    let!(:project2) { create(:project) }
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
9

10 11 12 13 14
    before do
      project1.team << [user, :master]
      project2.team << [user, :master]
    end

15
    describe "atom feed" do
16
      it "renders atom feed via private token" do
17
        visit issues_dashboard_path(:atom, private_token: user.private_token)
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
18

19
        expect(response_headers['Content-Type']).to have_content('application/atom+xml')
Jeroen van Baarsen's avatar
Jeroen van Baarsen committed
20
        expect(body).to have_selector('title', text: "#{user.name} issues")
21 22
      end

23
      it "renders atom feed via RSS token" do
24 25 26 27 28 29
        visit issues_dashboard_path(:atom, rss_token: user.rss_token)

        expect(response_headers['Content-Type']).to have_content('application/atom+xml')
        expect(body).to have_selector('title', text: "#{user.name} issues")
      end

30
      it "renders atom feed with url parameters" do
31
        visit issues_dashboard_path(:atom, rss_token: user.rss_token, state: 'opened', assignee_id: user.id)
32 33

        link = find('link[type="application/atom+xml"]')
Douwe Maan's avatar
Douwe Maan committed
34
        params = CGI.parse(URI.parse(link[:href]).query)
35

36
        expect(params).to include('rss_token' => [user.rss_token])
37 38 39 40
        expect(params).to include('state' => ['opened'])
        expect(params).to include('assignee_id' => [user.id.to_s])
      end

41
      context "issue with basic fields" do
42
        let!(:issue2) { create(:issue, author: user, assignees: [assignee], project: project2, description: 'test desc') }
43

44
        it "renders issue fields" do
45
          visit issues_dashboard_path(:atom, rss_token: user.rss_token)
46 47 48 49

          entry = find(:xpath, "//feed/entry[contains(summary/text(),'#{issue2.title}')]")

          expect(entry).to be_present
50
          expect(entry).to have_selector('author email', text: issue2.author_public_email)
51
          expect(entry).to have_selector('assignees email', text: assignee.public_email)
52 53 54 55 56 57 58 59 60
          expect(entry).not_to have_selector('labels')
          expect(entry).not_to have_selector('milestone')
          expect(entry).to have_selector('description', text: issue2.description)
        end
      end

      context "issue with label and milestone" do
        let!(:milestone1) { create(:milestone, project: project1, title: 'v1') }
        let!(:label1)     { create(:label, project: project1, title: 'label1') }
61
        let!(:issue1)     { create(:issue, author: user, assignees: [assignee], project: project1, milestone: milestone1) }
62

63 64 65
        before do
          issue1.labels << label1
        end
66

67
        it "renders issue label and milestone info" do
68
          visit issues_dashboard_path(:atom, rss_token: user.rss_token)
69

70
          entry = find(:xpath, "//feed/entry[contains(summary/text(),'#{issue1.title}')]")
71

72
          expect(entry).to be_present
73
          expect(entry).to have_selector('author email', text: issue1.author_public_email)
74
          expect(entry).to have_selector('assignees email', text: assignee.public_email)
75 76 77 78
          expect(entry).to have_selector('labels label', text: label1.title)
          expect(entry).to have_selector('milestone', text: milestone1.title)
          expect(entry).not_to have_selector('description')
        end
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
79 80 81 82
      end
    end
  end
end