gitlabhq/spec/requests/atom/dashboard_issues_spec.rb

44 lines
1.2 KiB
Ruby
Raw Normal View History

2011-12-08 21:17:53 +01:00
require 'spec_helper'
2011-12-15 22:21:29 +01:00
describe "User Issues Dashboard" do
2011-12-08 21:17:53 +01:00
describe "GET /issues" do
before do
login_as :user
@project1 = Factory :project
2011-12-08 21:17:53 +01:00
@project2 = Factory :project
2011-12-08 21:17:53 +01:00
@project1.add_access(@user, :read, :write)
@project2.add_access(@user, :read, :write)
@issue1 = Factory :issue,
author: @user,
assignee: @user,
project: @project1
2011-12-08 21:17:53 +01:00
@issue2 = Factory :issue,
author: @user,
assignee: @user,
project: @project2
2011-12-08 21:17:53 +01:00
2011-12-15 22:21:29 +01:00
visit dashboard_issues_path
2011-12-08 21:17:53 +01:00
end
describe "atom feed", js: false do
2011-12-08 21:17:53 +01:00
it "should render atom feed via private token" do
logout
visit dashboard_issues_path(:atom, private_token: @user.private_token)
2011-12-08 21:17:53 +01:00
page.response_headers['Content-Type'].should have_content("application/atom+xml")
page.body.should have_selector("title", text: "#{@user.name} issues")
page.body.should have_selector("author email", text: @issue1.author_email)
page.body.should have_selector("entry summary", text: @issue1.title)
page.body.should have_selector("author email", text: @issue2.author_email)
page.body.should have_selector("entry summary", text: @issue2.title)
2011-12-08 21:17:53 +01:00
end
end
end
end