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
05525d6b
Commit
05525d6b
authored
May 25, 2020
by
Nikita Bulai
Committed by
Nikita Bulai
May 28, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add & fix specs for OAuth ROPS grant client auth
parent
9e71e8a1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
58 additions
and
13 deletions
+58
-13
doc/api/oauth2.md
doc/api/oauth2.md
+2
-2
spec/requests/api/oauth_tokens_spec.rb
spec/requests/api/oauth_tokens_spec.rb
+56
-11
No files found.
doc/api/oauth2.md
View file @
05525d6b
...
@@ -173,8 +173,8 @@ the following parameters:
...
@@ -173,8 +173,8 @@ the following parameters:
}
}
```
```
Also you must use
Basic authorization using
`client_id`
and
`client_secret`
values
Also you must use
HTTP Basic authentication using the
`client_id`
and
`client_secret`
to authenticate the client that performs a request.
values
to authenticate the client that performs a request.
Example cURL request:
Example cURL request:
...
...
spec/requests/api/oauth_tokens_spec.rb
View file @
05525d6b
...
@@ -4,15 +4,32 @@ require 'spec_helper'
...
@@ -4,15 +4,32 @@ require 'spec_helper'
describe
'OAuth tokens'
do
describe
'OAuth tokens'
do
context
'Resource Owner Password Credentials'
do
context
'Resource Owner Password Credentials'
do
def
request_oauth_token
(
user
)
def
basic_auth_header
(
username
,
password
)
post
'/oauth/token'
,
params:
{
username:
user
.
username
,
password:
user
.
password
,
grant_type:
'password'
}
{
'HTTP_AUTHORIZATION'
=>
ActionController
::
HttpAuthentication
::
Basic
.
encode_credentials
(
username
,
password
)
}
end
end
def
client_basic_auth_header
(
client
)
basic_auth_header
(
client
.
uid
,
client
.
secret
)
end
def
request_oauth_token
(
user
,
headers
=
{})
post
'/oauth/token'
,
params:
{
username:
user
.
username
,
password:
user
.
password
,
grant_type:
'password'
},
headers:
headers
end
let
(
:client
)
{
create
(
:oauth_application
)
}
context
'when user has 2FA enabled'
do
context
'when user has 2FA enabled'
do
it
'does not create an access token'
do
it
'does not create an access token'
do
user
=
create
(
:user
,
:two_factor
)
user
=
create
(
:user
,
:two_factor
)
request_oauth_token
(
user
)
request_oauth_token
(
user
,
client_basic_auth_header
(
client
)
)
expect
(
response
).
to
have_gitlab_http_status
(
:unauthorized
)
expect
(
response
).
to
have_gitlab_http_status
(
:unauthorized
)
expect
(
json_response
[
'error'
]).
to
eq
(
'invalid_grant'
)
expect
(
json_response
[
'error'
]).
to
eq
(
'invalid_grant'
)
...
@@ -20,13 +37,41 @@ describe 'OAuth tokens' do
...
@@ -20,13 +37,41 @@ describe 'OAuth tokens' do
end
end
context
'when user does not have 2FA enabled'
do
context
'when user does not have 2FA enabled'
do
it
'creates an access token'
do
# NOTE: using ROPS grant flow without client credentials will be deprecated
user
=
create
(
:user
)
# and removed in the next version of Doorkeeper.
context
'when no client credentials provided'
do
it
'creates an access token'
do
user
=
create
(
:user
)
request_oauth_token
(
user
)
expect
(
response
).
to
have_gitlab_http_status
(
:ok
)
expect
(
json_response
[
'access_token'
]).
not_to
be_nil
end
end
context
'when client credentials provided'
do
context
"with valid credentials"
do
it
'creates an access token'
do
user
=
create
(
:user
)
request_oauth_token
(
user
,
client_basic_auth_header
(
client
))
expect
(
response
).
to
have_gitlab_http_status
(
:ok
)
expect
(
json_response
[
'access_token'
]).
not_to
be_nil
end
end
context
"with invalid credentials"
do
it
'does not create an access token'
do
user
=
create
(
:user
)
request_oauth_token
(
user
)
request_oauth_token
(
user
,
basic_auth_header
(
client
.
uid
,
'invalid secret'
)
)
expect
(
response
).
to
have_gitlab_http_status
(
:ok
)
expect
(
response
).
to
have_gitlab_http_status
(
:unauthorized
)
expect
(
json_response
[
'access_token'
]).
not_to
be_nil
expect
(
json_response
[
'error'
]).
to
eq
(
'invalid_client'
)
end
end
end
end
end
end
...
@@ -40,7 +85,7 @@ describe 'OAuth tokens' do
...
@@ -40,7 +85,7 @@ describe 'OAuth tokens' do
before
do
before
do
user
.
block
user
.
block
request_oauth_token
(
user
)
request_oauth_token
(
user
,
client_basic_auth_header
(
client
)
)
end
end
include_examples
'does not create an access token'
include_examples
'does not create an access token'
...
@@ -50,7 +95,7 @@ describe 'OAuth tokens' do
...
@@ -50,7 +95,7 @@ describe 'OAuth tokens' do
before
do
before
do
user
.
ldap_block
user
.
ldap_block
request_oauth_token
(
user
)
request_oauth_token
(
user
,
client_basic_auth_header
(
client
)
)
end
end
include_examples
'does not create an access token'
include_examples
'does not create an access token'
...
@@ -60,7 +105,7 @@ describe 'OAuth tokens' do
...
@@ -60,7 +105,7 @@ describe 'OAuth tokens' do
before
do
before
do
user
.
update!
(
confirmed_at:
nil
)
user
.
update!
(
confirmed_at:
nil
)
request_oauth_token
(
user
)
request_oauth_token
(
user
,
client_basic_auth_header
(
client
)
)
end
end
include_examples
'does not create an access token'
include_examples
'does not create an access token'
...
...
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