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

88 lines
3.8 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
require 'spec_helper'
2019-03-02 22:35:43 +05:30
describe 'Issues Feed' do
2015-04-26 12:48:37 +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') }
let!(:group) { create(:group) }
2014-09-02 18:07:02 +05:30
let!(:project) { create(:project) }
2017-08-17 22:00:37 +05:30
let!(:issue) { create(:issue, author: user, assignees: [assignee], project: project) }
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
before do
2018-03-17 18:26:18 +05:30
project.add_developer(user)
2017-08-17 22:00:37 +05:30
group.add_developer(user)
end
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
context 'when authenticated' do
2016-09-13 17:45:13 +05:30
it 'renders atom feed' do
2017-09-10 17:25:29 +05:30
sign_in user
visit project_issues_path(project, :atom)
2014-09-02 18:07:02 +05:30
2017-09-10 17:25:29 +05:30
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: "#{project.name} issues")
2017-08-17 22:00:37 +05:30
expect(body).to have_selector('author email', text: issue.author_public_email)
expect(body).to have_selector('assignees assignee email', text: issue.assignees.first.public_email)
expect(body).to have_selector('assignee email', text: issue.assignees.first.public_email)
2015-04-26 12:48:37 +05:30
expect(body).to have_selector('entry summary', text: issue.title)
2014-09-02 18:07:02 +05:30
end
end
2018-03-17 18:26:18 +05:30
context 'when authenticated via personal access token' do
2016-09-13 17:45:13 +05:30
it 'renders atom feed' do
2018-03-17 18:26:18 +05:30
personal_access_token = create(:personal_access_token, user: user)
2017-09-10 17:25:29 +05:30
visit project_issues_path(project, :atom,
2018-03-17 18:26:18 +05:30
private_token: personal_access_token.token)
2014-09-02 18:07:02 +05:30
2017-09-10 17:25:29 +05:30
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_public_email)
expect(body).to have_selector('assignees assignee email', text: issue.assignees.first.public_email)
expect(body).to have_selector('assignee email', text: issue.assignees.first.public_email)
expect(body).to have_selector('entry summary', text: issue.title)
end
end
2018-11-08 19:23:39 +05:30
context 'when authenticated via feed token' do
2017-09-10 17:25:29 +05:30
it 'renders atom feed' do
visit project_issues_path(project, :atom,
2018-11-08 19:23:39 +05:30
feed_token: user.feed_token)
2017-09-10 17:25:29 +05:30
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: "#{project.name} issues")
2017-08-17 22:00:37 +05:30
expect(body).to have_selector('author email', text: issue.author_public_email)
expect(body).to have_selector('assignees assignee email', text: issue.assignees.first.public_email)
expect(body).to have_selector('assignee email', text: issue.assignees.first.public_email)
2015-04-26 12:48:37 +05:30
expect(body).to have_selector('entry summary', text: issue.title)
2014-09-02 18:07:02 +05:30
end
end
2017-08-17 22:00:37 +05:30
it "renders atom feed with url parameters for project issues" do
2018-11-08 19:23:39 +05:30
visit project_issues_path(project, :atom, feed_token: user.feed_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)
2018-11-08 19:23:39 +05:30
expect(params).to include('feed_token' => [user.feed_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
it "renders atom feed with url parameters for group issues" do
2018-11-08 19:23:39 +05:30
visit issues_group_path(group, :atom, feed_token: user.feed_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)
2018-11-08 19:23:39 +05:30
expect(params).to include('feed_token' => [user.feed_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
2014-09-02 18:07:02 +05:30
end
end