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.

Files changed (274) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1049 -0
  3. data/README.md +110 -353
  4. data/app/assets/stylesheets/doorkeeper/admin/application.css +2 -2
  5. data/app/controllers/doorkeeper/application_controller.rb +6 -7
  6. data/app/controllers/doorkeeper/application_metal_controller.rb +7 -11
  7. data/app/controllers/doorkeeper/applications_controller.rb +65 -16
  8. data/app/controllers/doorkeeper/authorizations_controller.rb +97 -17
  9. data/app/controllers/doorkeeper/authorized_applications_controller.rb +22 -3
  10. data/app/controllers/doorkeeper/token_info_controller.rb +16 -4
  11. data/app/controllers/doorkeeper/tokens_controller.rb +115 -38
  12. data/app/helpers/doorkeeper/dashboard_helper.rb +10 -6
  13. data/app/views/doorkeeper/applications/_delete_form.html.erb +3 -1
  14. data/app/views/doorkeeper/applications/_form.html.erb +33 -21
  15. data/app/views/doorkeeper/applications/edit.html.erb +1 -1
  16. data/app/views/doorkeeper/applications/index.html.erb +18 -6
  17. data/app/views/doorkeeper/applications/new.html.erb +1 -1
  18. data/app/views/doorkeeper/applications/show.html.erb +40 -16
  19. data/app/views/doorkeeper/authorizations/error.html.erb +1 -1
  20. data/app/views/doorkeeper/authorizations/form_post.html.erb +15 -0
  21. data/app/views/doorkeeper/authorizations/new.html.erb +6 -0
  22. data/app/views/doorkeeper/authorized_applications/index.html.erb +0 -1
  23. data/app/views/layouts/doorkeeper/admin.html.erb +16 -14
  24. data/config/locales/en.yml +34 -7
  25. data/lib/doorkeeper/config/abstract_builder.rb +28 -0
  26. data/lib/doorkeeper/config/option.rb +82 -0
  27. data/lib/doorkeeper/config/validations.rb +53 -0
  28. data/lib/doorkeeper/config.rb +514 -167
  29. data/lib/doorkeeper/engine.rb +11 -5
  30. data/lib/doorkeeper/errors.rb +25 -16
  31. data/lib/doorkeeper/grant_flow/fallback_flow.rb +15 -0
  32. data/lib/doorkeeper/grant_flow/flow.rb +44 -0
  33. data/lib/doorkeeper/grant_flow/registry.rb +50 -0
  34. data/lib/doorkeeper/grant_flow.rb +45 -0
  35. data/lib/doorkeeper/grape/authorization_decorator.rb +6 -4
  36. data/lib/doorkeeper/grape/helpers.rb +23 -12
  37. data/lib/doorkeeper/helpers/controller.rb +51 -14
  38. data/lib/doorkeeper/models/access_grant_mixin.rb +94 -27
  39. data/lib/doorkeeper/models/access_token_mixin.rb +284 -96
  40. data/lib/doorkeeper/models/application_mixin.rb +58 -27
  41. data/lib/doorkeeper/models/concerns/accessible.rb +2 -0
  42. data/lib/doorkeeper/models/concerns/expirable.rb +12 -6
  43. data/lib/doorkeeper/models/concerns/orderable.rb +15 -0
  44. data/lib/doorkeeper/models/concerns/ownership.rb +4 -7
  45. data/lib/doorkeeper/models/concerns/resource_ownerable.rb +47 -0
  46. data/lib/doorkeeper/models/concerns/reusable.rb +19 -0
  47. data/lib/doorkeeper/models/concerns/revocable.rb +3 -27
  48. data/lib/doorkeeper/models/concerns/scopes.rb +12 -2
  49. data/lib/doorkeeper/models/concerns/secret_storable.rb +106 -0
  50. data/lib/doorkeeper/oauth/authorization/code.rb +48 -12
  51. data/lib/doorkeeper/oauth/authorization/context.rb +17 -0
  52. data/lib/doorkeeper/oauth/authorization/token.rb +66 -28
  53. data/lib/doorkeeper/oauth/authorization/uri_builder.rb +7 -5
  54. data/lib/doorkeeper/oauth/authorization_code_request.rb +63 -10
  55. data/lib/doorkeeper/oauth/base_request.rb +35 -19
  56. data/lib/doorkeeper/oauth/base_response.rb +2 -0
  57. data/lib/doorkeeper/oauth/client/credentials.rb +9 -7
  58. data/lib/doorkeeper/oauth/client.rb +10 -11
  59. data/lib/doorkeeper/oauth/client_credentials/creator.rb +47 -4
  60. data/lib/doorkeeper/oauth/client_credentials/issuer.rb +16 -9
  61. data/lib/doorkeeper/oauth/client_credentials/validator.rb +56 -0
  62. data/lib/doorkeeper/oauth/client_credentials_request.rb +10 -11
  63. data/lib/doorkeeper/oauth/code_request.rb +8 -12
  64. data/lib/doorkeeper/oauth/code_response.rb +27 -15
  65. data/lib/doorkeeper/oauth/error.rb +5 -3
  66. data/lib/doorkeeper/oauth/error_response.rb +35 -15
  67. data/lib/doorkeeper/oauth/forbidden_token_response.rb +11 -3
  68. data/lib/doorkeeper/oauth/helpers/scope_checker.rb +23 -18
  69. data/lib/doorkeeper/oauth/helpers/unique_token.rb +20 -3
  70. data/lib/doorkeeper/oauth/helpers/uri_checker.rb +53 -3
  71. data/lib/doorkeeper/oauth/hooks/context.rb +21 -0
  72. data/lib/doorkeeper/oauth/invalid_request_response.rb +43 -0
  73. data/lib/doorkeeper/oauth/invalid_token_response.rb +29 -5
  74. data/lib/doorkeeper/oauth/nonstandard.rb +39 -0
  75. data/lib/doorkeeper/oauth/password_access_token_request.rb +44 -10
  76. data/lib/doorkeeper/oauth/pre_authorization.rb +135 -26
  77. data/lib/doorkeeper/oauth/refresh_token_request.rb +60 -31
  78. data/lib/doorkeeper/oauth/scopes.rb +26 -12
  79. data/lib/doorkeeper/oauth/token.rb +13 -9
  80. data/lib/doorkeeper/oauth/token_introspection.rb +202 -0
  81. data/lib/doorkeeper/oauth/token_request.rb +8 -20
  82. data/lib/doorkeeper/oauth/token_response.rb +14 -10
  83. data/lib/doorkeeper/oauth.rb +13 -0
  84. data/lib/doorkeeper/orm/active_record/access_grant.rb +6 -4
  85. data/lib/doorkeeper/orm/active_record/access_token.rb +5 -42
  86. data/lib/doorkeeper/orm/active_record/application.rb +6 -20
  87. data/lib/doorkeeper/orm/active_record/mixins/access_grant.rb +69 -0
  88. data/lib/doorkeeper/orm/active_record/mixins/access_token.rb +60 -0
  89. data/lib/doorkeeper/orm/active_record/mixins/application.rb +199 -0
  90. data/lib/doorkeeper/orm/active_record/redirect_uri_validator.rb +66 -0
  91. data/lib/doorkeeper/orm/active_record/stale_records_cleaner.rb +33 -0
  92. data/lib/doorkeeper/orm/active_record.rb +37 -8
  93. data/lib/doorkeeper/rails/helpers.rb +14 -13
  94. data/lib/doorkeeper/rails/routes/abstract_router.rb +35 -0
  95. data/lib/doorkeeper/rails/routes/mapper.rb +4 -2
  96. data/lib/doorkeeper/rails/routes/mapping.rb +9 -7
  97. data/lib/doorkeeper/rails/routes/registry.rb +45 -0
  98. data/lib/doorkeeper/rails/routes.rb +41 -28
  99. data/lib/doorkeeper/rake/db.rake +40 -0
  100. data/lib/doorkeeper/rake/setup.rake +11 -0
  101. data/lib/doorkeeper/rake.rb +14 -0
  102. data/lib/doorkeeper/request/authorization_code.rb +6 -4
  103. data/lib/doorkeeper/request/client_credentials.rb +3 -3
  104. data/lib/doorkeeper/request/code.rb +1 -1
  105. data/lib/doorkeeper/request/password.rb +5 -14
  106. data/lib/doorkeeper/request/refresh_token.rb +6 -5
  107. data/lib/doorkeeper/request/strategy.rb +4 -2
  108. data/lib/doorkeeper/request/token.rb +1 -1
  109. data/lib/doorkeeper/request.rb +62 -29
  110. data/lib/doorkeeper/secret_storing/base.rb +64 -0
  111. data/lib/doorkeeper/secret_storing/bcrypt.rb +60 -0
  112. data/lib/doorkeeper/secret_storing/plain.rb +33 -0
  113. data/lib/doorkeeper/secret_storing/sha256_hash.rb +26 -0
  114. data/lib/doorkeeper/server.rb +9 -11
  115. data/lib/doorkeeper/stale_records_cleaner.rb +24 -0
  116. data/lib/doorkeeper/validations.rb +5 -2
  117. data/lib/doorkeeper/version.rb +12 -1
  118. data/lib/doorkeeper.rb +111 -62
  119. data/lib/generators/doorkeeper/application_owner_generator.rb +28 -13
  120. data/lib/generators/doorkeeper/confidential_applications_generator.rb +33 -0
  121. data/lib/generators/doorkeeper/enable_polymorphic_resource_owner_generator.rb +39 -0
  122. data/lib/generators/doorkeeper/install_generator.rb +19 -9
  123. data/lib/generators/doorkeeper/migration_generator.rb +27 -10
  124. data/lib/generators/doorkeeper/pkce_generator.rb +33 -0
  125. data/lib/generators/doorkeeper/previous_refresh_token_generator.rb +31 -19
  126. data/lib/generators/doorkeeper/templates/add_confidential_to_applications.rb.erb +13 -0
  127. data/lib/generators/doorkeeper/templates/add_owner_to_application_migration.rb.erb +9 -0
  128. 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
  129. data/lib/generators/doorkeeper/templates/enable_pkce_migration.rb.erb +8 -0
  130. data/lib/generators/doorkeeper/templates/enable_polymorphic_resource_owner_migration.rb.erb +17 -0
  131. data/lib/generators/doorkeeper/templates/initializer.rb +412 -33
  132. data/lib/generators/doorkeeper/templates/migration.rb.erb +88 -0
  133. data/lib/generators/doorkeeper/views_generator.rb +8 -4
  134. data/vendor/assets/stylesheets/doorkeeper/bootstrap.min.css +4 -5
  135. metadata +114 -276
  136. data/.coveralls.yml +0 -1
  137. data/.gitignore +0 -19
  138. data/.hound.yml +0 -13
  139. data/.rspec +0 -1
  140. data/.travis.yml +0 -26
  141. data/Appraisals +0 -14
  142. data/CONTRIBUTING.md +0 -47
  143. data/Gemfile +0 -10
  144. data/NEWS.md +0 -606
  145. data/RELEASING.md +0 -10
  146. data/Rakefile +0 -20
  147. data/app/validators/redirect_uri_validator.rb +0 -34
  148. data/doorkeeper.gemspec +0 -29
  149. data/gemfiles/rails_4_2.gemfile +0 -11
  150. data/gemfiles/rails_5_0.gemfile +0 -12
  151. data/gemfiles/rails_5_1.gemfile +0 -13
  152. data/lib/doorkeeper/oauth/client_credentials/validation.rb +0 -45
  153. data/lib/generators/doorkeeper/templates/add_owner_to_application_migration.rb +0 -7
  154. data/lib/generators/doorkeeper/templates/add_previous_refresh_token_to_access_tokens.rb +0 -11
  155. data/lib/generators/doorkeeper/templates/migration.rb +0 -68
  156. data/spec/controllers/application_metal_controller.rb +0 -10
  157. data/spec/controllers/applications_controller_spec.rb +0 -58
  158. data/spec/controllers/authorizations_controller_spec.rb +0 -218
  159. data/spec/controllers/protected_resources_controller_spec.rb +0 -300
  160. data/spec/controllers/token_info_controller_spec.rb +0 -52
  161. data/spec/controllers/tokens_controller_spec.rb +0 -88
  162. data/spec/dummy/Rakefile +0 -7
  163. data/spec/dummy/app/controllers/application_controller.rb +0 -3
  164. data/spec/dummy/app/controllers/custom_authorizations_controller.rb +0 -7
  165. data/spec/dummy/app/controllers/full_protected_resources_controller.rb +0 -12
  166. data/spec/dummy/app/controllers/home_controller.rb +0 -17
  167. data/spec/dummy/app/controllers/metal_controller.rb +0 -11
  168. data/spec/dummy/app/controllers/semi_protected_resources_controller.rb +0 -11
  169. data/spec/dummy/app/helpers/application_helper.rb +0 -5
  170. data/spec/dummy/app/models/user.rb +0 -5
  171. data/spec/dummy/app/views/home/index.html.erb +0 -0
  172. data/spec/dummy/app/views/layouts/application.html.erb +0 -14
  173. data/spec/dummy/config/application.rb +0 -23
  174. data/spec/dummy/config/boot.rb +0 -9
  175. data/spec/dummy/config/database.yml +0 -15
  176. data/spec/dummy/config/environment.rb +0 -5
  177. data/spec/dummy/config/environments/development.rb +0 -29
  178. data/spec/dummy/config/environments/production.rb +0 -62
  179. data/spec/dummy/config/environments/test.rb +0 -44
  180. data/spec/dummy/config/initializers/active_record_belongs_to_required_by_default.rb +0 -6
  181. data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
  182. data/spec/dummy/config/initializers/doorkeeper.rb +0 -96
  183. data/spec/dummy/config/initializers/secret_token.rb +0 -9
  184. data/spec/dummy/config/initializers/session_store.rb +0 -8
  185. data/spec/dummy/config/initializers/wrap_parameters.rb +0 -14
  186. data/spec/dummy/config/locales/doorkeeper.en.yml +0 -5
  187. data/spec/dummy/config/routes.rb +0 -52
  188. data/spec/dummy/config.ru +0 -4
  189. data/spec/dummy/db/migrate/20111122132257_create_users.rb +0 -9
  190. data/spec/dummy/db/migrate/20120312140401_add_password_to_users.rb +0 -5
  191. data/spec/dummy/db/migrate/20151223192035_create_doorkeeper_tables.rb +0 -60
  192. data/spec/dummy/db/migrate/20151223200000_add_owner_to_application.rb +0 -7
  193. data/spec/dummy/db/schema.rb +0 -67
  194. data/spec/dummy/public/404.html +0 -26
  195. data/spec/dummy/public/422.html +0 -26
  196. data/spec/dummy/public/500.html +0 -26
  197. data/spec/dummy/public/favicon.ico +0 -0
  198. data/spec/dummy/script/rails +0 -6
  199. data/spec/factories.rb +0 -28
  200. data/spec/generators/application_owner_generator_spec.rb +0 -22
  201. data/spec/generators/install_generator_spec.rb +0 -31
  202. data/spec/generators/migration_generator_spec.rb +0 -20
  203. data/spec/generators/templates/routes.rb +0 -3
  204. data/spec/generators/views_generator_spec.rb +0 -27
  205. data/spec/helpers/doorkeeper/dashboard_helper_spec.rb +0 -24
  206. data/spec/lib/config_spec.rb +0 -334
  207. data/spec/lib/doorkeeper_spec.rb +0 -150
  208. data/spec/lib/models/expirable_spec.rb +0 -50
  209. data/spec/lib/models/revocable_spec.rb +0 -59
  210. data/spec/lib/models/scopes_spec.rb +0 -43
  211. data/spec/lib/oauth/authorization/uri_builder_spec.rb +0 -41
  212. data/spec/lib/oauth/authorization_code_request_spec.rb +0 -80
  213. data/spec/lib/oauth/base_request_spec.rb +0 -160
  214. data/spec/lib/oauth/base_response_spec.rb +0 -45
  215. data/spec/lib/oauth/client/credentials_spec.rb +0 -88
  216. data/spec/lib/oauth/client_credentials/creator_spec.rb +0 -44
  217. data/spec/lib/oauth/client_credentials/issuer_spec.rb +0 -86
  218. data/spec/lib/oauth/client_credentials/validation_spec.rb +0 -54
  219. data/spec/lib/oauth/client_credentials_integration_spec.rb +0 -27
  220. data/spec/lib/oauth/client_credentials_request_spec.rb +0 -104
  221. data/spec/lib/oauth/client_spec.rb +0 -39
  222. data/spec/lib/oauth/code_request_spec.rb +0 -45
  223. data/spec/lib/oauth/code_response_spec.rb +0 -34
  224. data/spec/lib/oauth/error_response_spec.rb +0 -61
  225. data/spec/lib/oauth/error_spec.rb +0 -23
  226. data/spec/lib/oauth/forbidden_token_response_spec.rb +0 -23
  227. data/spec/lib/oauth/helpers/scope_checker_spec.rb +0 -64
  228. data/spec/lib/oauth/helpers/unique_token_spec.rb +0 -20
  229. data/spec/lib/oauth/helpers/uri_checker_spec.rb +0 -104
  230. data/spec/lib/oauth/invalid_token_response_spec.rb +0 -56
  231. data/spec/lib/oauth/password_access_token_request_spec.rb +0 -90
  232. data/spec/lib/oauth/pre_authorization_spec.rb +0 -155
  233. data/spec/lib/oauth/refresh_token_request_spec.rb +0 -154
  234. data/spec/lib/oauth/scopes_spec.rb +0 -122
  235. data/spec/lib/oauth/token_request_spec.rb +0 -98
  236. data/spec/lib/oauth/token_response_spec.rb +0 -85
  237. data/spec/lib/oauth/token_spec.rb +0 -116
  238. data/spec/lib/request/strategy_spec.rb +0 -53
  239. data/spec/lib/server_spec.rb +0 -49
  240. data/spec/models/doorkeeper/access_grant_spec.rb +0 -36
  241. data/spec/models/doorkeeper/access_token_spec.rb +0 -394
  242. data/spec/models/doorkeeper/application_spec.rb +0 -179
  243. data/spec/requests/applications/applications_request_spec.rb +0 -94
  244. data/spec/requests/applications/authorized_applications_spec.rb +0 -30
  245. data/spec/requests/endpoints/authorization_spec.rb +0 -71
  246. data/spec/requests/endpoints/token_spec.rb +0 -64
  247. data/spec/requests/flows/authorization_code_errors_spec.rb +0 -76
  248. data/spec/requests/flows/authorization_code_spec.rb +0 -148
  249. data/spec/requests/flows/client_credentials_spec.rb +0 -58
  250. data/spec/requests/flows/implicit_grant_errors_spec.rb +0 -32
  251. data/spec/requests/flows/implicit_grant_spec.rb +0 -61
  252. data/spec/requests/flows/password_spec.rb +0 -115
  253. data/spec/requests/flows/refresh_token_spec.rb +0 -174
  254. data/spec/requests/flows/revoke_token_spec.rb +0 -157
  255. data/spec/requests/flows/skip_authorization_spec.rb +0 -59
  256. data/spec/requests/protected_resources/metal_spec.rb +0 -14
  257. data/spec/requests/protected_resources/private_api_spec.rb +0 -81
  258. data/spec/routing/custom_controller_routes_spec.rb +0 -71
  259. data/spec/routing/default_routes_spec.rb +0 -35
  260. data/spec/routing/scoped_routes_spec.rb +0 -31
  261. data/spec/spec_helper.rb +0 -4
  262. data/spec/spec_helper_integration.rb +0 -63
  263. data/spec/support/dependencies/factory_girl.rb +0 -2
  264. data/spec/support/helpers/access_token_request_helper.rb +0 -11
  265. data/spec/support/helpers/authorization_request_helper.rb +0 -41
  266. data/spec/support/helpers/config_helper.rb +0 -9
  267. data/spec/support/helpers/model_helper.rb +0 -67
  268. data/spec/support/helpers/request_spec_helper.rb +0 -84
  269. data/spec/support/helpers/url_helper.rb +0 -55
  270. data/spec/support/http_method_shim.rb +0 -38
  271. data/spec/support/orm/active_record.rb +0 -3
  272. data/spec/support/shared/controllers_shared_context.rb +0 -69
  273. data/spec/support/shared/models_shared_examples.rb +0 -52
  274. 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