doorkeeper 5.2.2 → 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 +4 -4
- data/CHANGELOG.md +198 -3
- data/README.md +28 -20
- data/app/controllers/doorkeeper/application_controller.rb +3 -2
- data/app/controllers/doorkeeper/application_metal_controller.rb +2 -2
- data/app/controllers/doorkeeper/applications_controller.rb +7 -8
- data/app/controllers/doorkeeper/authorizations_controller.rb +48 -18
- data/app/controllers/doorkeeper/authorized_applications_controller.rb +6 -6
- data/app/controllers/doorkeeper/token_info_controller.rb +12 -2
- data/app/controllers/doorkeeper/tokens_controller.rb +70 -25
- data/app/helpers/doorkeeper/dashboard_helper.rb +1 -1
- data/app/views/doorkeeper/applications/_form.html.erb +1 -1
- data/app/views/doorkeeper/applications/show.html.erb +35 -14
- data/app/views/doorkeeper/authorizations/form_post.html.erb +15 -0
- data/app/views/doorkeeper/authorizations/new.html.erb +2 -0
- data/config/locales/en.yml +9 -2
- data/lib/doorkeeper/config/abstract_builder.rb +28 -0
- data/lib/doorkeeper/config/option.rb +26 -14
- data/lib/doorkeeper/config/validations.rb +53 -0
- data/lib/doorkeeper/config.rb +214 -122
- data/lib/doorkeeper/engine.rb +1 -1
- 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/helpers.rb +2 -2
- data/lib/doorkeeper/helpers/controller.rb +18 -12
- data/lib/doorkeeper/models/access_grant_mixin.rb +23 -19
- data/lib/doorkeeper/models/access_token_mixin.rb +157 -55
- data/lib/doorkeeper/models/application_mixin.rb +8 -7
- data/lib/doorkeeper/models/concerns/expirable.rb +1 -1
- data/lib/doorkeeper/models/concerns/ownership.rb +1 -1
- data/lib/doorkeeper/models/concerns/resource_ownerable.rb +47 -0
- data/lib/doorkeeper/models/concerns/reusable.rb +1 -1
- data/lib/doorkeeper/models/concerns/revocable.rb +1 -28
- data/lib/doorkeeper/models/concerns/scopes.rb +5 -1
- data/lib/doorkeeper/models/concerns/secret_storable.rb +1 -3
- data/lib/doorkeeper/oauth/authorization/code.rb +22 -9
- data/lib/doorkeeper/oauth/authorization/context.rb +5 -5
- data/lib/doorkeeper/oauth/authorization/token.rb +23 -18
- data/lib/doorkeeper/oauth/authorization/uri_builder.rb +4 -4
- data/lib/doorkeeper/oauth/authorization_code_request.rb +30 -20
- data/lib/doorkeeper/oauth/base_request.rb +19 -23
- data/lib/doorkeeper/oauth/client/credentials.rb +2 -4
- data/lib/doorkeeper/oauth/client.rb +8 -9
- data/lib/doorkeeper/oauth/client_credentials/creator.rb +38 -12
- data/lib/doorkeeper/oauth/client_credentials/issuer.rb +10 -8
- data/lib/doorkeeper/oauth/client_credentials/{validation.rb → validator.rb} +7 -5
- data/lib/doorkeeper/oauth/client_credentials_request.rb +8 -7
- data/lib/doorkeeper/oauth/code_request.rb +4 -4
- data/lib/doorkeeper/oauth/code_response.rb +24 -14
- data/lib/doorkeeper/oauth/error.rb +1 -1
- data/lib/doorkeeper/oauth/error_response.rb +10 -11
- data/lib/doorkeeper/oauth/forbidden_token_response.rb +2 -1
- data/lib/doorkeeper/oauth/helpers/scope_checker.rb +8 -12
- data/lib/doorkeeper/oauth/helpers/unique_token.rb +10 -7
- data/lib/doorkeeper/oauth/helpers/uri_checker.rb +1 -19
- data/lib/doorkeeper/oauth/hooks/context.rb +21 -0
- data/lib/doorkeeper/oauth/invalid_request_response.rb +3 -3
- data/lib/doorkeeper/oauth/invalid_token_response.rb +7 -4
- data/lib/doorkeeper/oauth/password_access_token_request.rb +28 -10
- data/lib/doorkeeper/oauth/pre_authorization.rb +73 -37
- data/lib/doorkeeper/oauth/refresh_token_request.rb +35 -26
- data/lib/doorkeeper/oauth/token.rb +6 -7
- data/lib/doorkeeper/oauth/token_introspection.rb +12 -16
- data/lib/doorkeeper/oauth/token_request.rb +3 -3
- data/lib/doorkeeper/oauth/token_response.rb +1 -1
- data/lib/doorkeeper/orm/active_record/access_grant.rb +4 -43
- data/lib/doorkeeper/orm/active_record/access_token.rb +4 -35
- data/lib/doorkeeper/orm/active_record/application.rb +5 -95
- 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 +8 -3
- data/lib/doorkeeper/orm/active_record.rb +5 -7
- data/lib/doorkeeper/rails/helpers.rb +4 -4
- data/lib/doorkeeper/rails/routes/abstract_router.rb +35 -0
- data/lib/doorkeeper/rails/routes/mapper.rb +2 -2
- data/lib/doorkeeper/rails/routes/registry.rb +45 -0
- data/lib/doorkeeper/rails/routes.rb +17 -25
- data/lib/doorkeeper/rake/db.rake +6 -6
- data/lib/doorkeeper/rake/setup.rake +5 -0
- data/lib/doorkeeper/request/authorization_code.rb +3 -3
- data/lib/doorkeeper/request/client_credentials.rb +2 -2
- data/lib/doorkeeper/request/password.rb +3 -2
- data/lib/doorkeeper/request/refresh_token.rb +5 -4
- data/lib/doorkeeper/request/strategy.rb +2 -2
- data/lib/doorkeeper/request.rb +49 -12
- data/lib/doorkeeper/server.rb +5 -5
- data/lib/doorkeeper/stale_records_cleaner.rb +4 -4
- data/lib/doorkeeper/version.rb +2 -6
- data/lib/doorkeeper.rb +112 -81
- data/lib/generators/doorkeeper/application_owner_generator.rb +1 -1
- data/lib/generators/doorkeeper/confidential_applications_generator.rb +2 -2
- data/lib/generators/doorkeeper/enable_polymorphic_resource_owner_generator.rb +39 -0
- data/lib/generators/doorkeeper/migration_generator.rb +1 -1
- data/lib/generators/doorkeeper/pkce_generator.rb +1 -1
- data/lib/generators/doorkeeper/previous_refresh_token_generator.rb +2 -2
- data/lib/generators/doorkeeper/templates/add_owner_to_application_migration.rb.erb +3 -1
- data/lib/generators/doorkeeper/templates/add_previous_refresh_token_to_access_tokens.rb.erb +2 -0
- data/lib/generators/doorkeeper/templates/enable_pkce_migration.rb.erb +2 -0
- data/lib/generators/doorkeeper/templates/enable_polymorphic_resource_owner_migration.rb.erb +17 -0
- data/lib/generators/doorkeeper/templates/initializer.rb +99 -14
- data/lib/generators/doorkeeper/templates/migration.rb.erb +14 -5
- metadata +37 -306
- data/Appraisals +0 -40
- data/CODE_OF_CONDUCT.md +0 -46
- data/CONTRIBUTING.md +0 -49
- data/Dangerfile +0 -67
- data/Dockerfile +0 -29
- data/Gemfile +0 -25
- data/NEWS.md +0 -1
- data/RELEASING.md +0 -11
- data/Rakefile +0 -28
- data/SECURITY.md +0 -15
- data/UPGRADE.md +0 -2
- data/bin/console +0 -16
- data/doorkeeper.gemspec +0 -42
- data/gemfiles/rails_5_0.gemfile +0 -18
- data/gemfiles/rails_5_1.gemfile +0 -18
- data/gemfiles/rails_5_2.gemfile +0 -18
- data/gemfiles/rails_6_0.gemfile +0 -18
- data/gemfiles/rails_master.gemfile +0 -18
- data/spec/controllers/application_metal_controller_spec.rb +0 -64
- data/spec/controllers/applications_controller_spec.rb +0 -273
- data/spec/controllers/authorizations_controller_spec.rb +0 -608
- data/spec/controllers/protected_resources_controller_spec.rb +0 -353
- data/spec/controllers/token_info_controller_spec.rb +0 -50
- data/spec/controllers/tokens_controller_spec.rb +0 -498
- data/spec/dummy/Rakefile +0 -9
- data/spec/dummy/app/assets/config/manifest.js +0 -2
- data/spec/dummy/app/controllers/application_controller.rb +0 -5
- data/spec/dummy/app/controllers/custom_authorizations_controller.rb +0 -9
- data/spec/dummy/app/controllers/full_protected_resources_controller.rb +0 -14
- data/spec/dummy/app/controllers/home_controller.rb +0 -18
- data/spec/dummy/app/controllers/metal_controller.rb +0 -13
- data/spec/dummy/app/controllers/semi_protected_resources_controller.rb +0 -13
- data/spec/dummy/app/helpers/application_helper.rb +0 -7
- data/spec/dummy/app/models/user.rb +0 -7
- 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 -49
- data/spec/dummy/config/boot.rb +0 -7
- data/spec/dummy/config/database.yml +0 -15
- data/spec/dummy/config/environment.rb +0 -5
- data/spec/dummy/config/environments/development.rb +0 -31
- data/spec/dummy/config/environments/production.rb +0 -64
- data/spec/dummy/config/environments/test.rb +0 -45
- data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -9
- data/spec/dummy/config/initializers/doorkeeper.rb +0 -166
- data/spec/dummy/config/initializers/secret_token.rb +0 -10
- data/spec/dummy/config/initializers/session_store.rb +0 -10
- data/spec/dummy/config/initializers/wrap_parameters.rb +0 -16
- data/spec/dummy/config/locales/doorkeeper.en.yml +0 -5
- data/spec/dummy/config/routes.rb +0 -13
- data/spec/dummy/config.ru +0 -6
- data/spec/dummy/db/migrate/20111122132257_create_users.rb +0 -11
- data/spec/dummy/db/migrate/20120312140401_add_password_to_users.rb +0 -7
- data/spec/dummy/db/migrate/20151223192035_create_doorkeeper_tables.rb +0 -69
- data/spec/dummy/db/migrate/20151223200000_add_owner_to_application.rb +0 -9
- data/spec/dummy/db/migrate/20160320211015_add_previous_refresh_token_to_access_tokens.rb +0 -13
- data/spec/dummy/db/migrate/20170822064514_enable_pkce.rb +0 -8
- data/spec/dummy/db/migrate/20180210183654_add_confidential_to_applications.rb +0 -13
- data/spec/dummy/db/schema.rb +0 -68
- 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 -9
- data/spec/factories.rb +0 -30
- data/spec/generators/application_owner_generator_spec.rb +0 -28
- data/spec/generators/confidential_applications_generator_spec.rb +0 -29
- data/spec/generators/install_generator_spec.rb +0 -36
- data/spec/generators/migration_generator_spec.rb +0 -28
- data/spec/generators/pkce_generator_spec.rb +0 -28
- data/spec/generators/previous_refresh_token_generator_spec.rb +0 -44
- data/spec/generators/templates/routes.rb +0 -4
- data/spec/generators/views_generator_spec.rb +0 -29
- data/spec/grape/grape_integration_spec.rb +0 -137
- data/spec/helpers/doorkeeper/dashboard_helper_spec.rb +0 -26
- data/spec/lib/config_spec.rb +0 -739
- data/spec/lib/doorkeeper_spec.rb +0 -27
- data/spec/lib/models/expirable_spec.rb +0 -61
- data/spec/lib/models/reusable_spec.rb +0 -40
- data/spec/lib/models/revocable_spec.rb +0 -59
- data/spec/lib/models/scopes_spec.rb +0 -53
- data/spec/lib/models/secret_storable_spec.rb +0 -135
- data/spec/lib/oauth/authorization/uri_builder_spec.rb +0 -39
- data/spec/lib/oauth/authorization_code_request_spec.rb +0 -168
- data/spec/lib/oauth/base_request_spec.rb +0 -222
- data/spec/lib/oauth/base_response_spec.rb +0 -47
- data/spec/lib/oauth/client/credentials_spec.rb +0 -90
- data/spec/lib/oauth/client_credentials/creator_spec.rb +0 -97
- data/spec/lib/oauth/client_credentials/issuer_spec.rb +0 -112
- data/spec/lib/oauth/client_credentials/validation_spec.rb +0 -59
- data/spec/lib/oauth/client_credentials_integration_spec.rb +0 -29
- data/spec/lib/oauth/client_credentials_request_spec.rb +0 -109
- data/spec/lib/oauth/client_spec.rb +0 -38
- data/spec/lib/oauth/code_request_spec.rb +0 -46
- data/spec/lib/oauth/code_response_spec.rb +0 -36
- data/spec/lib/oauth/error_response_spec.rb +0 -66
- data/spec/lib/oauth/error_spec.rb +0 -23
- data/spec/lib/oauth/forbidden_token_response_spec.rb +0 -22
- data/spec/lib/oauth/helpers/scope_checker_spec.rb +0 -98
- data/spec/lib/oauth/helpers/unique_token_spec.rb +0 -21
- data/spec/lib/oauth/helpers/uri_checker_spec.rb +0 -262
- data/spec/lib/oauth/invalid_request_response_spec.rb +0 -75
- data/spec/lib/oauth/invalid_token_response_spec.rb +0 -55
- data/spec/lib/oauth/password_access_token_request_spec.rb +0 -192
- data/spec/lib/oauth/pre_authorization_spec.rb +0 -225
- data/spec/lib/oauth/refresh_token_request_spec.rb +0 -178
- data/spec/lib/oauth/scopes_spec.rb +0 -148
- data/spec/lib/oauth/token_request_spec.rb +0 -153
- data/spec/lib/oauth/token_response_spec.rb +0 -86
- data/spec/lib/oauth/token_spec.rb +0 -158
- data/spec/lib/request/strategy_spec.rb +0 -54
- data/spec/lib/secret_storing/base_spec.rb +0 -60
- data/spec/lib/secret_storing/bcrypt_spec.rb +0 -49
- data/spec/lib/secret_storing/plain_spec.rb +0 -44
- data/spec/lib/secret_storing/sha256_hash_spec.rb +0 -48
- data/spec/lib/server_spec.rb +0 -49
- data/spec/lib/stale_records_cleaner_spec.rb +0 -89
- data/spec/models/doorkeeper/access_grant_spec.rb +0 -163
- data/spec/models/doorkeeper/access_token_spec.rb +0 -622
- data/spec/models/doorkeeper/application_spec.rb +0 -377
- data/spec/requests/applications/applications_request_spec.rb +0 -259
- data/spec/requests/applications/authorized_applications_spec.rb +0 -32
- data/spec/requests/endpoints/authorization_spec.rb +0 -89
- data/spec/requests/endpoints/token_spec.rb +0 -75
- data/spec/requests/flows/authorization_code_errors_spec.rb +0 -79
- data/spec/requests/flows/authorization_code_spec.rb +0 -513
- data/spec/requests/flows/client_credentials_spec.rb +0 -166
- data/spec/requests/flows/implicit_grant_errors_spec.rb +0 -46
- data/spec/requests/flows/implicit_grant_spec.rb +0 -91
- data/spec/requests/flows/password_spec.rb +0 -296
- data/spec/requests/flows/refresh_token_spec.rb +0 -233
- data/spec/requests/flows/revoke_token_spec.rb +0 -151
- data/spec/requests/flows/skip_authorization_spec.rb +0 -66
- data/spec/requests/protected_resources/metal_spec.rb +0 -16
- data/spec/requests/protected_resources/private_api_spec.rb +0 -83
- data/spec/routing/custom_controller_routes_spec.rb +0 -133
- data/spec/routing/default_routes_spec.rb +0 -41
- data/spec/routing/scoped_routes_spec.rb +0 -47
- data/spec/spec_helper.rb +0 -57
- data/spec/spec_helper_integration.rb +0 -4
- data/spec/support/dependencies/factory_bot.rb +0 -4
- data/spec/support/doorkeeper_rspec.rb +0 -22
- data/spec/support/helpers/access_token_request_helper.rb +0 -13
- data/spec/support/helpers/authorization_request_helper.rb +0 -43
- data/spec/support/helpers/config_helper.rb +0 -11
- data/spec/support/helpers/model_helper.rb +0 -78
- data/spec/support/helpers/request_spec_helper.rb +0 -110
- data/spec/support/helpers/url_helper.rb +0 -62
- data/spec/support/http_method_shim.rb +0 -29
- data/spec/support/orm/active_record.rb +0 -5
- data/spec/support/shared/controllers_shared_context.rb +0 -123
- data/spec/support/shared/hashing_shared_context.rb +0 -36
- data/spec/support/shared/models_shared_examples.rb +0 -54
- data/spec/validators/redirect_uri_validator_spec.rb +0 -183
- data/spec/version/version_spec.rb +0 -17
@@ -1,151 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require "spec_helper"
|
4
|
-
|
5
|
-
describe "Revoke Token Flow" do
|
6
|
-
before do
|
7
|
-
Doorkeeper.configure { orm DOORKEEPER_ORM }
|
8
|
-
end
|
9
|
-
|
10
|
-
context "with default parameters" do
|
11
|
-
let(:client_application) { FactoryBot.create :application }
|
12
|
-
let(:resource_owner) { User.create!(name: "John", password: "sekret") }
|
13
|
-
let(:access_token) do
|
14
|
-
FactoryBot.create(:access_token,
|
15
|
-
application: client_application,
|
16
|
-
resource_owner_id: resource_owner.id,
|
17
|
-
use_refresh_token: true)
|
18
|
-
end
|
19
|
-
|
20
|
-
context "with authenticated, confidential OAuth 2.0 client/application" do
|
21
|
-
let(:headers) do
|
22
|
-
client_id = client_application.uid
|
23
|
-
client_secret = client_application.secret
|
24
|
-
credentials = Base64.encode64("#{client_id}:#{client_secret}")
|
25
|
-
{ "HTTP_AUTHORIZATION" => "Basic #{credentials}" }
|
26
|
-
end
|
27
|
-
|
28
|
-
it "should revoke the access token provided" do
|
29
|
-
post revocation_token_endpoint_url, params: { token: access_token.token }, headers: headers
|
30
|
-
|
31
|
-
expect(response).to be_successful
|
32
|
-
expect(access_token.reload.revoked?).to be_truthy
|
33
|
-
end
|
34
|
-
|
35
|
-
it "should revoke the refresh token provided" do
|
36
|
-
post revocation_token_endpoint_url, params: { token: access_token.refresh_token }, headers: headers
|
37
|
-
|
38
|
-
expect(response).to be_successful
|
39
|
-
expect(access_token.reload.revoked?).to be_truthy
|
40
|
-
end
|
41
|
-
|
42
|
-
context "with invalid token to revoke" do
|
43
|
-
it "should not revoke any tokens and respond with forbidden" do
|
44
|
-
expect do
|
45
|
-
post revocation_token_endpoint_url,
|
46
|
-
params: { token: "I_AM_AN_INVALID_TOKEN" },
|
47
|
-
headers: headers
|
48
|
-
end.not_to(change { Doorkeeper::AccessToken.where(revoked_at: nil).count })
|
49
|
-
|
50
|
-
expect(response).to be_forbidden
|
51
|
-
end
|
52
|
-
end
|
53
|
-
|
54
|
-
context "with bad credentials and a valid token" do
|
55
|
-
let(:headers) do
|
56
|
-
client_id = client_application.uid
|
57
|
-
credentials = Base64.encode64("#{client_id}:poop")
|
58
|
-
{ "HTTP_AUTHORIZATION" => "Basic #{credentials}" }
|
59
|
-
end
|
60
|
-
it "should not revoke any tokens and respond with forbidden" do
|
61
|
-
post revocation_token_endpoint_url, params: { token: access_token.token }, headers: headers
|
62
|
-
|
63
|
-
expect(response).to be_forbidden
|
64
|
-
expect(response.body).to include("unauthorized_client")
|
65
|
-
expect(response.body).to include(I18n.t("doorkeeper.errors.messages.revoke.unauthorized"))
|
66
|
-
expect(access_token.reload.revoked?).to be_falsey
|
67
|
-
end
|
68
|
-
end
|
69
|
-
|
70
|
-
context "with no credentials and a valid token" do
|
71
|
-
it "should not revoke any tokens and respond with forbidden" do
|
72
|
-
post revocation_token_endpoint_url, params: { token: access_token.token }
|
73
|
-
|
74
|
-
expect(response).to be_forbidden
|
75
|
-
expect(response.body).to include("unauthorized_client")
|
76
|
-
expect(response.body).to include(I18n.t("doorkeeper.errors.messages.revoke.unauthorized"))
|
77
|
-
expect(access_token.reload.revoked?).to be_falsey
|
78
|
-
end
|
79
|
-
end
|
80
|
-
|
81
|
-
context "with valid token for another client application" do
|
82
|
-
let(:other_client_application) { FactoryBot.create :application }
|
83
|
-
let(:headers) do
|
84
|
-
client_id = other_client_application.uid
|
85
|
-
client_secret = other_client_application.secret
|
86
|
-
credentials = Base64.encode64("#{client_id}:#{client_secret}")
|
87
|
-
{ "HTTP_AUTHORIZATION" => "Basic #{credentials}" }
|
88
|
-
end
|
89
|
-
|
90
|
-
it "should not revoke the token as its unauthorized" do
|
91
|
-
post revocation_token_endpoint_url, params: { token: access_token.token }, headers: headers
|
92
|
-
|
93
|
-
expect(response).to be_forbidden
|
94
|
-
expect(response.body).to include("unauthorized_client")
|
95
|
-
expect(response.body).to include(I18n.t("doorkeeper.errors.messages.revoke.unauthorized"))
|
96
|
-
expect(access_token.reload.revoked?).to be_falsey
|
97
|
-
end
|
98
|
-
end
|
99
|
-
end
|
100
|
-
|
101
|
-
context "with public OAuth 2.0 client/application" do
|
102
|
-
let(:access_token) do
|
103
|
-
FactoryBot.create(:access_token,
|
104
|
-
application: nil,
|
105
|
-
resource_owner_id: resource_owner.id,
|
106
|
-
use_refresh_token: true)
|
107
|
-
end
|
108
|
-
|
109
|
-
it "should revoke the access token provided" do
|
110
|
-
post revocation_token_endpoint_url, params: { token: access_token.token }
|
111
|
-
|
112
|
-
expect(response).to be_successful
|
113
|
-
expect(access_token.reload.revoked?).to be_truthy
|
114
|
-
end
|
115
|
-
|
116
|
-
it "should revoke the refresh token provided" do
|
117
|
-
post revocation_token_endpoint_url, params: { token: access_token.refresh_token }
|
118
|
-
|
119
|
-
expect(response).to be_successful
|
120
|
-
expect(access_token.reload.revoked?).to be_truthy
|
121
|
-
end
|
122
|
-
|
123
|
-
context "with a valid token issued for a confidential client" do
|
124
|
-
let(:access_token) do
|
125
|
-
FactoryBot.create(:access_token,
|
126
|
-
application: client_application,
|
127
|
-
resource_owner_id: resource_owner.id,
|
128
|
-
use_refresh_token: true)
|
129
|
-
end
|
130
|
-
|
131
|
-
it "should not revoke the access token provided" do
|
132
|
-
post revocation_token_endpoint_url, params: { token: access_token.token }
|
133
|
-
|
134
|
-
expect(response).to be_forbidden
|
135
|
-
expect(response.body).to include("unauthorized_client")
|
136
|
-
expect(response.body).to include(I18n.t("doorkeeper.errors.messages.revoke.unauthorized"))
|
137
|
-
expect(access_token.reload.revoked?).to be_falsey
|
138
|
-
end
|
139
|
-
|
140
|
-
it "should not revoke the refresh token provided" do
|
141
|
-
post revocation_token_endpoint_url, params: { token: access_token.token }
|
142
|
-
|
143
|
-
expect(response).to be_forbidden
|
144
|
-
expect(response.body).to include("unauthorized_client")
|
145
|
-
expect(response.body).to include(I18n.t("doorkeeper.errors.messages.revoke.unauthorized"))
|
146
|
-
expect(access_token.reload.revoked?).to be_falsey
|
147
|
-
end
|
148
|
-
end
|
149
|
-
end
|
150
|
-
end
|
151
|
-
end
|
@@ -1,66 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require "spec_helper"
|
4
|
-
|
5
|
-
feature "Skip authorization form" do
|
6
|
-
background do
|
7
|
-
config_is_set(:authenticate_resource_owner) { User.first || redirect_to("/sign_in") }
|
8
|
-
client_exists
|
9
|
-
default_scopes_exist :public
|
10
|
-
optional_scopes_exist :write
|
11
|
-
end
|
12
|
-
|
13
|
-
context "for previously authorized clients" do
|
14
|
-
background do
|
15
|
-
create_resource_owner
|
16
|
-
sign_in
|
17
|
-
end
|
18
|
-
|
19
|
-
scenario "skips the authorization and return a new grant code" do
|
20
|
-
client_is_authorized(@client, @resource_owner, scopes: "public")
|
21
|
-
visit authorization_endpoint_url(client: @client, scope: "public")
|
22
|
-
|
23
|
-
i_should_not_see "Authorize"
|
24
|
-
client_should_be_authorized @client
|
25
|
-
i_should_be_on_client_callback @client
|
26
|
-
url_should_have_param "code", Doorkeeper::AccessGrant.first.token
|
27
|
-
end
|
28
|
-
|
29
|
-
scenario "skips the authorization if other scopes are not requested" do
|
30
|
-
client_exists scopes: "public read write"
|
31
|
-
client_is_authorized(@client, @resource_owner, scopes: "public")
|
32
|
-
visit authorization_endpoint_url(client: @client, scope: "public")
|
33
|
-
|
34
|
-
i_should_not_see "Authorize"
|
35
|
-
client_should_be_authorized @client
|
36
|
-
i_should_be_on_client_callback @client
|
37
|
-
url_should_have_param "code", Doorkeeper::AccessGrant.first.token
|
38
|
-
end
|
39
|
-
|
40
|
-
scenario "does not skip authorization when scopes differ (new request has fewer scopes)" do
|
41
|
-
client_is_authorized(@client, @resource_owner, scopes: "public write")
|
42
|
-
visit authorization_endpoint_url(client: @client, scope: "public")
|
43
|
-
i_should_see "Authorize"
|
44
|
-
end
|
45
|
-
|
46
|
-
scenario "does not skip authorization when scopes differ (new request has more scopes)" do
|
47
|
-
client_is_authorized(@client, @resource_owner, scopes: "public write")
|
48
|
-
visit authorization_endpoint_url(client: @client, scopes: "public write email")
|
49
|
-
i_should_see "Authorize"
|
50
|
-
end
|
51
|
-
|
52
|
-
scenario "creates grant with new scope when scopes differ" do
|
53
|
-
client_is_authorized(@client, @resource_owner, scopes: "public write")
|
54
|
-
visit authorization_endpoint_url(client: @client, scope: "public")
|
55
|
-
click_on "Authorize"
|
56
|
-
access_grant_should_have_scopes :public
|
57
|
-
end
|
58
|
-
|
59
|
-
scenario "creates grant with new scope when scopes are greater" do
|
60
|
-
client_is_authorized(@client, @resource_owner, scopes: "public")
|
61
|
-
visit authorization_endpoint_url(client: @client, scope: "public write")
|
62
|
-
click_on "Authorize"
|
63
|
-
access_grant_should_have_scopes :public, :write
|
64
|
-
end
|
65
|
-
end
|
66
|
-
end
|
@@ -1,16 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require "spec_helper"
|
4
|
-
|
5
|
-
describe "ActionController::Metal API" do
|
6
|
-
before do
|
7
|
-
@client = FactoryBot.create(:application)
|
8
|
-
@resource = User.create!(name: "Joe", password: "sekret")
|
9
|
-
@token = client_is_authorized(@client, @resource)
|
10
|
-
end
|
11
|
-
|
12
|
-
it "client requests protected resource with valid token" do
|
13
|
-
get "/metal.json?access_token=#{@token.token}"
|
14
|
-
should_have_json "ok", true
|
15
|
-
end
|
16
|
-
end
|
@@ -1,83 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require "spec_helper"
|
4
|
-
|
5
|
-
feature "Private API" do
|
6
|
-
background do
|
7
|
-
@client = FactoryBot.create(:application)
|
8
|
-
@resource = User.create!(name: "Joe", password: "sekret")
|
9
|
-
@token = client_is_authorized(@client, @resource)
|
10
|
-
end
|
11
|
-
|
12
|
-
scenario "client requests protected resource with valid token" do
|
13
|
-
with_access_token_header @token.token
|
14
|
-
visit "/full_protected_resources"
|
15
|
-
expect(page.body).to have_content("index")
|
16
|
-
end
|
17
|
-
|
18
|
-
scenario "client requests protected resource with disabled header authentication" do
|
19
|
-
config_is_set :access_token_methods, [:from_access_token_param]
|
20
|
-
with_access_token_header @token.token
|
21
|
-
visit "/full_protected_resources"
|
22
|
-
response_status_should_be 401
|
23
|
-
end
|
24
|
-
|
25
|
-
scenario "client attempts to request protected resource with invalid token" do
|
26
|
-
with_access_token_header "invalid"
|
27
|
-
visit "/full_protected_resources"
|
28
|
-
response_status_should_be 401
|
29
|
-
end
|
30
|
-
|
31
|
-
scenario "client attempts to request protected resource with expired token" do
|
32
|
-
@token.update_attribute :expires_in, -100 # expires token
|
33
|
-
with_access_token_header @token.token
|
34
|
-
visit "/full_protected_resources"
|
35
|
-
response_status_should_be 401
|
36
|
-
end
|
37
|
-
|
38
|
-
scenario "client requests protected resource with permanent token" do
|
39
|
-
@token.update_attribute :expires_in, nil # never expires
|
40
|
-
with_access_token_header @token.token
|
41
|
-
visit "/full_protected_resources"
|
42
|
-
expect(page.body).to have_content("index")
|
43
|
-
end
|
44
|
-
|
45
|
-
scenario "access token with no default scopes" do
|
46
|
-
Doorkeeper.configuration.instance_eval do
|
47
|
-
@default_scopes = Doorkeeper::OAuth::Scopes.from_array([:public])
|
48
|
-
@scopes = default_scopes + optional_scopes
|
49
|
-
end
|
50
|
-
@token.update_attribute :scopes, "dummy"
|
51
|
-
with_access_token_header @token.token
|
52
|
-
visit "/full_protected_resources"
|
53
|
-
response_status_should_be 403
|
54
|
-
end
|
55
|
-
|
56
|
-
scenario "access token with no allowed scopes" do
|
57
|
-
@token.update_attribute :scopes, nil
|
58
|
-
with_access_token_header @token.token
|
59
|
-
visit "/full_protected_resources/1.json"
|
60
|
-
response_status_should_be 403
|
61
|
-
end
|
62
|
-
|
63
|
-
scenario "access token with one of allowed scopes" do
|
64
|
-
@token.update_attribute :scopes, "admin"
|
65
|
-
with_access_token_header @token.token
|
66
|
-
visit "/full_protected_resources/1.json"
|
67
|
-
expect(page.body).to have_content("show")
|
68
|
-
end
|
69
|
-
|
70
|
-
scenario "access token with another of allowed scopes" do
|
71
|
-
@token.update_attribute :scopes, "write"
|
72
|
-
with_access_token_header @token.token
|
73
|
-
visit "/full_protected_resources/1.json"
|
74
|
-
expect(page.body).to have_content("show")
|
75
|
-
end
|
76
|
-
|
77
|
-
scenario "access token with both allowed scopes" do
|
78
|
-
@token.update_attribute :scopes, "write admin"
|
79
|
-
with_access_token_header @token.token
|
80
|
-
visit "/full_protected_resources/1.json"
|
81
|
-
expect(page.body).to have_content("show")
|
82
|
-
end
|
83
|
-
end
|
@@ -1,133 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require "spec_helper"
|
4
|
-
|
5
|
-
describe "Custom controller for routes" do
|
6
|
-
before :all do
|
7
|
-
Doorkeeper.configure do
|
8
|
-
orm DOORKEEPER_ORM
|
9
|
-
end
|
10
|
-
|
11
|
-
Rails.application.routes.disable_clear_and_finalize = true
|
12
|
-
|
13
|
-
Rails.application.routes.draw do
|
14
|
-
scope "inner_space" do
|
15
|
-
use_doorkeeper scope: "scope" do
|
16
|
-
controllers authorizations: "custom_authorizations",
|
17
|
-
tokens: "custom_authorizations",
|
18
|
-
applications: "custom_authorizations",
|
19
|
-
token_info: "custom_authorizations"
|
20
|
-
|
21
|
-
as authorizations: "custom_auth",
|
22
|
-
tokens: "custom_token",
|
23
|
-
token_info: "custom_token_info"
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
scope "space" do
|
28
|
-
use_doorkeeper do
|
29
|
-
controllers authorizations: "custom_authorizations",
|
30
|
-
tokens: "custom_authorizations",
|
31
|
-
applications: "custom_authorizations",
|
32
|
-
token_info: "custom_authorizations"
|
33
|
-
|
34
|
-
as authorizations: "custom_auth",
|
35
|
-
tokens: "custom_token",
|
36
|
-
token_info: "custom_token_info"
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
scope "outer_space" do
|
41
|
-
use_doorkeeper do
|
42
|
-
controllers authorizations: "custom_authorizations",
|
43
|
-
tokens: "custom_authorizations",
|
44
|
-
token_info: "custom_authorizations"
|
45
|
-
|
46
|
-
as authorizations: "custom_auth",
|
47
|
-
tokens: "custom_token",
|
48
|
-
token_info: "custom_token_info"
|
49
|
-
|
50
|
-
skip_controllers :tokens, :applications, :token_info
|
51
|
-
end
|
52
|
-
end
|
53
|
-
end
|
54
|
-
end
|
55
|
-
|
56
|
-
after :all do
|
57
|
-
Rails.application.routes.clear!
|
58
|
-
|
59
|
-
load File.expand_path("../dummy/config/routes.rb", __dir__)
|
60
|
-
end
|
61
|
-
|
62
|
-
it "GET /inner_space/scope/authorize routes to custom authorizations controller" do
|
63
|
-
expect(get("/inner_space/scope/authorize")).to route_to("custom_authorizations#new")
|
64
|
-
end
|
65
|
-
|
66
|
-
it "POST /inner_space/scope/authorize routes to custom authorizations controller" do
|
67
|
-
expect(post("/inner_space/scope/authorize")).to route_to("custom_authorizations#create")
|
68
|
-
end
|
69
|
-
|
70
|
-
it "DELETE /inner_space/scope/authorize routes to custom authorizations controller" do
|
71
|
-
expect(delete("/inner_space/scope/authorize")).to route_to("custom_authorizations#destroy")
|
72
|
-
end
|
73
|
-
|
74
|
-
it "POST /inner_space/scope/token routes to tokens controller" do
|
75
|
-
expect(post("/inner_space/scope/token")).to route_to("custom_authorizations#create")
|
76
|
-
end
|
77
|
-
|
78
|
-
it "GET /inner_space/scope/applications routes to applications controller" do
|
79
|
-
expect(get("/inner_space/scope/applications")).to route_to("custom_authorizations#index")
|
80
|
-
end
|
81
|
-
|
82
|
-
it "GET /inner_space/scope/token/info routes to the token_info controller" do
|
83
|
-
expect(get("/inner_space/scope/token/info")).to route_to("custom_authorizations#show")
|
84
|
-
end
|
85
|
-
|
86
|
-
it "GET /space/oauth/authorize routes to custom authorizations controller" do
|
87
|
-
expect(get("/space/oauth/authorize")).to route_to("custom_authorizations#new")
|
88
|
-
end
|
89
|
-
|
90
|
-
it "POST /space/oauth/authorize routes to custom authorizations controller" do
|
91
|
-
expect(post("/space/oauth/authorize")).to route_to("custom_authorizations#create")
|
92
|
-
end
|
93
|
-
|
94
|
-
it "DELETE /space/oauth/authorize routes to custom authorizations controller" do
|
95
|
-
expect(delete("/space/oauth/authorize")).to route_to("custom_authorizations#destroy")
|
96
|
-
end
|
97
|
-
|
98
|
-
it "POST /space/oauth/token routes to tokens controller" do
|
99
|
-
expect(post("/space/oauth/token")).to route_to("custom_authorizations#create")
|
100
|
-
end
|
101
|
-
|
102
|
-
it "POST /space/oauth/revoke routes to tokens controller" do
|
103
|
-
expect(post("/space/oauth/revoke")).to route_to("custom_authorizations#revoke")
|
104
|
-
end
|
105
|
-
|
106
|
-
it "POST /space/oauth/introspect routes to tokens controller" do
|
107
|
-
expect(post("/space/oauth/introspect")).to route_to("custom_authorizations#introspect")
|
108
|
-
end
|
109
|
-
|
110
|
-
it "GET /space/oauth/applications routes to applications controller" do
|
111
|
-
expect(get("/space/oauth/applications")).to route_to("custom_authorizations#index")
|
112
|
-
end
|
113
|
-
|
114
|
-
it "GET /space/oauth/token/info routes to the token_info controller" do
|
115
|
-
expect(get("/space/oauth/token/info")).to route_to("custom_authorizations#show")
|
116
|
-
end
|
117
|
-
|
118
|
-
it "POST /outer_space/oauth/token is not be routable" do
|
119
|
-
expect(post("/outer_space/oauth/token")).not_to be_routable
|
120
|
-
end
|
121
|
-
|
122
|
-
it "GET /outer_space/oauth/authorize routes to custom authorizations controller" do
|
123
|
-
expect(get("/outer_space/oauth/authorize")).to be_routable
|
124
|
-
end
|
125
|
-
|
126
|
-
it "GET /outer_space/oauth/applications is not routable" do
|
127
|
-
expect(get("/outer_space/oauth/applications")).not_to be_routable
|
128
|
-
end
|
129
|
-
|
130
|
-
it "GET /outer_space/oauth/token_info is not routable" do
|
131
|
-
expect(get("/outer_space/oauth/token/info")).not_to be_routable
|
132
|
-
end
|
133
|
-
end
|
@@ -1,41 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require "spec_helper"
|
4
|
-
|
5
|
-
describe "Default routes" do
|
6
|
-
it "GET /oauth/authorize routes to authorizations controller" do
|
7
|
-
expect(get("/oauth/authorize")).to route_to("doorkeeper/authorizations#new")
|
8
|
-
end
|
9
|
-
|
10
|
-
it "POST /oauth/authorize routes to authorizations controller" do
|
11
|
-
expect(post("/oauth/authorize")).to route_to("doorkeeper/authorizations#create")
|
12
|
-
end
|
13
|
-
|
14
|
-
it "DELETE /oauth/authorize routes to authorizations controller" do
|
15
|
-
expect(delete("/oauth/authorize")).to route_to("doorkeeper/authorizations#destroy")
|
16
|
-
end
|
17
|
-
|
18
|
-
it "POST /oauth/token routes to tokens controller" do
|
19
|
-
expect(post("/oauth/token")).to route_to("doorkeeper/tokens#create")
|
20
|
-
end
|
21
|
-
|
22
|
-
it "POST /oauth/revoke routes to tokens controller" do
|
23
|
-
expect(post("/oauth/revoke")).to route_to("doorkeeper/tokens#revoke")
|
24
|
-
end
|
25
|
-
|
26
|
-
it "POST /oauth/introspect routes to tokens controller" do
|
27
|
-
expect(post("/oauth/introspect")).to route_to("doorkeeper/tokens#introspect")
|
28
|
-
end
|
29
|
-
|
30
|
-
it "GET /oauth/applications routes to applications controller" do
|
31
|
-
expect(get("/oauth/applications")).to route_to("doorkeeper/applications#index")
|
32
|
-
end
|
33
|
-
|
34
|
-
it "GET /oauth/authorized_applications routes to authorized applications controller" do
|
35
|
-
expect(get("/oauth/authorized_applications")).to route_to("doorkeeper/authorized_applications#index")
|
36
|
-
end
|
37
|
-
|
38
|
-
it "GET /oauth/token/info route to authorized TokenInfo controller" do
|
39
|
-
expect(get("/oauth/token/info")).to route_to("doorkeeper/token_info#show")
|
40
|
-
end
|
41
|
-
end
|
@@ -1,47 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require "spec_helper"
|
4
|
-
|
5
|
-
describe "Scoped routes" do
|
6
|
-
before :all do
|
7
|
-
Rails.application.routes.disable_clear_and_finalize = true
|
8
|
-
|
9
|
-
Rails.application.routes.draw do
|
10
|
-
use_doorkeeper scope: "scope"
|
11
|
-
end
|
12
|
-
end
|
13
|
-
|
14
|
-
after :all do
|
15
|
-
Rails.application.routes.clear!
|
16
|
-
|
17
|
-
load File.expand_path("../dummy/config/routes.rb", __dir__)
|
18
|
-
end
|
19
|
-
|
20
|
-
it "GET /scope/authorize routes to authorizations controller" do
|
21
|
-
expect(get("/scope/authorize")).to route_to("doorkeeper/authorizations#new")
|
22
|
-
end
|
23
|
-
|
24
|
-
it "POST /scope/authorize routes to authorizations controller" do
|
25
|
-
expect(post("/scope/authorize")).to route_to("doorkeeper/authorizations#create")
|
26
|
-
end
|
27
|
-
|
28
|
-
it "DELETE /scope/authorize routes to authorizations controller" do
|
29
|
-
expect(delete("/scope/authorize")).to route_to("doorkeeper/authorizations#destroy")
|
30
|
-
end
|
31
|
-
|
32
|
-
it "POST /scope/token routes to tokens controller" do
|
33
|
-
expect(post("/scope/token")).to route_to("doorkeeper/tokens#create")
|
34
|
-
end
|
35
|
-
|
36
|
-
it "GET /scope/applications routes to applications controller" do
|
37
|
-
expect(get("/scope/applications")).to route_to("doorkeeper/applications#index")
|
38
|
-
end
|
39
|
-
|
40
|
-
it "GET /scope/authorized_applications routes to authorized applications controller" do
|
41
|
-
expect(get("/scope/authorized_applications")).to route_to("doorkeeper/authorized_applications#index")
|
42
|
-
end
|
43
|
-
|
44
|
-
it "GET /scope/token/info route to authorized TokenInfo controller" do
|
45
|
-
expect(get("/scope/token/info")).to route_to("doorkeeper/token_info#show")
|
46
|
-
end
|
47
|
-
end
|
data/spec/spec_helper.rb
DELETED
@@ -1,57 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require "coveralls"
|
4
|
-
|
5
|
-
Coveralls.wear!("rails") do
|
6
|
-
add_filter("/spec/")
|
7
|
-
add_filter("/lib/generators/doorkeeper/templates/")
|
8
|
-
end
|
9
|
-
|
10
|
-
ENV["RAILS_ENV"] ||= "test"
|
11
|
-
|
12
|
-
$LOAD_PATH.unshift File.dirname(__FILE__)
|
13
|
-
|
14
|
-
require "#{File.dirname(__FILE__)}/support/doorkeeper_rspec.rb"
|
15
|
-
|
16
|
-
DOORKEEPER_ORM = Doorkeeper::RSpec.detect_orm
|
17
|
-
|
18
|
-
require "dummy/config/environment"
|
19
|
-
require "rspec/rails"
|
20
|
-
require "capybara/rspec"
|
21
|
-
require "database_cleaner"
|
22
|
-
require "generator_spec/test_case"
|
23
|
-
|
24
|
-
# Load JRuby SQLite3 if in that platform
|
25
|
-
if defined? JRUBY_VERSION
|
26
|
-
require "jdbc/sqlite3"
|
27
|
-
Jdbc::SQLite3.load_driver
|
28
|
-
end
|
29
|
-
|
30
|
-
Doorkeeper::RSpec.print_configuration_info
|
31
|
-
|
32
|
-
# Remove after dropping support of Rails 4.2
|
33
|
-
require "#{File.dirname(__FILE__)}/support/http_method_shim"
|
34
|
-
|
35
|
-
require "support/orm/#{DOORKEEPER_ORM}"
|
36
|
-
|
37
|
-
Dir["#{File.dirname(__FILE__)}/support/{dependencies,helpers,shared}/*.rb"].each { |file| require file }
|
38
|
-
|
39
|
-
RSpec.configure do |config|
|
40
|
-
config.infer_spec_type_from_file_location!
|
41
|
-
config.mock_with :rspec
|
42
|
-
|
43
|
-
config.infer_base_class_for_anonymous_controllers = false
|
44
|
-
|
45
|
-
config.include RSpec::Rails::RequestExampleGroup, type: :request
|
46
|
-
|
47
|
-
config.before do
|
48
|
-
DatabaseCleaner.start
|
49
|
-
Doorkeeper.configure { orm DOORKEEPER_ORM }
|
50
|
-
end
|
51
|
-
|
52
|
-
config.after do
|
53
|
-
DatabaseCleaner.clean
|
54
|
-
end
|
55
|
-
|
56
|
-
config.order = "random"
|
57
|
-
end
|
@@ -1,22 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Doorkeeper
|
4
|
-
class RSpec
|
5
|
-
# Print's useful information about env: Ruby / Rails versions,
|
6
|
-
# Doorkeeper configuration, etc.
|
7
|
-
def self.print_configuration_info
|
8
|
-
puts <<-INFO.strip_heredoc
|
9
|
-
====> Doorkeeper ORM: '#{Doorkeeper.configuration.orm}'
|
10
|
-
====> Doorkeeper version: #{Doorkeeper.gem_version}
|
11
|
-
====> Rails version: #{::Rails.version}
|
12
|
-
====> Ruby version: #{RUBY_VERSION} on #{RUBY_PLATFORM}
|
13
|
-
INFO
|
14
|
-
end
|
15
|
-
|
16
|
-
# Tries to find ORM from the Gemfile used to run test suite
|
17
|
-
def self.detect_orm
|
18
|
-
orm = (ENV["BUNDLE_GEMFILE"] || "").match(/Gemfile\.(.+)\.rb/)
|
19
|
-
(orm && orm[1] || ENV["ORM"] || :active_record).to_sym
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
@@ -1,13 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module AccessTokenRequestHelper
|
4
|
-
def client_is_authorized(client, resource_owner, access_token_attributes = {})
|
5
|
-
attributes = {
|
6
|
-
application: client,
|
7
|
-
resource_owner_id: resource_owner.id,
|
8
|
-
}.merge(access_token_attributes)
|
9
|
-
FactoryBot.create(:access_token, attributes)
|
10
|
-
end
|
11
|
-
end
|
12
|
-
|
13
|
-
RSpec.configuration.send :include, AccessTokenRequestHelper
|