doorkeeper 4.2.6 → 5.5.4
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of doorkeeper might be problematic. Click here for more details.
- checksums.yaml +5 -5
- data/CHANGELOG.md +1049 -0
- data/README.md +110 -353
- data/app/assets/stylesheets/doorkeeper/admin/application.css +2 -2
- data/app/controllers/doorkeeper/application_controller.rb +6 -7
- data/app/controllers/doorkeeper/application_metal_controller.rb +7 -11
- data/app/controllers/doorkeeper/applications_controller.rb +65 -16
- data/app/controllers/doorkeeper/authorizations_controller.rb +97 -17
- data/app/controllers/doorkeeper/authorized_applications_controller.rb +22 -3
- data/app/controllers/doorkeeper/token_info_controller.rb +16 -4
- data/app/controllers/doorkeeper/tokens_controller.rb +115 -38
- data/app/helpers/doorkeeper/dashboard_helper.rb +10 -6
- data/app/views/doorkeeper/applications/_delete_form.html.erb +3 -1
- data/app/views/doorkeeper/applications/_form.html.erb +33 -21
- data/app/views/doorkeeper/applications/edit.html.erb +1 -1
- data/app/views/doorkeeper/applications/index.html.erb +18 -6
- data/app/views/doorkeeper/applications/new.html.erb +1 -1
- data/app/views/doorkeeper/applications/show.html.erb +40 -16
- data/app/views/doorkeeper/authorizations/error.html.erb +1 -1
- data/app/views/doorkeeper/authorizations/form_post.html.erb +15 -0
- data/app/views/doorkeeper/authorizations/new.html.erb +6 -0
- data/app/views/doorkeeper/authorized_applications/index.html.erb +0 -1
- data/app/views/layouts/doorkeeper/admin.html.erb +16 -14
- data/config/locales/en.yml +34 -7
- data/lib/doorkeeper/config/abstract_builder.rb +28 -0
- data/lib/doorkeeper/config/option.rb +82 -0
- data/lib/doorkeeper/config/validations.rb +53 -0
- data/lib/doorkeeper/config.rb +514 -167
- data/lib/doorkeeper/engine.rb +11 -5
- data/lib/doorkeeper/errors.rb +25 -16
- data/lib/doorkeeper/grant_flow/fallback_flow.rb +15 -0
- data/lib/doorkeeper/grant_flow/flow.rb +44 -0
- data/lib/doorkeeper/grant_flow/registry.rb +50 -0
- data/lib/doorkeeper/grant_flow.rb +45 -0
- data/lib/doorkeeper/grape/authorization_decorator.rb +6 -4
- data/lib/doorkeeper/grape/helpers.rb +23 -12
- data/lib/doorkeeper/helpers/controller.rb +51 -14
- data/lib/doorkeeper/models/access_grant_mixin.rb +94 -27
- data/lib/doorkeeper/models/access_token_mixin.rb +284 -96
- data/lib/doorkeeper/models/application_mixin.rb +58 -27
- data/lib/doorkeeper/models/concerns/accessible.rb +2 -0
- data/lib/doorkeeper/models/concerns/expirable.rb +12 -6
- data/lib/doorkeeper/models/concerns/orderable.rb +15 -0
- data/lib/doorkeeper/models/concerns/ownership.rb +4 -7
- data/lib/doorkeeper/models/concerns/resource_ownerable.rb +47 -0
- data/lib/doorkeeper/models/concerns/reusable.rb +19 -0
- data/lib/doorkeeper/models/concerns/revocable.rb +3 -27
- data/lib/doorkeeper/models/concerns/scopes.rb +12 -2
- data/lib/doorkeeper/models/concerns/secret_storable.rb +106 -0
- data/lib/doorkeeper/oauth/authorization/code.rb +48 -12
- data/lib/doorkeeper/oauth/authorization/context.rb +17 -0
- data/lib/doorkeeper/oauth/authorization/token.rb +66 -28
- data/lib/doorkeeper/oauth/authorization/uri_builder.rb +7 -5
- data/lib/doorkeeper/oauth/authorization_code_request.rb +63 -10
- data/lib/doorkeeper/oauth/base_request.rb +35 -19
- data/lib/doorkeeper/oauth/base_response.rb +2 -0
- data/lib/doorkeeper/oauth/client/credentials.rb +9 -7
- data/lib/doorkeeper/oauth/client.rb +10 -11
- data/lib/doorkeeper/oauth/client_credentials/creator.rb +47 -4
- data/lib/doorkeeper/oauth/client_credentials/issuer.rb +16 -9
- data/lib/doorkeeper/oauth/client_credentials/validator.rb +56 -0
- data/lib/doorkeeper/oauth/client_credentials_request.rb +10 -11
- data/lib/doorkeeper/oauth/code_request.rb +8 -12
- data/lib/doorkeeper/oauth/code_response.rb +27 -15
- data/lib/doorkeeper/oauth/error.rb +5 -3
- data/lib/doorkeeper/oauth/error_response.rb +35 -15
- data/lib/doorkeeper/oauth/forbidden_token_response.rb +11 -3
- data/lib/doorkeeper/oauth/helpers/scope_checker.rb +23 -18
- data/lib/doorkeeper/oauth/helpers/unique_token.rb +20 -3
- data/lib/doorkeeper/oauth/helpers/uri_checker.rb +53 -3
- data/lib/doorkeeper/oauth/hooks/context.rb +21 -0
- data/lib/doorkeeper/oauth/invalid_request_response.rb +43 -0
- data/lib/doorkeeper/oauth/invalid_token_response.rb +29 -5
- data/lib/doorkeeper/oauth/nonstandard.rb +39 -0
- data/lib/doorkeeper/oauth/password_access_token_request.rb +44 -10
- data/lib/doorkeeper/oauth/pre_authorization.rb +135 -26
- data/lib/doorkeeper/oauth/refresh_token_request.rb +60 -31
- data/lib/doorkeeper/oauth/scopes.rb +26 -12
- data/lib/doorkeeper/oauth/token.rb +13 -9
- data/lib/doorkeeper/oauth/token_introspection.rb +202 -0
- data/lib/doorkeeper/oauth/token_request.rb +8 -20
- data/lib/doorkeeper/oauth/token_response.rb +14 -10
- data/lib/doorkeeper/oauth.rb +13 -0
- data/lib/doorkeeper/orm/active_record/access_grant.rb +6 -4
- data/lib/doorkeeper/orm/active_record/access_token.rb +5 -42
- data/lib/doorkeeper/orm/active_record/application.rb +6 -20
- data/lib/doorkeeper/orm/active_record/mixins/access_grant.rb +69 -0
- data/lib/doorkeeper/orm/active_record/mixins/access_token.rb +60 -0
- data/lib/doorkeeper/orm/active_record/mixins/application.rb +199 -0
- data/lib/doorkeeper/orm/active_record/redirect_uri_validator.rb +66 -0
- data/lib/doorkeeper/orm/active_record/stale_records_cleaner.rb +33 -0
- data/lib/doorkeeper/orm/active_record.rb +37 -8
- data/lib/doorkeeper/rails/helpers.rb +14 -13
- data/lib/doorkeeper/rails/routes/abstract_router.rb +35 -0
- data/lib/doorkeeper/rails/routes/mapper.rb +4 -2
- data/lib/doorkeeper/rails/routes/mapping.rb +9 -7
- data/lib/doorkeeper/rails/routes/registry.rb +45 -0
- data/lib/doorkeeper/rails/routes.rb +41 -28
- data/lib/doorkeeper/rake/db.rake +40 -0
- data/lib/doorkeeper/rake/setup.rake +11 -0
- data/lib/doorkeeper/rake.rb +14 -0
- data/lib/doorkeeper/request/authorization_code.rb +6 -4
- data/lib/doorkeeper/request/client_credentials.rb +3 -3
- data/lib/doorkeeper/request/code.rb +1 -1
- data/lib/doorkeeper/request/password.rb +5 -14
- data/lib/doorkeeper/request/refresh_token.rb +6 -5
- data/lib/doorkeeper/request/strategy.rb +4 -2
- data/lib/doorkeeper/request/token.rb +1 -1
- data/lib/doorkeeper/request.rb +62 -29
- data/lib/doorkeeper/secret_storing/base.rb +64 -0
- data/lib/doorkeeper/secret_storing/bcrypt.rb +60 -0
- data/lib/doorkeeper/secret_storing/plain.rb +33 -0
- data/lib/doorkeeper/secret_storing/sha256_hash.rb +26 -0
- data/lib/doorkeeper/server.rb +9 -11
- data/lib/doorkeeper/stale_records_cleaner.rb +24 -0
- data/lib/doorkeeper/validations.rb +5 -2
- data/lib/doorkeeper/version.rb +12 -1
- data/lib/doorkeeper.rb +111 -62
- data/lib/generators/doorkeeper/application_owner_generator.rb +28 -13
- data/lib/generators/doorkeeper/confidential_applications_generator.rb +33 -0
- data/lib/generators/doorkeeper/enable_polymorphic_resource_owner_generator.rb +39 -0
- data/lib/generators/doorkeeper/install_generator.rb +19 -9
- data/lib/generators/doorkeeper/migration_generator.rb +27 -10
- data/lib/generators/doorkeeper/pkce_generator.rb +33 -0
- data/lib/generators/doorkeeper/previous_refresh_token_generator.rb +31 -19
- data/lib/generators/doorkeeper/templates/add_confidential_to_applications.rb.erb +13 -0
- data/lib/generators/doorkeeper/templates/add_owner_to_application_migration.rb.erb +9 -0
- data/{spec/dummy/db/migrate/20160320211015_add_previous_refresh_token_to_access_tokens.rb → lib/generators/doorkeeper/templates/add_previous_refresh_token_to_access_tokens.rb.erb} +3 -1
- data/lib/generators/doorkeeper/templates/enable_pkce_migration.rb.erb +8 -0
- data/lib/generators/doorkeeper/templates/enable_polymorphic_resource_owner_migration.rb.erb +17 -0
- data/lib/generators/doorkeeper/templates/initializer.rb +412 -33
- data/lib/generators/doorkeeper/templates/migration.rb.erb +88 -0
- data/lib/generators/doorkeeper/views_generator.rb +8 -4
- data/vendor/assets/stylesheets/doorkeeper/bootstrap.min.css +4 -5
- metadata +114 -276
- data/.coveralls.yml +0 -1
- data/.gitignore +0 -19
- data/.hound.yml +0 -13
- data/.rspec +0 -1
- data/.travis.yml +0 -26
- data/Appraisals +0 -14
- data/CONTRIBUTING.md +0 -47
- data/Gemfile +0 -10
- data/NEWS.md +0 -606
- data/RELEASING.md +0 -10
- data/Rakefile +0 -20
- data/app/validators/redirect_uri_validator.rb +0 -34
- data/doorkeeper.gemspec +0 -29
- data/gemfiles/rails_4_2.gemfile +0 -11
- data/gemfiles/rails_5_0.gemfile +0 -12
- data/gemfiles/rails_5_1.gemfile +0 -13
- data/lib/doorkeeper/oauth/client_credentials/validation.rb +0 -45
- data/lib/generators/doorkeeper/templates/add_owner_to_application_migration.rb +0 -7
- data/lib/generators/doorkeeper/templates/add_previous_refresh_token_to_access_tokens.rb +0 -11
- data/lib/generators/doorkeeper/templates/migration.rb +0 -68
- data/spec/controllers/application_metal_controller.rb +0 -10
- data/spec/controllers/applications_controller_spec.rb +0 -58
- data/spec/controllers/authorizations_controller_spec.rb +0 -218
- data/spec/controllers/protected_resources_controller_spec.rb +0 -300
- data/spec/controllers/token_info_controller_spec.rb +0 -52
- data/spec/controllers/tokens_controller_spec.rb +0 -88
- data/spec/dummy/Rakefile +0 -7
- data/spec/dummy/app/controllers/application_controller.rb +0 -3
- data/spec/dummy/app/controllers/custom_authorizations_controller.rb +0 -7
- data/spec/dummy/app/controllers/full_protected_resources_controller.rb +0 -12
- data/spec/dummy/app/controllers/home_controller.rb +0 -17
- data/spec/dummy/app/controllers/metal_controller.rb +0 -11
- data/spec/dummy/app/controllers/semi_protected_resources_controller.rb +0 -11
- data/spec/dummy/app/helpers/application_helper.rb +0 -5
- data/spec/dummy/app/models/user.rb +0 -5
- data/spec/dummy/app/views/home/index.html.erb +0 -0
- data/spec/dummy/app/views/layouts/application.html.erb +0 -14
- data/spec/dummy/config/application.rb +0 -23
- data/spec/dummy/config/boot.rb +0 -9
- data/spec/dummy/config/database.yml +0 -15
- data/spec/dummy/config/environment.rb +0 -5
- data/spec/dummy/config/environments/development.rb +0 -29
- data/spec/dummy/config/environments/production.rb +0 -62
- data/spec/dummy/config/environments/test.rb +0 -44
- data/spec/dummy/config/initializers/active_record_belongs_to_required_by_default.rb +0 -6
- data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/spec/dummy/config/initializers/doorkeeper.rb +0 -96
- data/spec/dummy/config/initializers/secret_token.rb +0 -9
- data/spec/dummy/config/initializers/session_store.rb +0 -8
- data/spec/dummy/config/initializers/wrap_parameters.rb +0 -14
- data/spec/dummy/config/locales/doorkeeper.en.yml +0 -5
- data/spec/dummy/config/routes.rb +0 -52
- data/spec/dummy/config.ru +0 -4
- data/spec/dummy/db/migrate/20111122132257_create_users.rb +0 -9
- data/spec/dummy/db/migrate/20120312140401_add_password_to_users.rb +0 -5
- data/spec/dummy/db/migrate/20151223192035_create_doorkeeper_tables.rb +0 -60
- data/spec/dummy/db/migrate/20151223200000_add_owner_to_application.rb +0 -7
- data/spec/dummy/db/schema.rb +0 -67
- data/spec/dummy/public/404.html +0 -26
- data/spec/dummy/public/422.html +0 -26
- data/spec/dummy/public/500.html +0 -26
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +0 -6
- data/spec/factories.rb +0 -28
- data/spec/generators/application_owner_generator_spec.rb +0 -22
- data/spec/generators/install_generator_spec.rb +0 -31
- data/spec/generators/migration_generator_spec.rb +0 -20
- data/spec/generators/templates/routes.rb +0 -3
- data/spec/generators/views_generator_spec.rb +0 -27
- data/spec/helpers/doorkeeper/dashboard_helper_spec.rb +0 -24
- data/spec/lib/config_spec.rb +0 -334
- data/spec/lib/doorkeeper_spec.rb +0 -150
- data/spec/lib/models/expirable_spec.rb +0 -50
- data/spec/lib/models/revocable_spec.rb +0 -59
- data/spec/lib/models/scopes_spec.rb +0 -43
- data/spec/lib/oauth/authorization/uri_builder_spec.rb +0 -41
- data/spec/lib/oauth/authorization_code_request_spec.rb +0 -80
- data/spec/lib/oauth/base_request_spec.rb +0 -160
- data/spec/lib/oauth/base_response_spec.rb +0 -45
- data/spec/lib/oauth/client/credentials_spec.rb +0 -88
- data/spec/lib/oauth/client_credentials/creator_spec.rb +0 -44
- data/spec/lib/oauth/client_credentials/issuer_spec.rb +0 -86
- data/spec/lib/oauth/client_credentials/validation_spec.rb +0 -54
- data/spec/lib/oauth/client_credentials_integration_spec.rb +0 -27
- data/spec/lib/oauth/client_credentials_request_spec.rb +0 -104
- data/spec/lib/oauth/client_spec.rb +0 -39
- data/spec/lib/oauth/code_request_spec.rb +0 -45
- data/spec/lib/oauth/code_response_spec.rb +0 -34
- data/spec/lib/oauth/error_response_spec.rb +0 -61
- data/spec/lib/oauth/error_spec.rb +0 -23
- data/spec/lib/oauth/forbidden_token_response_spec.rb +0 -23
- data/spec/lib/oauth/helpers/scope_checker_spec.rb +0 -64
- data/spec/lib/oauth/helpers/unique_token_spec.rb +0 -20
- data/spec/lib/oauth/helpers/uri_checker_spec.rb +0 -104
- data/spec/lib/oauth/invalid_token_response_spec.rb +0 -56
- data/spec/lib/oauth/password_access_token_request_spec.rb +0 -90
- data/spec/lib/oauth/pre_authorization_spec.rb +0 -155
- data/spec/lib/oauth/refresh_token_request_spec.rb +0 -154
- data/spec/lib/oauth/scopes_spec.rb +0 -122
- data/spec/lib/oauth/token_request_spec.rb +0 -98
- data/spec/lib/oauth/token_response_spec.rb +0 -85
- data/spec/lib/oauth/token_spec.rb +0 -116
- data/spec/lib/request/strategy_spec.rb +0 -53
- data/spec/lib/server_spec.rb +0 -49
- data/spec/models/doorkeeper/access_grant_spec.rb +0 -36
- data/spec/models/doorkeeper/access_token_spec.rb +0 -394
- data/spec/models/doorkeeper/application_spec.rb +0 -179
- data/spec/requests/applications/applications_request_spec.rb +0 -94
- data/spec/requests/applications/authorized_applications_spec.rb +0 -30
- data/spec/requests/endpoints/authorization_spec.rb +0 -71
- data/spec/requests/endpoints/token_spec.rb +0 -64
- data/spec/requests/flows/authorization_code_errors_spec.rb +0 -76
- data/spec/requests/flows/authorization_code_spec.rb +0 -148
- data/spec/requests/flows/client_credentials_spec.rb +0 -58
- data/spec/requests/flows/implicit_grant_errors_spec.rb +0 -32
- data/spec/requests/flows/implicit_grant_spec.rb +0 -61
- data/spec/requests/flows/password_spec.rb +0 -115
- data/spec/requests/flows/refresh_token_spec.rb +0 -174
- data/spec/requests/flows/revoke_token_spec.rb +0 -157
- data/spec/requests/flows/skip_authorization_spec.rb +0 -59
- data/spec/requests/protected_resources/metal_spec.rb +0 -14
- data/spec/requests/protected_resources/private_api_spec.rb +0 -81
- data/spec/routing/custom_controller_routes_spec.rb +0 -71
- data/spec/routing/default_routes_spec.rb +0 -35
- data/spec/routing/scoped_routes_spec.rb +0 -31
- data/spec/spec_helper.rb +0 -4
- data/spec/spec_helper_integration.rb +0 -63
- data/spec/support/dependencies/factory_girl.rb +0 -2
- data/spec/support/helpers/access_token_request_helper.rb +0 -11
- data/spec/support/helpers/authorization_request_helper.rb +0 -41
- data/spec/support/helpers/config_helper.rb +0 -9
- data/spec/support/helpers/model_helper.rb +0 -67
- data/spec/support/helpers/request_spec_helper.rb +0 -84
- data/spec/support/helpers/url_helper.rb +0 -55
- data/spec/support/http_method_shim.rb +0 -38
- data/spec/support/orm/active_record.rb +0 -3
- data/spec/support/shared/controllers_shared_context.rb +0 -69
- data/spec/support/shared/models_shared_examples.rb +0 -52
- data/spec/validators/redirect_uri_validator_spec.rb +0 -78
@@ -1,104 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
require 'active_support/all'
|
3
|
-
require 'active_model'
|
4
|
-
require 'doorkeeper/oauth/client_credentials_request'
|
5
|
-
|
6
|
-
module Doorkeeper::OAuth
|
7
|
-
describe ClientCredentialsRequest do
|
8
|
-
let(:server) do
|
9
|
-
double(
|
10
|
-
default_scopes: nil,
|
11
|
-
custom_access_token_expires_in: ->(_app) { nil }
|
12
|
-
)
|
13
|
-
end
|
14
|
-
let(:application) { double :application, scopes: Scopes.from_string('') }
|
15
|
-
let(:client) { double :client, application: application }
|
16
|
-
let(:token_creator) { double :issuer, create: true, token: double }
|
17
|
-
|
18
|
-
subject { ClientCredentialsRequest.new(server, client) }
|
19
|
-
|
20
|
-
before do
|
21
|
-
subject.issuer = token_creator
|
22
|
-
end
|
23
|
-
|
24
|
-
it 'issues an access token for the current client' do
|
25
|
-
expect(token_creator).to receive(:create).with(client, nil)
|
26
|
-
subject.authorize
|
27
|
-
end
|
28
|
-
|
29
|
-
it 'has successful response when issue was created' do
|
30
|
-
subject.authorize
|
31
|
-
expect(subject.response).to be_a(TokenResponse)
|
32
|
-
end
|
33
|
-
|
34
|
-
context 'if issue was not created' do
|
35
|
-
before do
|
36
|
-
subject.issuer = double create: false, error: :invalid
|
37
|
-
end
|
38
|
-
|
39
|
-
it 'has an error response' do
|
40
|
-
subject.authorize
|
41
|
-
expect(subject.response).to be_a(Doorkeeper::OAuth::ErrorResponse)
|
42
|
-
end
|
43
|
-
|
44
|
-
it 'delegates the error to issuer' do
|
45
|
-
subject.authorize
|
46
|
-
expect(subject.error).to eq(:invalid)
|
47
|
-
end
|
48
|
-
end
|
49
|
-
|
50
|
-
context 'with scopes' do
|
51
|
-
let(:default_scopes) { Doorkeeper::OAuth::Scopes.from_string('public email') }
|
52
|
-
|
53
|
-
before do
|
54
|
-
allow(server).to receive(:default_scopes).and_return(default_scopes)
|
55
|
-
end
|
56
|
-
|
57
|
-
it 'issues an access token with default scopes if none was requested' do
|
58
|
-
expect(token_creator).to receive(:create).with(client, default_scopes)
|
59
|
-
subject.authorize
|
60
|
-
end
|
61
|
-
|
62
|
-
it 'issues an access token with requested scopes' do
|
63
|
-
subject = ClientCredentialsRequest.new(server, client, scope: 'email')
|
64
|
-
subject.issuer = token_creator
|
65
|
-
expect(token_creator).to receive(:create).with(client, Doorkeeper::OAuth::Scopes.from_string('email'))
|
66
|
-
subject.authorize
|
67
|
-
end
|
68
|
-
end
|
69
|
-
|
70
|
-
context 'with restricted client' do
|
71
|
-
let(:default_scopes) do
|
72
|
-
Doorkeeper::OAuth::Scopes.from_string('public email')
|
73
|
-
end
|
74
|
-
let(:server_scopes) do
|
75
|
-
Doorkeeper::OAuth::Scopes.from_string('public email phone')
|
76
|
-
end
|
77
|
-
let(:client_scopes) do
|
78
|
-
Doorkeeper::OAuth::Scopes.from_string('public phone')
|
79
|
-
end
|
80
|
-
|
81
|
-
before do
|
82
|
-
allow(server).to receive(:default_scopes).and_return(default_scopes)
|
83
|
-
allow(server).to receive(:scopes).and_return(server_scopes)
|
84
|
-
allow(server).to receive(:access_token_expires_in).and_return(100)
|
85
|
-
allow(application).to receive(:scopes).and_return(client_scopes)
|
86
|
-
allow(client).to receive(:id).and_return(nil)
|
87
|
-
end
|
88
|
-
|
89
|
-
it 'delegates the error to issuer if no scope was requested' do
|
90
|
-
subject = ClientCredentialsRequest.new(server, client)
|
91
|
-
subject.authorize
|
92
|
-
expect(subject.response).to be_a(Doorkeeper::OAuth::ErrorResponse)
|
93
|
-
expect(subject.error).to eq(:invalid_scope)
|
94
|
-
end
|
95
|
-
|
96
|
-
it 'issues an access token with requested scopes' do
|
97
|
-
subject = ClientCredentialsRequest.new(server, client, scope: 'phone')
|
98
|
-
subject.authorize
|
99
|
-
expect(subject.response).to be_a(Doorkeeper::OAuth::TokenResponse)
|
100
|
-
expect(subject.response.token.scopes_string).to eq('phone')
|
101
|
-
end
|
102
|
-
end
|
103
|
-
end
|
104
|
-
end
|
@@ -1,39 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
require 'active_support/core_ext/module/delegation'
|
3
|
-
require 'active_support/core_ext/string'
|
4
|
-
require 'doorkeeper/oauth/client'
|
5
|
-
|
6
|
-
module Doorkeeper::OAuth
|
7
|
-
describe Client do
|
8
|
-
describe :find do
|
9
|
-
let(:method) { double }
|
10
|
-
|
11
|
-
it 'finds the client via uid' do
|
12
|
-
client = double
|
13
|
-
expect(method).to receive(:call).with('uid').and_return(client)
|
14
|
-
expect(Client.find('uid', method)).to be_a(Client)
|
15
|
-
end
|
16
|
-
|
17
|
-
it 'returns nil if client was not found' do
|
18
|
-
expect(method).to receive(:call).with('uid').and_return(nil)
|
19
|
-
expect(Client.find('uid', method)).to be_nil
|
20
|
-
end
|
21
|
-
end
|
22
|
-
|
23
|
-
describe :authenticate do
|
24
|
-
it 'returns the authenticated client via credentials' do
|
25
|
-
credentials = Client::Credentials.new('some-uid', 'some-secret')
|
26
|
-
authenticator = double
|
27
|
-
expect(authenticator).to receive(:call).with('some-uid', 'some-secret').and_return(double)
|
28
|
-
expect(Client.authenticate(credentials, authenticator)).to be_a(Client)
|
29
|
-
end
|
30
|
-
|
31
|
-
it 'returns nil if client was not authenticated' do
|
32
|
-
credentials = Client::Credentials.new('some-uid', 'some-secret')
|
33
|
-
authenticator = double
|
34
|
-
expect(authenticator).to receive(:call).with('some-uid', 'some-secret').and_return(nil)
|
35
|
-
expect(Client.authenticate(credentials, authenticator)).to be_nil
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
39
|
-
end
|
@@ -1,45 +0,0 @@
|
|
1
|
-
require 'spec_helper_integration'
|
2
|
-
|
3
|
-
module Doorkeeper::OAuth
|
4
|
-
describe CodeRequest do
|
5
|
-
let(:pre_auth) do
|
6
|
-
double(
|
7
|
-
:pre_auth,
|
8
|
-
client: double(:application, id: 9990),
|
9
|
-
redirect_uri: 'http://tst.com/cb',
|
10
|
-
scopes: nil,
|
11
|
-
state: nil,
|
12
|
-
error: nil,
|
13
|
-
authorizable?: true
|
14
|
-
)
|
15
|
-
end
|
16
|
-
|
17
|
-
let(:owner) { double :owner, id: 8900 }
|
18
|
-
|
19
|
-
subject do
|
20
|
-
CodeRequest.new(pre_auth, owner)
|
21
|
-
end
|
22
|
-
|
23
|
-
it 'creates an access grant' do
|
24
|
-
expect do
|
25
|
-
subject.authorize
|
26
|
-
end.to change { Doorkeeper::AccessGrant.count }.by(1)
|
27
|
-
end
|
28
|
-
|
29
|
-
it 'returns a code response' do
|
30
|
-
expect(subject.authorize).to be_a(CodeResponse)
|
31
|
-
end
|
32
|
-
|
33
|
-
it 'does not create grant when not authorizable' do
|
34
|
-
allow(pre_auth).to receive(:authorizable?).and_return(false)
|
35
|
-
expect do
|
36
|
-
subject.authorize
|
37
|
-
end.to_not change { Doorkeeper::AccessGrant.count }
|
38
|
-
end
|
39
|
-
|
40
|
-
it 'returns a error response' do
|
41
|
-
allow(pre_auth).to receive(:authorizable?).and_return(false)
|
42
|
-
expect(subject.authorize).to be_a(ErrorResponse)
|
43
|
-
end
|
44
|
-
end
|
45
|
-
end
|
@@ -1,34 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
module Doorkeeper
|
4
|
-
module OAuth
|
5
|
-
describe CodeResponse do
|
6
|
-
describe '.redirect_uri' do
|
7
|
-
context 'when generating the redirect URI for an implicit grant' do
|
8
|
-
let :pre_auth do
|
9
|
-
double(
|
10
|
-
:pre_auth,
|
11
|
-
client: double(:application, id: 1),
|
12
|
-
redirect_uri: 'http://tst.com/cb',
|
13
|
-
state: nil,
|
14
|
-
scopes: Scopes.from_string('public'),
|
15
|
-
)
|
16
|
-
end
|
17
|
-
|
18
|
-
let :auth do
|
19
|
-
Authorization::Token.new(pre_auth, double(id: 1)).tap do |c|
|
20
|
-
c.issue_token
|
21
|
-
allow(c.token).to receive(:expires_in_seconds).and_return(3600)
|
22
|
-
end
|
23
|
-
end
|
24
|
-
|
25
|
-
subject { CodeResponse.new(pre_auth, auth, response_on_fragment: true).redirect_uri }
|
26
|
-
|
27
|
-
it 'includes the remaining TTL of the token relative to the time the token was generated' do
|
28
|
-
expect(subject).to include('expires_in=3600')
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
32
|
-
end
|
33
|
-
end
|
34
|
-
end
|
@@ -1,61 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
require 'active_model'
|
3
|
-
require 'doorkeeper/oauth/error'
|
4
|
-
require 'doorkeeper/oauth/error_response'
|
5
|
-
|
6
|
-
module Doorkeeper::OAuth
|
7
|
-
describe ErrorResponse do
|
8
|
-
describe '#status' do
|
9
|
-
it 'should have a status of unauthorized' do
|
10
|
-
expect(subject.status).to eq(:unauthorized)
|
11
|
-
end
|
12
|
-
end
|
13
|
-
|
14
|
-
describe :from_request do
|
15
|
-
it 'has the error from request' do
|
16
|
-
error = ErrorResponse.from_request double(error: :some_error)
|
17
|
-
expect(error.name).to eq(:some_error)
|
18
|
-
end
|
19
|
-
|
20
|
-
it 'ignores state if request does not respond to state' do
|
21
|
-
error = ErrorResponse.from_request double(error: :some_error)
|
22
|
-
expect(error.state).to be_nil
|
23
|
-
end
|
24
|
-
|
25
|
-
it 'has state if request responds to state' do
|
26
|
-
error = ErrorResponse.from_request double(error: :some_error, state: :hello)
|
27
|
-
expect(error.state).to eq(:hello)
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
31
|
-
it 'ignores empty error values' do
|
32
|
-
subject = ErrorResponse.new(error: :some_error, state: nil)
|
33
|
-
expect(subject.body).not_to have_key(:state)
|
34
|
-
end
|
35
|
-
|
36
|
-
describe '.body' do
|
37
|
-
subject { ErrorResponse.new(name: :some_error, state: :some_state).body }
|
38
|
-
|
39
|
-
describe '#body' do
|
40
|
-
it { expect(subject).to have_key(:error) }
|
41
|
-
it { expect(subject).to have_key(:error_description) }
|
42
|
-
it { expect(subject).to have_key(:state) }
|
43
|
-
end
|
44
|
-
end
|
45
|
-
|
46
|
-
describe '.headers' do
|
47
|
-
let(:error_response) { ErrorResponse.new(name: :some_error, state: :some_state) }
|
48
|
-
subject { error_response.headers }
|
49
|
-
|
50
|
-
it { expect(subject).to include 'WWW-Authenticate' }
|
51
|
-
|
52
|
-
describe "WWW-Authenticate header" do
|
53
|
-
subject { error_response.headers["WWW-Authenticate"] }
|
54
|
-
|
55
|
-
it { expect(subject).to include("realm=\"#{error_response.realm}\"") }
|
56
|
-
it { expect(subject).to include("error=\"#{error_response.name}\"") }
|
57
|
-
it { expect(subject).to include("error_description=\"#{error_response.description}\"") }
|
58
|
-
end
|
59
|
-
end
|
60
|
-
end
|
61
|
-
end
|
@@ -1,23 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
require 'active_support/i18n'
|
3
|
-
require 'doorkeeper/oauth/error'
|
4
|
-
|
5
|
-
module Doorkeeper::OAuth
|
6
|
-
describe Error do
|
7
|
-
subject(:error) { Error.new(:some_error, :some_state) }
|
8
|
-
|
9
|
-
it { expect(subject).to respond_to(:name) }
|
10
|
-
it { expect(subject).to respond_to(:state) }
|
11
|
-
|
12
|
-
describe :description do
|
13
|
-
it 'is translated from translation messages' do
|
14
|
-
expect(I18n).to receive(:translate).with(
|
15
|
-
:some_error,
|
16
|
-
scope: [:doorkeeper, :errors, :messages],
|
17
|
-
default: :server_error
|
18
|
-
)
|
19
|
-
error.description
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
@@ -1,23 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
require 'active_model'
|
3
|
-
require 'doorkeeper'
|
4
|
-
require 'doorkeeper/oauth/forbidden_token_response'
|
5
|
-
|
6
|
-
module Doorkeeper::OAuth
|
7
|
-
describe ForbiddenTokenResponse do
|
8
|
-
describe '#name' do
|
9
|
-
it { expect(subject.name).to eq(:invalid_scope) }
|
10
|
-
end
|
11
|
-
|
12
|
-
describe '#status' do
|
13
|
-
it { expect(subject.status).to eq(:forbidden) }
|
14
|
-
end
|
15
|
-
|
16
|
-
describe :from_scopes do
|
17
|
-
it 'should have a list of acceptable scopes' do
|
18
|
-
response = ForbiddenTokenResponse.from_scopes(["public"])
|
19
|
-
expect(response.description).to include('public')
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
@@ -1,64 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
require 'active_support/core_ext/string'
|
3
|
-
require 'doorkeeper/oauth/helpers/scope_checker'
|
4
|
-
require 'doorkeeper/oauth/scopes'
|
5
|
-
|
6
|
-
module Doorkeeper::OAuth::Helpers
|
7
|
-
describe ScopeChecker, '.valid?' do
|
8
|
-
let(:server_scopes) { Doorkeeper::OAuth::Scopes.new }
|
9
|
-
|
10
|
-
it 'is valid if scope is present' do
|
11
|
-
server_scopes.add :scope
|
12
|
-
expect(ScopeChecker.valid?('scope', server_scopes)).to be_truthy
|
13
|
-
end
|
14
|
-
|
15
|
-
it 'is invalid if includes tabs space' do
|
16
|
-
expect(ScopeChecker.valid?("\tsomething", server_scopes)).to be_falsey
|
17
|
-
end
|
18
|
-
|
19
|
-
it 'is invalid if scope is not present' do
|
20
|
-
expect(ScopeChecker.valid?(nil, server_scopes)).to be_falsey
|
21
|
-
end
|
22
|
-
|
23
|
-
it 'is invalid if scope is blank' do
|
24
|
-
expect(ScopeChecker.valid?(' ', server_scopes)).to be_falsey
|
25
|
-
end
|
26
|
-
|
27
|
-
it 'is invalid if includes return space' do
|
28
|
-
expect(ScopeChecker.valid?("scope\r", server_scopes)).to be_falsey
|
29
|
-
end
|
30
|
-
|
31
|
-
it 'is invalid if includes new lines' do
|
32
|
-
expect(ScopeChecker.valid?("scope\nanother", server_scopes)).to be_falsey
|
33
|
-
end
|
34
|
-
|
35
|
-
it 'is invalid if any scope is not included in server scopes' do
|
36
|
-
expect(ScopeChecker.valid?('scope another', server_scopes)).to be_falsey
|
37
|
-
end
|
38
|
-
|
39
|
-
context 'with application_scopes' do
|
40
|
-
let(:server_scopes) do
|
41
|
-
Doorkeeper::OAuth::Scopes.from_string 'common svr'
|
42
|
-
end
|
43
|
-
let(:application_scopes) do
|
44
|
-
Doorkeeper::OAuth::Scopes.from_string 'app123'
|
45
|
-
end
|
46
|
-
|
47
|
-
it 'is valid if scope is included in the application scope list' do
|
48
|
-
expect(ScopeChecker.valid?(
|
49
|
-
'app123',
|
50
|
-
server_scopes,
|
51
|
-
application_scopes
|
52
|
-
)).to be_truthy
|
53
|
-
end
|
54
|
-
|
55
|
-
it 'is invalid if any scope is not included in the application' do
|
56
|
-
expect(ScopeChecker.valid?(
|
57
|
-
'svr',
|
58
|
-
server_scopes,
|
59
|
-
application_scopes
|
60
|
-
)).to be_falsey
|
61
|
-
end
|
62
|
-
end
|
63
|
-
end
|
64
|
-
end
|
@@ -1,20 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
require 'doorkeeper/oauth/helpers/unique_token'
|
3
|
-
|
4
|
-
module Doorkeeper::OAuth::Helpers
|
5
|
-
describe UniqueToken do
|
6
|
-
let :generator do
|
7
|
-
->(size) { 'a' * size }
|
8
|
-
end
|
9
|
-
|
10
|
-
it 'is able to customize the generator method' do
|
11
|
-
token = UniqueToken.generate(generator: generator)
|
12
|
-
expect(token).to eq('a' * 32)
|
13
|
-
end
|
14
|
-
|
15
|
-
it 'is able to customize the size of the token' do
|
16
|
-
token = UniqueToken.generate(generator: generator, size: 2)
|
17
|
-
expect(token).to eq('aa')
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
@@ -1,104 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
require 'uri'
|
3
|
-
require 'doorkeeper/oauth/helpers/uri_checker'
|
4
|
-
|
5
|
-
module Doorkeeper::OAuth::Helpers
|
6
|
-
describe URIChecker do
|
7
|
-
describe '.valid?' do
|
8
|
-
it 'is valid for valid uris' do
|
9
|
-
uri = 'http://app.co'
|
10
|
-
expect(URIChecker.valid?(uri)).to be_truthy
|
11
|
-
end
|
12
|
-
|
13
|
-
it 'is valid if include path param' do
|
14
|
-
uri = 'http://app.co/path'
|
15
|
-
expect(URIChecker.valid?(uri)).to be_truthy
|
16
|
-
end
|
17
|
-
|
18
|
-
it 'is valid if include query param' do
|
19
|
-
uri = 'http://app.co/?query=1'
|
20
|
-
expect(URIChecker.valid?(uri)).to be_truthy
|
21
|
-
end
|
22
|
-
|
23
|
-
it 'is invalid if uri includes fragment' do
|
24
|
-
uri = 'http://app.co/test#fragment'
|
25
|
-
expect(URIChecker.valid?(uri)).to be_falsey
|
26
|
-
end
|
27
|
-
|
28
|
-
it 'is invalid if scheme is missing' do
|
29
|
-
uri = 'app.co'
|
30
|
-
expect(URIChecker.valid?(uri)).to be_falsey
|
31
|
-
end
|
32
|
-
|
33
|
-
it 'is invalid if is a relative uri' do
|
34
|
-
uri = '/abc/123'
|
35
|
-
expect(URIChecker.valid?(uri)).to be_falsey
|
36
|
-
end
|
37
|
-
|
38
|
-
it 'is invalid if is not a url' do
|
39
|
-
uri = 'http://'
|
40
|
-
expect(URIChecker.valid?(uri)).to be_falsey
|
41
|
-
end
|
42
|
-
end
|
43
|
-
|
44
|
-
describe '.matches?' do
|
45
|
-
it 'is true if both url matches' do
|
46
|
-
uri = client_uri = 'http://app.co/aaa'
|
47
|
-
expect(URIChecker.matches?(uri, client_uri)).to be_truthy
|
48
|
-
end
|
49
|
-
|
50
|
-
it 'ignores query parameter on comparsion' do
|
51
|
-
uri = 'http://app.co/?query=hello'
|
52
|
-
client_uri = 'http://app.co'
|
53
|
-
expect(URIChecker.matches?(uri, client_uri)).to be_truthy
|
54
|
-
end
|
55
|
-
|
56
|
-
it 'doesn\'t allow non-matching domains through' do
|
57
|
-
uri = 'http://app.abc/?query=hello'
|
58
|
-
client_uri = 'http://app.co'
|
59
|
-
expect(URIChecker.matches?(uri, client_uri)).to be_falsey
|
60
|
-
end
|
61
|
-
|
62
|
-
it 'doesn\'t allow non-matching domains that don\'t start at the beginning' do
|
63
|
-
uri = 'http://app.co/?query=hello'
|
64
|
-
client_uri = 'http://example.com?app.co=test'
|
65
|
-
expect(URIChecker.matches?(uri, client_uri)).to be_falsey
|
66
|
-
end
|
67
|
-
end
|
68
|
-
|
69
|
-
describe '.valid_for_authorization?' do
|
70
|
-
it 'is true if valid and matches' do
|
71
|
-
uri = client_uri = 'http://app.co/aaa'
|
72
|
-
expect(URIChecker.valid_for_authorization?(uri, client_uri)).to be_truthy
|
73
|
-
end
|
74
|
-
|
75
|
-
it 'is false if valid and mismatches' do
|
76
|
-
uri = 'http://app.co/aaa'
|
77
|
-
client_uri = 'http://app.co/bbb'
|
78
|
-
expect(URIChecker.valid_for_authorization?(uri, client_uri)).to be_falsey
|
79
|
-
end
|
80
|
-
|
81
|
-
it 'is true if valid and included in array' do
|
82
|
-
uri = 'http://app.co/aaa'
|
83
|
-
client_uri = "http://example.com/bbb\nhttp://app.co/aaa"
|
84
|
-
expect(URIChecker.valid_for_authorization?(uri, client_uri)).to be_truthy
|
85
|
-
end
|
86
|
-
|
87
|
-
it 'is false if valid and not included in array' do
|
88
|
-
uri = 'http://app.co/aaa'
|
89
|
-
client_uri = "http://example.com/bbb\nhttp://app.co/cc"
|
90
|
-
expect(URIChecker.valid_for_authorization?(uri, client_uri)).to be_falsey
|
91
|
-
end
|
92
|
-
|
93
|
-
it 'is true if valid and matches' do
|
94
|
-
uri = client_uri = 'http://app.co/aaa'
|
95
|
-
expect(URIChecker.valid_for_authorization?(uri, client_uri)).to be true
|
96
|
-
end
|
97
|
-
|
98
|
-
it 'is false if invalid' do
|
99
|
-
uri = client_uri = 'http://app.co/aaa?waffles=abc'
|
100
|
-
expect(URIChecker.valid_for_authorization?(uri, client_uri)).to be false
|
101
|
-
end
|
102
|
-
end
|
103
|
-
end
|
104
|
-
end
|
@@ -1,56 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
require 'active_model'
|
3
|
-
require 'doorkeeper'
|
4
|
-
require 'doorkeeper/oauth/invalid_token_response'
|
5
|
-
|
6
|
-
module Doorkeeper::OAuth
|
7
|
-
describe InvalidTokenResponse do
|
8
|
-
describe "#name" do
|
9
|
-
it { expect(subject.name).to eq(:invalid_token) }
|
10
|
-
end
|
11
|
-
|
12
|
-
describe "#status" do
|
13
|
-
it { expect(subject.status).to eq(:unauthorized) }
|
14
|
-
end
|
15
|
-
|
16
|
-
describe :from_access_token do
|
17
|
-
let(:response) { InvalidTokenResponse.from_access_token(access_token) }
|
18
|
-
|
19
|
-
context "revoked" do
|
20
|
-
let(:access_token) { double(revoked?: true, expired?: true) }
|
21
|
-
|
22
|
-
it "sets a description" do
|
23
|
-
expect(response.description).to include("revoked")
|
24
|
-
end
|
25
|
-
|
26
|
-
it "sets the reason" do
|
27
|
-
expect(response.reason).to eq(:revoked)
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
31
|
-
context "expired" do
|
32
|
-
let(:access_token) { double(revoked?: false, expired?: true) }
|
33
|
-
|
34
|
-
it "sets a description" do
|
35
|
-
expect(response.description).to include("expired")
|
36
|
-
end
|
37
|
-
|
38
|
-
it "sets the reason" do
|
39
|
-
expect(response.reason).to eq(:expired)
|
40
|
-
end
|
41
|
-
end
|
42
|
-
|
43
|
-
context "unkown" do
|
44
|
-
let(:access_token) { double(revoked?: false, expired?: false) }
|
45
|
-
|
46
|
-
it "sets a description" do
|
47
|
-
expect(response.description).to include("invalid")
|
48
|
-
end
|
49
|
-
|
50
|
-
it "sets the reason" do
|
51
|
-
expect(response.reason).to eq(:unknown)
|
52
|
-
end
|
53
|
-
end
|
54
|
-
end
|
55
|
-
end
|
56
|
-
end
|
@@ -1,90 +0,0 @@
|
|
1
|
-
require 'spec_helper_integration'
|
2
|
-
|
3
|
-
module Doorkeeper::OAuth
|
4
|
-
describe PasswordAccessTokenRequest do
|
5
|
-
let(:server) do
|
6
|
-
double(
|
7
|
-
:server,
|
8
|
-
default_scopes: Doorkeeper::OAuth::Scopes.new,
|
9
|
-
access_token_expires_in: 2.hours,
|
10
|
-
refresh_token_enabled?: false,
|
11
|
-
custom_access_token_expires_in: ->(_app) { nil }
|
12
|
-
)
|
13
|
-
end
|
14
|
-
let(:client) { FactoryGirl.create(:application) }
|
15
|
-
let(:owner) { double :owner, id: 99 }
|
16
|
-
|
17
|
-
subject do
|
18
|
-
PasswordAccessTokenRequest.new(server, client, owner)
|
19
|
-
end
|
20
|
-
|
21
|
-
it 'issues a new token for the client' do
|
22
|
-
expect do
|
23
|
-
subject.authorize
|
24
|
-
end.to change { client.reload.access_tokens.count }.by(1)
|
25
|
-
end
|
26
|
-
|
27
|
-
it 'issues a new token without a client' do
|
28
|
-
expect do
|
29
|
-
subject.client = nil
|
30
|
-
subject.authorize
|
31
|
-
end.to change { Doorkeeper::AccessToken.count }.by(1)
|
32
|
-
end
|
33
|
-
|
34
|
-
it 'does not issue a new token with an invalid client' do
|
35
|
-
expect do
|
36
|
-
subject.client = nil
|
37
|
-
subject.parameters = { client_id: 'bad_id' }
|
38
|
-
subject.authorize
|
39
|
-
end.to_not change { Doorkeeper::AccessToken.count }
|
40
|
-
|
41
|
-
expect(subject.error).to eq(:invalid_client)
|
42
|
-
end
|
43
|
-
|
44
|
-
it 'requires the owner' do
|
45
|
-
subject.resource_owner = nil
|
46
|
-
subject.validate
|
47
|
-
expect(subject.error).to eq(:invalid_grant)
|
48
|
-
end
|
49
|
-
|
50
|
-
it 'optionally accepts the client' do
|
51
|
-
subject.client = nil
|
52
|
-
expect(subject).to be_valid
|
53
|
-
end
|
54
|
-
|
55
|
-
it 'creates token even when there is already one (default)' do
|
56
|
-
FactoryGirl.create(:access_token, application_id: client.id, resource_owner_id: owner.id)
|
57
|
-
expect do
|
58
|
-
subject.authorize
|
59
|
-
end.to change { Doorkeeper::AccessToken.count }.by(1)
|
60
|
-
end
|
61
|
-
|
62
|
-
it 'skips token creation if there is already one' do
|
63
|
-
allow(Doorkeeper.configuration).to receive(:reuse_access_token).and_return(true)
|
64
|
-
FactoryGirl.create(:access_token, application_id: client.id, resource_owner_id: owner.id)
|
65
|
-
expect do
|
66
|
-
subject.authorize
|
67
|
-
end.to_not change { Doorkeeper::AccessToken.count }
|
68
|
-
end
|
69
|
-
|
70
|
-
describe 'with scopes' do
|
71
|
-
subject do
|
72
|
-
PasswordAccessTokenRequest.new(server, client, owner, scope: 'public')
|
73
|
-
end
|
74
|
-
|
75
|
-
it 'validates the current scope' do
|
76
|
-
allow(server).to receive(:scopes).and_return(Doorkeeper::OAuth::Scopes.from_string('another'))
|
77
|
-
subject.validate
|
78
|
-
expect(subject.error).to eq(:invalid_scope)
|
79
|
-
end
|
80
|
-
|
81
|
-
it 'creates the token with scopes' do
|
82
|
-
allow(server).to receive(:scopes).and_return(Doorkeeper::OAuth::Scopes.from_string('public'))
|
83
|
-
expect do
|
84
|
-
subject.authorize
|
85
|
-
end.to change { Doorkeeper::AccessToken.count }.by(1)
|
86
|
-
expect(Doorkeeper::AccessToken.last.scopes).to include('public')
|
87
|
-
end
|
88
|
-
end
|
89
|
-
end
|
90
|
-
end
|