Welcome to mirror list, hosted at ThFree Co, Russian Federation.

issues_spec.rb « atom « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 26422c8fdc02d742f8110a1119bfd695b76ba70b (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
require 'spec_helper'

describe "Issues Feed", feature: true  do
  describe "GET /issues" do
    let!(:user)     { create(:user) }
    let!(:project)  { create(:project) }
    let!(:issue)    { create(:issue, author: user, project: project) }

    before { project.team << [user, :developer] }

    context "when authenticated" do
      it "should render atom feed" do
        login_with user
        visit project_issues_path(project, :atom)

        expect(response_headers['Content-Type']).to have_content("application/atom+xml")
        expect(body).to have_selector("title", text: "#{project.name} issues")
        expect(body).to have_selector("author email", text: issue.author_email)
        expect(body).to have_selector("entry summary", text: issue.title)
      end
    end

    context "when authenticated via private token" do
      it "should render atom feed" do
        visit project_issues_path(project, :atom, private_token: user.private_token)

        expect(response_headers['Content-Type']).to have_content("application/atom+xml")
        expect(body).to have_selector("title", text: "#{project.name} issues")
        expect(body).to have_selector("author email", text: issue.author_email)
        expect(body).to have_selector("entry summary", text: issue.title)
      end
    end
  end
end