Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
dfc2542f
Commit
dfc2542f
authored
May 23, 2017
by
Alexis Reigel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use full caps RSS instead of rss
parent
e209724f
Changes
20
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
48 additions
and
48 deletions
+48
-48
changelogs/unreleased/feature-rss-scoped-token.yml
changelogs/unreleased/feature-rss-scoped-token.yml
+1
-1
lib/tasks/tokens.rake
lib/tasks/tokens.rake
+1
-1
spec/controllers/application_controller_spec.rb
spec/controllers/application_controller_spec.rb
+3
-3
spec/features/atom/dashboard_issues_spec.rb
spec/features/atom/dashboard_issues_spec.rb
+1
-1
spec/features/atom/dashboard_spec.rb
spec/features/atom/dashboard_spec.rb
+1
-1
spec/features/atom/issues_spec.rb
spec/features/atom/issues_spec.rb
+1
-1
spec/features/atom/users_spec.rb
spec/features/atom/users_spec.rb
+1
-1
spec/features/dashboard/activity_spec.rb
spec/features/dashboard/activity_spec.rb
+2
-2
spec/features/dashboard/issues_spec.rb
spec/features/dashboard/issues_spec.rb
+2
-2
spec/features/dashboard/projects_spec.rb
spec/features/dashboard/projects_spec.rb
+1
-1
spec/features/groups/activity_spec.rb
spec/features/groups/activity_spec.rb
+4
-4
spec/features/groups/issues_spec.rb
spec/features/groups/issues_spec.rb
+4
-4
spec/features/groups/show_spec.rb
spec/features/groups/show_spec.rb
+2
-2
spec/features/projects/activity/rss_spec.rb
spec/features/projects/activity/rss_spec.rb
+2
-2
spec/features/projects/commit/rss_spec.rb
spec/features/projects/commit/rss_spec.rb
+4
-4
spec/features/projects/issues/rss_spec.rb
spec/features/projects/issues/rss_spec.rb
+4
-4
spec/features/projects/main/rss_spec.rb
spec/features/projects/main/rss_spec.rb
+2
-2
spec/features/projects/tree/rss_spec.rb
spec/features/projects/tree/rss_spec.rb
+2
-2
spec/features/users/rss_spec.rb
spec/features/users/rss_spec.rb
+2
-2
spec/support/features/rss_shared_examples.rb
spec/support/features/rss_shared_examples.rb
+8
-8
No files found.
changelogs/unreleased/feature-rss-scoped-token.yml
View file @
dfc2542f
---
title
:
Expose atom links with an
rss
token instead of using the private token
title
:
Expose atom links with an
RSS
token instead of using the private token
merge_request
:
11647
author
:
Alexis Reigel
lib/tasks/tokens.rake
View file @
dfc2542f
...
...
@@ -11,7 +11,7 @@ namespace :tokens do
reset_all_users_token
(
:reset_incoming_email_token!
)
end
desc
"Reset all GitLab
rss
tokens"
desc
"Reset all GitLab
RSS
tokens"
task
reset_all_rss: :environment
do
reset_all_users_token
(
:reset_rss_token!
)
end
...
...
spec/controllers/application_controller_spec.rb
View file @
dfc2542f
...
...
@@ -100,14 +100,14 @@ describe ApplicationController do
end
describe
'#authenticate_user_from_rss_token'
do
describe
"authenticating a user from an
rss
token"
do
describe
"authenticating a user from an
RSS
token"
do
controller
(
described_class
)
do
def
index
render
text:
'authenticated'
end
end
context
"when the 'rss_token' param is populated with the
rss
token"
do
context
"when the 'rss_token' param is populated with the
RSS
token"
do
context
'when the request format is atom'
do
it
"logs the user in"
do
get
:index
,
rss_token:
user
.
rss_token
,
format: :atom
...
...
@@ -125,7 +125,7 @@ describe ApplicationController do
end
end
context
"when the 'rss_token' param is populated with an invalid
rss
token"
do
context
"when the 'rss_token' param is populated with an invalid
RSS
token"
do
it
"doesn't log the user"
do
get
:index
,
rss_token:
"token"
expect
(
response
.
status
).
not_to
eq
200
...
...
spec/features/atom/dashboard_issues_spec.rb
View file @
dfc2542f
...
...
@@ -20,7 +20,7 @@ describe "Dashboard Issues Feed", feature: true do
expect
(
body
).
to
have_selector
(
'title'
,
text:
"
#{
user
.
name
}
issues"
)
end
it
"renders atom feed via
rss
token"
do
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'
)
...
...
spec/features/atom/dashboard_spec.rb
View file @
dfc2542f
...
...
@@ -11,7 +11,7 @@ describe "Dashboard Feed", feature: true do
end
end
context
"projects atom feed via
rss
token"
do
context
"projects atom feed via
RSS
token"
do
it
"renders projects atom feed"
do
visit
dashboard_projects_path
(
:atom
,
rss_token:
user
.
rss_token
)
expect
(
body
).
to
have_selector
(
'feed title'
)
...
...
spec/features/atom/issues_spec.rb
View file @
dfc2542f
...
...
@@ -43,7 +43,7 @@ describe 'Issues Feed', feature: true do
end
end
context
'when authenticated via
rss
token'
do
context
'when authenticated via
RSS
token'
do
it
'renders atom feed'
do
visit
namespace_project_issues_path
(
project
.
namespace
,
project
,
:atom
,
rss_token:
user
.
rss_token
)
...
...
spec/features/atom/users_spec.rb
View file @
dfc2542f
...
...
@@ -11,7 +11,7 @@ describe "User Feed", feature: true do
end
end
context
'user atom feed via
rss
token'
do
context
'user atom feed via
RSS
token'
do
it
"renders user atom feed"
do
visit
user_path
(
user
,
:atom
,
rss_token:
user
.
rss_token
)
expect
(
body
).
to
have_selector
(
'feed title'
)
...
...
spec/features/dashboard/activity_spec.rb
View file @
dfc2542f
...
...
@@ -6,6 +6,6 @@ RSpec.describe 'Dashboard Activity', feature: true do
visit
activity_dashboard_path
end
it_behaves_like
"it has an RSS button with current_user's
rss
token"
it_behaves_like
"an autodiscoverable RSS feed with current_user's
rss
token"
it_behaves_like
"it has an RSS button with current_user's
RSS
token"
it_behaves_like
"an autodiscoverable RSS feed with current_user's
RSS
token"
end
spec/features/dashboard/issues_spec.rb
View file @
dfc2542f
...
...
@@ -62,6 +62,6 @@ RSpec.describe 'Dashboard Issues', feature: true do
expect
(
page
).
to
have_content
(
other_issue
.
title
)
end
it_behaves_like
"it has an RSS button with current_user's
rss
token"
it_behaves_like
"an autodiscoverable RSS feed with current_user's
rss
token"
it_behaves_like
"it has an RSS button with current_user's
RSS
token"
it_behaves_like
"an autodiscoverable RSS feed with current_user's
RSS
token"
end
spec/features/dashboard/projects_spec.rb
View file @
dfc2542f
...
...
@@ -31,5 +31,5 @@ RSpec.describe 'Dashboard Projects', feature: true do
end
end
it_behaves_like
"an autodiscoverable RSS feed with current_user's
rss
token"
it_behaves_like
"an autodiscoverable RSS feed with current_user's
RSS
token"
end
spec/features/groups/activity_spec.rb
View file @
dfc2542f
...
...
@@ -11,8 +11,8 @@ feature 'Group activity page', feature: true do
visit
path
end
it_behaves_like
"it has an RSS button with current_user's
rss
token"
it_behaves_like
"an autodiscoverable RSS feed with current_user's
rss
token"
it_behaves_like
"it has an RSS button with current_user's
RSS
token"
it_behaves_like
"an autodiscoverable RSS feed with current_user's
RSS
token"
end
context
'when signed out'
do
...
...
@@ -20,7 +20,7 @@ feature 'Group activity page', feature: true do
visit
path
end
it_behaves_like
"it has an RSS button without an
rss
token"
it_behaves_like
"an autodiscoverable RSS feed without an
rss
token"
it_behaves_like
"it has an RSS button without an
RSS
token"
it_behaves_like
"an autodiscoverable RSS feed without an
RSS
token"
end
end
spec/features/groups/issues_spec.rb
View file @
dfc2542f
...
...
@@ -12,15 +12,15 @@ feature 'Group issues page', feature: true do
context
'when signed in'
do
let
(
:user
)
{
user_in_group
}
it_behaves_like
"it has an RSS button with current_user's
rss
token"
it_behaves_like
"an autodiscoverable RSS feed with current_user's
rss
token"
it_behaves_like
"it has an RSS button with current_user's
RSS
token"
it_behaves_like
"an autodiscoverable RSS feed with current_user's
RSS
token"
end
context
'when signed out'
do
let
(
:user
)
{
nil
}
it_behaves_like
"it has an RSS button without an
rss
token"
it_behaves_like
"an autodiscoverable RSS feed without an
rss
token"
it_behaves_like
"it has an RSS button without an
RSS
token"
it_behaves_like
"an autodiscoverable RSS feed without an
RSS
token"
end
end
...
...
spec/features/groups/show_spec.rb
View file @
dfc2542f
...
...
@@ -11,7 +11,7 @@ feature 'Group show page', feature: true do
visit
path
end
it_behaves_like
"an autodiscoverable RSS feed with current_user's
rss
token"
it_behaves_like
"an autodiscoverable RSS feed with current_user's
RSS
token"
end
context
'when signed out'
do
...
...
@@ -19,6 +19,6 @@ feature 'Group show page', feature: true do
visit
path
end
it_behaves_like
"an autodiscoverable RSS feed without an
rss
token"
it_behaves_like
"an autodiscoverable RSS feed without an
RSS
token"
end
end
spec/features/projects/activity/rss_spec.rb
View file @
dfc2542f
...
...
@@ -16,7 +16,7 @@ feature 'Project Activity RSS' do
visit
path
end
it_behaves_like
"it has an RSS button with current_user's
rss
token"
it_behaves_like
"it has an RSS button with current_user's
RSS
token"
end
context
'when signed out'
do
...
...
@@ -24,6 +24,6 @@ feature 'Project Activity RSS' do
visit
path
end
it_behaves_like
"it has an RSS button without an
rss
token"
it_behaves_like
"it has an RSS button without an
RSS
token"
end
end
spec/features/projects/commit/rss_spec.rb
View file @
dfc2542f
...
...
@@ -12,8 +12,8 @@ feature 'Project Commits RSS' do
visit
path
end
it_behaves_like
"it has an RSS button with current_user's
rss
token"
it_behaves_like
"an autodiscoverable RSS feed with current_user's
rss
token"
it_behaves_like
"it has an RSS button with current_user's
RSS
token"
it_behaves_like
"an autodiscoverable RSS feed with current_user's
RSS
token"
end
context
'when signed out'
do
...
...
@@ -21,7 +21,7 @@ feature 'Project Commits RSS' do
visit
path
end
it_behaves_like
"it has an RSS button without an
rss
token"
it_behaves_like
"an autodiscoverable RSS feed without an
rss
token"
it_behaves_like
"it has an RSS button without an
RSS
token"
it_behaves_like
"an autodiscoverable RSS feed without an
RSS
token"
end
end
spec/features/projects/issues/rss_spec.rb
View file @
dfc2542f
...
...
@@ -16,8 +16,8 @@ feature 'Project Issues RSS' do
visit
path
end
it_behaves_like
"it has an RSS button with current_user's
rss
token"
it_behaves_like
"an autodiscoverable RSS feed with current_user's
rss
token"
it_behaves_like
"it has an RSS button with current_user's
RSS
token"
it_behaves_like
"an autodiscoverable RSS feed with current_user's
RSS
token"
end
context
'when signed out'
do
...
...
@@ -25,7 +25,7 @@ feature 'Project Issues RSS' do
visit
path
end
it_behaves_like
"it has an RSS button without an
rss
token"
it_behaves_like
"an autodiscoverable RSS feed without an
rss
token"
it_behaves_like
"it has an RSS button without an
RSS
token"
it_behaves_like
"an autodiscoverable RSS feed without an
RSS
token"
end
end
spec/features/projects/main/rss_spec.rb
View file @
dfc2542f
...
...
@@ -12,7 +12,7 @@ feature 'Project RSS' do
visit
path
end
it_behaves_like
"an autodiscoverable RSS feed with current_user's
rss
token"
it_behaves_like
"an autodiscoverable RSS feed with current_user's
RSS
token"
end
context
'when signed out'
do
...
...
@@ -20,6 +20,6 @@ feature 'Project RSS' do
visit
path
end
it_behaves_like
"an autodiscoverable RSS feed without an
rss
token"
it_behaves_like
"an autodiscoverable RSS feed without an
RSS
token"
end
end
spec/features/projects/tree/rss_spec.rb
View file @
dfc2542f
...
...
@@ -12,7 +12,7 @@ feature 'Project Tree RSS' do
visit
path
end
it_behaves_like
"an autodiscoverable RSS feed with current_user's
rss
token"
it_behaves_like
"an autodiscoverable RSS feed with current_user's
RSS
token"
end
context
'when signed out'
do
...
...
@@ -20,6 +20,6 @@ feature 'Project Tree RSS' do
visit
path
end
it_behaves_like
"an autodiscoverable RSS feed without an
rss
token"
it_behaves_like
"an autodiscoverable RSS feed without an
RSS
token"
end
end
spec/features/users/rss_spec.rb
View file @
dfc2542f
...
...
@@ -9,7 +9,7 @@ feature 'User RSS' do
visit
path
end
it_behaves_like
"it has an RSS button with current_user's
rss
token"
it_behaves_like
"it has an RSS button with current_user's
RSS
token"
end
context
'when signed out'
do
...
...
@@ -17,6 +17,6 @@ feature 'User RSS' do
visit
path
end
it_behaves_like
"it has an RSS button without an
rss
token"
it_behaves_like
"it has an RSS button without an
RSS
token"
end
end
spec/support/features/rss_shared_examples.rb
View file @
dfc2542f
shared_examples
"an autodiscoverable RSS feed with current_user's
rss
token"
do
it
"has an RSS autodiscovery link tag with current_user's
rss
token"
do
shared_examples
"an autodiscoverable RSS feed with current_user's
RSS
token"
do
it
"has an RSS autodiscovery link tag with current_user's
RSS
token"
do
expect
(
page
).
to
have_css
(
"link[type*='atom+xml'][href*='rss_token=
#{
Thread
.
current
[
:current_user
].
rss_token
}
']"
,
visible:
false
)
end
end
shared_examples
"it has an RSS button with current_user's
rss
token"
do
it
"shows the RSS button with current_user's
rss
token"
do
shared_examples
"it has an RSS button with current_user's
RSS
token"
do
it
"shows the RSS button with current_user's
RSS
token"
do
expect
(
page
).
to
have_css
(
"a:has(.fa-rss)[href*='rss_token=
#{
Thread
.
current
[
:current_user
].
rss_token
}
']"
)
end
end
shared_examples
"an autodiscoverable RSS feed without an
rss
token"
do
it
"has an RSS autodiscovery link tag without an
rss
token"
do
shared_examples
"an autodiscoverable RSS feed without an
RSS
token"
do
it
"has an RSS autodiscovery link tag without an
RSS
token"
do
expect
(
page
).
to
have_css
(
"link[type*='atom+xml']:not([href*='rss_token'])"
,
visible:
false
)
end
end
shared_examples
"it has an RSS button without an
rss
token"
do
it
"shows the RSS button without an
rss
token"
do
shared_examples
"it has an RSS button without an
RSS
token"
do
it
"shows the RSS button without an
RSS
token"
do
expect
(
page
).
to
have_css
(
"a:has(.fa-rss):not([href*='rss_token'])"
)
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment