doorkeeper 5.1.0 → 5.5.0
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/{NEWS.md → CHANGELOG.md} +234 -25
- data/README.md +21 -11
- data/app/controllers/doorkeeper/application_controller.rb +2 -2
- data/app/controllers/doorkeeper/application_metal_controller.rb +3 -2
- data/app/controllers/doorkeeper/applications_controller.rb +8 -7
- data/app/controllers/doorkeeper/authorizations_controller.rb +56 -19
- data/app/controllers/doorkeeper/authorized_applications_controller.rb +5 -5
- data/app/controllers/doorkeeper/token_info_controller.rb +12 -2
- data/app/controllers/doorkeeper/tokens_controller.rb +93 -25
- data/app/views/doorkeeper/applications/_form.html.erb +1 -7
- data/app/views/doorkeeper/applications/show.html.erb +35 -14
- data/app/views/doorkeeper/authorizations/form_post.html.erb +11 -0
- data/config/locales/en.yml +13 -3
- data/lib/doorkeeper/config/abstract_builder.rb +28 -0
- data/lib/doorkeeper/config/option.rb +20 -2
- data/lib/doorkeeper/config/validations.rb +53 -0
- data/lib/doorkeeper/config.rb +291 -121
- data/lib/doorkeeper/engine.rb +1 -1
- data/lib/doorkeeper/errors.rb +13 -18
- 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 +7 -3
- data/lib/doorkeeper/helpers/controller.rb +36 -11
- data/lib/doorkeeper/models/access_grant_mixin.rb +22 -18
- data/lib/doorkeeper/models/access_token_mixin.rb +194 -51
- data/lib/doorkeeper/models/application_mixin.rb +8 -7
- 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 +25 -14
- data/lib/doorkeeper/oauth/authorization/context.rb +5 -5
- data/lib/doorkeeper/oauth/authorization/token.rb +24 -19
- data/lib/doorkeeper/oauth/authorization/uri_builder.rb +4 -4
- data/lib/doorkeeper/oauth/authorization_code_request.rb +40 -21
- data/lib/doorkeeper/oauth/base_request.rb +21 -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 +45 -5
- data/lib/doorkeeper/oauth/client_credentials/issuer.rb +10 -8
- data/lib/doorkeeper/oauth/client_credentials/{validation.rb → validator.rb} +13 -3
- data/lib/doorkeeper/oauth/client_credentials_request.rb +8 -7
- data/lib/doorkeeper/oauth/code_request.rb +6 -12
- 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/helpers/scope_checker.rb +8 -12
- data/lib/doorkeeper/oauth/helpers/unique_token.rb +8 -5
- data/lib/doorkeeper/oauth/helpers/uri_checker.rb +19 -5
- 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 +7 -4
- data/lib/doorkeeper/oauth/nonstandard.rb +39 -0
- data/lib/doorkeeper/oauth/password_access_token_request.rb +32 -10
- data/lib/doorkeeper/oauth/pre_authorization.rb +111 -42
- data/lib/doorkeeper/oauth/refresh_token_request.rb +45 -33
- data/lib/doorkeeper/oauth/token.rb +6 -7
- data/lib/doorkeeper/oauth/token_introspection.rb +24 -18
- data/lib/doorkeeper/oauth/token_request.rb +6 -20
- 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 -83
- data/lib/doorkeeper/orm/active_record/mixins/access_grant.rb +68 -0
- data/lib/doorkeeper/orm/active_record/mixins/access_token.rb +59 -0
- data/lib/doorkeeper/orm/active_record/mixins/application.rb +198 -0
- data/lib/doorkeeper/orm/active_record/redirect_uri_validator.rb +66 -0
- data/lib/doorkeeper/orm/active_record.rb +20 -6
- 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 +5 -3
- data/lib/doorkeeper/request/client_credentials.rb +2 -2
- data/lib/doorkeeper/request/password.rb +2 -2
- data/lib/doorkeeper/request/refresh_token.rb +5 -4
- data/lib/doorkeeper/request/strategy.rb +2 -2
- data/lib/doorkeeper/request.rb +49 -17
- data/lib/doorkeeper/server.rb +7 -11
- data/lib/doorkeeper/stale_records_cleaner.rb +6 -2
- data/lib/doorkeeper/version.rb +1 -5
- data/lib/doorkeeper.rb +114 -79
- 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 +7 -7
- 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 +205 -43
- data/lib/generators/doorkeeper/templates/migration.rb.erb +18 -6
- metadata +43 -310
- data/.coveralls.yml +0 -1
- data/.github/ISSUE_TEMPLATE.md +0 -25
- data/.github/PULL_REQUEST_TEMPLATE.md +0 -17
- data/.gitignore +0 -20
- data/.gitlab-ci.yml +0 -16
- data/.hound.yml +0 -3
- data/.rspec +0 -1
- data/.rubocop.yml +0 -50
- data/.travis.yml +0 -35
- data/Appraisals +0 -40
- data/CODE_OF_CONDUCT.md +0 -46
- data/CONTRIBUTING.md +0 -47
- data/Dangerfile +0 -67
- data/Gemfile +0 -24
- data/RELEASING.md +0 -10
- data/Rakefile +0 -28
- data/SECURITY.md +0 -15
- data/UPGRADE.md +0 -2
- data/app/validators/redirect_uri_validator.rb +0 -50
- data/bin/console +0 -16
- data/doorkeeper.gemspec +0 -34
- data/gemfiles/rails_5_0.gemfile +0 -17
- data/gemfiles/rails_5_1.gemfile +0 -17
- data/gemfiles/rails_5_2.gemfile +0 -17
- data/gemfiles/rails_6_0.gemfile +0 -17
- data/gemfiles/rails_master.gemfile +0 -17
- data/spec/controllers/application_metal_controller_spec.rb +0 -64
- data/spec/controllers/applications_controller_spec.rb +0 -180
- data/spec/controllers/authorizations_controller_spec.rb +0 -527
- 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 -330
- 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 -47
- 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 -121
- 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 -697
- 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 -156
- data/spec/lib/oauth/base_request_spec.rb +0 -205
- 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 -94
- 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 -47
- 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 -247
- 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 -215
- data/spec/lib/oauth/refresh_token_request_spec.rb +0 -177
- data/spec/lib/oauth/scopes_spec.rb +0 -148
- data/spec/lib/oauth/token_request_spec.rb +0 -150
- 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 -61
- data/spec/lib/stale_records_cleaner_spec.rb +0 -89
- data/spec/models/doorkeeper/access_grant_spec.rb +0 -144
- data/spec/models/doorkeeper/access_token_spec.rb +0 -591
- data/spec/models/doorkeeper/application_spec.rb +0 -367
- 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 -73
- data/spec/requests/endpoints/token_spec.rb +0 -75
- data/spec/requests/flows/authorization_code_errors_spec.rb +0 -78
- data/spec/requests/flows/authorization_code_spec.rb +0 -447
- data/spec/requests/flows/client_credentials_spec.rb +0 -128
- data/spec/requests/flows/implicit_grant_errors_spec.rb +0 -34
- data/spec/requests/flows/implicit_grant_spec.rb +0 -90
- data/spec/requests/flows/password_spec.rb +0 -259
- data/spec/requests/flows/refresh_token_spec.rb +0 -233
- data/spec/requests/flows/revoke_token_spec.rb +0 -143
- 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 -98
- 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 -158
- data/spec/version/version_spec.rb +0 -17
@@ -1,233 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require "spec_helper"
|
4
|
-
|
5
|
-
describe "Refresh Token Flow" do
|
6
|
-
before do
|
7
|
-
Doorkeeper.configure do
|
8
|
-
orm DOORKEEPER_ORM
|
9
|
-
use_refresh_token
|
10
|
-
end
|
11
|
-
|
12
|
-
client_exists
|
13
|
-
end
|
14
|
-
|
15
|
-
context "issuing a refresh token" do
|
16
|
-
before do
|
17
|
-
authorization_code_exists application: @client
|
18
|
-
end
|
19
|
-
|
20
|
-
it "client gets the refresh token and refreshes it" do
|
21
|
-
post token_endpoint_url(code: @authorization.token, client: @client)
|
22
|
-
|
23
|
-
token = Doorkeeper::AccessToken.first
|
24
|
-
|
25
|
-
should_have_json "access_token", token.token
|
26
|
-
should_have_json "refresh_token", token.refresh_token
|
27
|
-
|
28
|
-
expect(@authorization.reload).to be_revoked
|
29
|
-
|
30
|
-
post refresh_token_endpoint_url(client: @client, refresh_token: token.refresh_token)
|
31
|
-
|
32
|
-
new_token = Doorkeeper::AccessToken.last
|
33
|
-
should_have_json "access_token", new_token.token
|
34
|
-
should_have_json "refresh_token", new_token.refresh_token
|
35
|
-
|
36
|
-
expect(token.token).not_to eq(new_token.token)
|
37
|
-
expect(token.refresh_token).not_to eq(new_token.refresh_token)
|
38
|
-
end
|
39
|
-
end
|
40
|
-
|
41
|
-
context "refreshing the token" do
|
42
|
-
before do
|
43
|
-
@token = FactoryBot.create(
|
44
|
-
:access_token,
|
45
|
-
application: @client,
|
46
|
-
resource_owner_id: 1,
|
47
|
-
use_refresh_token: true
|
48
|
-
)
|
49
|
-
end
|
50
|
-
|
51
|
-
context "refresh_token revoked on use" do
|
52
|
-
it "client request a token with refresh token" do
|
53
|
-
post refresh_token_endpoint_url(
|
54
|
-
client: @client, refresh_token: @token.refresh_token
|
55
|
-
)
|
56
|
-
should_have_json(
|
57
|
-
"refresh_token", Doorkeeper::AccessToken.last.refresh_token
|
58
|
-
)
|
59
|
-
expect(@token.reload).not_to be_revoked
|
60
|
-
end
|
61
|
-
|
62
|
-
it "client request a token with expired access token" do
|
63
|
-
@token.update_attribute :expires_in, -100
|
64
|
-
post refresh_token_endpoint_url(
|
65
|
-
client: @client, refresh_token: @token.refresh_token
|
66
|
-
)
|
67
|
-
should_have_json(
|
68
|
-
"refresh_token", Doorkeeper::AccessToken.last.refresh_token
|
69
|
-
)
|
70
|
-
expect(@token.reload).not_to be_revoked
|
71
|
-
end
|
72
|
-
end
|
73
|
-
|
74
|
-
context "refresh_token revoked on refresh_token request" do
|
75
|
-
before do
|
76
|
-
allow(Doorkeeper::AccessToken).to receive(:refresh_token_revoked_on_use?).and_return(false)
|
77
|
-
end
|
78
|
-
|
79
|
-
it "client request a token with refresh token" do
|
80
|
-
post refresh_token_endpoint_url(
|
81
|
-
client: @client, refresh_token: @token.refresh_token
|
82
|
-
)
|
83
|
-
should_have_json(
|
84
|
-
"refresh_token", Doorkeeper::AccessToken.last.refresh_token
|
85
|
-
)
|
86
|
-
expect(@token.reload).to be_revoked
|
87
|
-
end
|
88
|
-
|
89
|
-
it "client request a token with expired access token" do
|
90
|
-
@token.update_attribute :expires_in, -100
|
91
|
-
post refresh_token_endpoint_url(
|
92
|
-
client: @client, refresh_token: @token.refresh_token
|
93
|
-
)
|
94
|
-
should_have_json(
|
95
|
-
"refresh_token", Doorkeeper::AccessToken.last.refresh_token
|
96
|
-
)
|
97
|
-
expect(@token.reload).to be_revoked
|
98
|
-
end
|
99
|
-
end
|
100
|
-
|
101
|
-
context "public & private clients" do
|
102
|
-
let(:public_client) do
|
103
|
-
FactoryBot.create(
|
104
|
-
:application,
|
105
|
-
confidential: false
|
106
|
-
)
|
107
|
-
end
|
108
|
-
|
109
|
-
let(:token_for_private_client) do
|
110
|
-
FactoryBot.create(
|
111
|
-
:access_token,
|
112
|
-
application: @client,
|
113
|
-
resource_owner_id: 1,
|
114
|
-
use_refresh_token: true
|
115
|
-
)
|
116
|
-
end
|
117
|
-
|
118
|
-
let(:token_for_public_client) do
|
119
|
-
FactoryBot.create(
|
120
|
-
:access_token,
|
121
|
-
application: public_client,
|
122
|
-
resource_owner_id: 1,
|
123
|
-
use_refresh_token: true
|
124
|
-
)
|
125
|
-
end
|
126
|
-
|
127
|
-
it "issues a new token without client_secret when refresh token was issued to a public client" do
|
128
|
-
post refresh_token_endpoint_url(
|
129
|
-
client_id: public_client.uid,
|
130
|
-
refresh_token: token_for_public_client.refresh_token
|
131
|
-
)
|
132
|
-
|
133
|
-
new_token = Doorkeeper::AccessToken.last
|
134
|
-
should_have_json "access_token", new_token.token
|
135
|
-
should_have_json "refresh_token", new_token.refresh_token
|
136
|
-
end
|
137
|
-
|
138
|
-
it "returns an error without credentials" do
|
139
|
-
post refresh_token_endpoint_url(refresh_token: token_for_private_client.refresh_token)
|
140
|
-
|
141
|
-
should_not_have_json "refresh_token"
|
142
|
-
should_have_json "error", "invalid_grant"
|
143
|
-
end
|
144
|
-
|
145
|
-
it "returns an error with wrong credentials" do
|
146
|
-
post refresh_token_endpoint_url(
|
147
|
-
client_id: "1",
|
148
|
-
client_secret: "1",
|
149
|
-
refresh_token: token_for_private_client.refresh_token
|
150
|
-
)
|
151
|
-
|
152
|
-
should_not_have_json "refresh_token"
|
153
|
-
should_have_json "error", "invalid_client"
|
154
|
-
end
|
155
|
-
end
|
156
|
-
|
157
|
-
it "client gets an error for invalid refresh token" do
|
158
|
-
post refresh_token_endpoint_url(client: @client, refresh_token: "invalid")
|
159
|
-
should_not_have_json "refresh_token"
|
160
|
-
should_have_json "error", "invalid_grant"
|
161
|
-
end
|
162
|
-
|
163
|
-
it "client gets an error for revoked access token" do
|
164
|
-
@token.revoke
|
165
|
-
post refresh_token_endpoint_url(client: @client, refresh_token: @token.refresh_token)
|
166
|
-
should_not_have_json "refresh_token"
|
167
|
-
should_have_json "error", "invalid_grant"
|
168
|
-
end
|
169
|
-
|
170
|
-
it "second of simultaneous client requests get an error for revoked access token" do
|
171
|
-
allow_any_instance_of(Doorkeeper::AccessToken).to receive(:revoked?).and_return(false, true)
|
172
|
-
post refresh_token_endpoint_url(client: @client, refresh_token: @token.refresh_token)
|
173
|
-
|
174
|
-
should_not_have_json "refresh_token"
|
175
|
-
should_have_json "error", "invalid_request"
|
176
|
-
end
|
177
|
-
end
|
178
|
-
|
179
|
-
context "refreshing the token with multiple sessions (devices)" do
|
180
|
-
before do
|
181
|
-
# enable password auth to simulate other devices
|
182
|
-
config_is_set(:grant_flows, ["password"])
|
183
|
-
config_is_set(:resource_owner_from_credentials) do
|
184
|
-
User.authenticate! params[:username], params[:password]
|
185
|
-
end
|
186
|
-
create_resource_owner
|
187
|
-
_another_token = post password_token_endpoint_url(
|
188
|
-
client: @client, resource_owner: @resource_owner
|
189
|
-
)
|
190
|
-
last_token.update_attribute :created_at, 5.seconds.ago
|
191
|
-
|
192
|
-
@token = FactoryBot.create(
|
193
|
-
:access_token,
|
194
|
-
application: @client,
|
195
|
-
resource_owner_id: @resource_owner.id,
|
196
|
-
use_refresh_token: true
|
197
|
-
)
|
198
|
-
@token.update_attribute :expires_in, -100
|
199
|
-
end
|
200
|
-
|
201
|
-
context "refresh_token revoked on use" do
|
202
|
-
it "client request a token after creating another token with the same user" do
|
203
|
-
post refresh_token_endpoint_url(
|
204
|
-
client: @client, refresh_token: @token.refresh_token
|
205
|
-
)
|
206
|
-
|
207
|
-
should_have_json "refresh_token", last_token.refresh_token
|
208
|
-
expect(@token.reload).not_to be_revoked
|
209
|
-
end
|
210
|
-
end
|
211
|
-
|
212
|
-
context "refresh_token revoked on refresh_token request" do
|
213
|
-
before do
|
214
|
-
allow(Doorkeeper::AccessToken).to receive(:refresh_token_revoked_on_use?).and_return(false)
|
215
|
-
end
|
216
|
-
|
217
|
-
it "client request a token after creating another token with the same user" do
|
218
|
-
post refresh_token_endpoint_url(
|
219
|
-
client: @client, refresh_token: @token.refresh_token
|
220
|
-
)
|
221
|
-
|
222
|
-
should_have_json "refresh_token", last_token.refresh_token
|
223
|
-
expect(@token.reload).to be_revoked
|
224
|
-
end
|
225
|
-
end
|
226
|
-
|
227
|
-
def last_token
|
228
|
-
Doorkeeper::AccessToken.last_authorized_token_for(
|
229
|
-
@client.id, @resource_owner.id
|
230
|
-
)
|
231
|
-
end
|
232
|
-
end
|
233
|
-
end
|
@@ -1,143 +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 successfully" 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
|
-
# The authorization server responds with HTTP status code 200 even if
|
51
|
-
# token is invalid
|
52
|
-
expect(response).to be_successful
|
53
|
-
end
|
54
|
-
end
|
55
|
-
|
56
|
-
context "with bad credentials and a valid token" do
|
57
|
-
let(:headers) do
|
58
|
-
client_id = client_application.uid
|
59
|
-
credentials = Base64.encode64("#{client_id}:poop")
|
60
|
-
{ "HTTP_AUTHORIZATION" => "Basic #{credentials}" }
|
61
|
-
end
|
62
|
-
it "should not revoke any tokens and respond successfully" do
|
63
|
-
post revocation_token_endpoint_url, params: { token: access_token.token }, headers: headers
|
64
|
-
|
65
|
-
expect(response).to be_successful
|
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 successfully" do
|
72
|
-
post revocation_token_endpoint_url, params: { token: access_token.token }
|
73
|
-
|
74
|
-
expect(response).to be_successful
|
75
|
-
expect(access_token.reload.revoked?).to be_falsey
|
76
|
-
end
|
77
|
-
end
|
78
|
-
|
79
|
-
context "with valid token for another client application" do
|
80
|
-
let(:other_client_application) { FactoryBot.create :application }
|
81
|
-
let(:headers) do
|
82
|
-
client_id = other_client_application.uid
|
83
|
-
client_secret = other_client_application.secret
|
84
|
-
credentials = Base64.encode64("#{client_id}:#{client_secret}")
|
85
|
-
{ "HTTP_AUTHORIZATION" => "Basic #{credentials}" }
|
86
|
-
end
|
87
|
-
|
88
|
-
it "should not revoke the token as its unauthorized" do
|
89
|
-
post revocation_token_endpoint_url, params: { token: access_token.token }, headers: headers
|
90
|
-
|
91
|
-
expect(response).to be_successful
|
92
|
-
expect(access_token.reload.revoked?).to be_falsey
|
93
|
-
end
|
94
|
-
end
|
95
|
-
end
|
96
|
-
|
97
|
-
context "with public OAuth 2.0 client/application" do
|
98
|
-
let(:access_token) do
|
99
|
-
FactoryBot.create(:access_token,
|
100
|
-
application: nil,
|
101
|
-
resource_owner_id: resource_owner.id,
|
102
|
-
use_refresh_token: true)
|
103
|
-
end
|
104
|
-
|
105
|
-
it "should revoke the access token provided" do
|
106
|
-
post revocation_token_endpoint_url, params: { token: access_token.token }
|
107
|
-
|
108
|
-
expect(response).to be_successful
|
109
|
-
expect(access_token.reload.revoked?).to be_truthy
|
110
|
-
end
|
111
|
-
|
112
|
-
it "should revoke the refresh token provided" do
|
113
|
-
post revocation_token_endpoint_url, params: { token: access_token.refresh_token }
|
114
|
-
|
115
|
-
expect(response).to be_successful
|
116
|
-
expect(access_token.reload.revoked?).to be_truthy
|
117
|
-
end
|
118
|
-
|
119
|
-
context "with a valid token issued for a confidential client" do
|
120
|
-
let(:access_token) do
|
121
|
-
FactoryBot.create(:access_token,
|
122
|
-
application: client_application,
|
123
|
-
resource_owner_id: resource_owner.id,
|
124
|
-
use_refresh_token: true)
|
125
|
-
end
|
126
|
-
|
127
|
-
it "should not revoke the access token provided" do
|
128
|
-
post revocation_token_endpoint_url, params: { token: access_token.token }
|
129
|
-
|
130
|
-
expect(response).to be_successful
|
131
|
-
expect(access_token.reload.revoked?).to be_falsey
|
132
|
-
end
|
133
|
-
|
134
|
-
it "should not revoke the refresh token provided" do
|
135
|
-
post revocation_token_endpoint_url, params: { token: access_token.token }
|
136
|
-
|
137
|
-
expect(response).to be_successful
|
138
|
-
expect(access_token.reload.revoked?).to be_falsey
|
139
|
-
end
|
140
|
-
end
|
141
|
-
end
|
142
|
-
end
|
143
|
-
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
|