debian-mirror-gitlab/spec/features/atom/dashboard_issues_spec.rb

83 lines
3.4 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
require 'spec_helper'
2017-09-10 17:25:29 +05:30
describe "Dashboard Issues Feed" do
2014-09-02 18:07:02 +05:30
describe "GET /issues" do
2017-08-17 22:00:37 +05:30
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') }
2014-09-02 18:07:02 +05:30
let!(:project1) { create(:project) }
let!(:project2) { create(:project) }
before do
project1.team << [user, :master]
project2.team << [user, :master]
end
describe "atom feed" do
it "renders atom feed via private token" do
2014-09-02 18:07:02 +05:30
visit issues_dashboard_path(:atom, private_token: user.private_token)
expect(response_headers['Content-Type']).to have_content('application/atom+xml')
2015-04-26 12:48:37 +05:30
expect(body).to have_selector('title', text: "#{user.name} issues")
end
2017-09-10 17:25:29 +05:30
it "renders atom feed via RSS token" do
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
2017-08-17 22:00:37 +05:30
it "renders atom feed with url parameters" do
2017-09-10 17:25:29 +05:30
visit issues_dashboard_path(:atom, rss_token: user.rss_token, state: 'opened', assignee_id: user.id)
2017-08-17 22:00:37 +05:30
link = find('link[type="application/atom+xml"]')
params = CGI.parse(URI.parse(link[:href]).query)
2017-09-10 17:25:29 +05:30
expect(params).to include('rss_token' => [user.rss_token])
2017-08-17 22:00:37 +05:30
expect(params).to include('state' => ['opened'])
expect(params).to include('assignee_id' => [user.id.to_s])
end
context "issue with basic fields" do
2017-08-17 22:00:37 +05:30
let!(:issue2) { create(:issue, author: user, assignees: [assignee], project: project2, description: 'test desc') }
it "renders issue fields" do
2017-09-10 17:25:29 +05:30
visit issues_dashboard_path(:atom, rss_token: user.rss_token)
entry = find(:xpath, "//feed/entry[contains(summary/text(),'#{issue2.title}')]")
expect(entry).to be_present
2017-08-17 22:00:37 +05:30
expect(entry).to have_selector('author email', text: issue2.author_public_email)
expect(entry).to have_selector('assignees email', text: assignee.public_email)
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') }
2017-08-17 22:00:37 +05:30
let!(:issue1) { create(:issue, author: user, assignees: [assignee], project: project1, milestone: milestone1) }
before do
issue1.labels << label1
end
it "renders issue label and milestone info" do
2017-09-10 17:25:29 +05:30
visit issues_dashboard_path(:atom, rss_token: user.rss_token)
entry = find(:xpath, "//feed/entry[contains(summary/text(),'#{issue1.title}')]")
expect(entry).to be_present
2017-08-17 22:00:37 +05:30
expect(entry).to have_selector('author email', text: issue1.author_public_email)
expect(entry).to have_selector('assignees email', text: assignee.public_email)
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
2014-09-02 18:07:02 +05:30
end
end
end
end