doorkeeper 4.4.0 → 5.6.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (284) hide show
  1. checksums.yaml +5 -5
  2. data/{NEWS.md → CHANGELOG.md} +471 -16
  3. data/README.md +108 -403
  4. data/app/assets/stylesheets/doorkeeper/admin/application.css +2 -2
  5. data/app/controllers/doorkeeper/application_controller.rb +8 -5
  6. data/app/controllers/doorkeeper/application_metal_controller.rb +7 -11
  7. data/app/controllers/doorkeeper/applications_controller.rb +62 -27
  8. data/app/controllers/doorkeeper/authorizations_controller.rb +112 -18
  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 +104 -35
  12. data/app/helpers/doorkeeper/dashboard_helper.rb +9 -7
  13. data/app/views/doorkeeper/applications/_delete_form.html.erb +3 -1
  14. data/app/views/doorkeeper/applications/_form.html.erb +27 -26
  15. data/app/views/doorkeeper/applications/edit.html.erb +1 -1
  16. data/app/views/doorkeeper/applications/index.html.erb +17 -7
  17. data/app/views/doorkeeper/applications/new.html.erb +1 -1
  18. data/app/views/doorkeeper/applications/show.html.erb +38 -17
  19. data/app/views/doorkeeper/authorizations/error.html.erb +4 -2
  20. data/app/views/doorkeeper/authorizations/form_post.html.erb +15 -0
  21. data/app/views/doorkeeper/authorizations/new.html.erb +16 -10
  22. data/app/views/layouts/doorkeeper/admin.html.erb +16 -14
  23. data/config/locales/en.yml +28 -5
  24. data/lib/doorkeeper/config/abstract_builder.rb +28 -0
  25. data/lib/doorkeeper/config/option.rb +82 -0
  26. data/lib/doorkeeper/config/validations.rb +53 -0
  27. data/lib/doorkeeper/config.rb +477 -142
  28. data/lib/doorkeeper/engine.rb +17 -4
  29. data/lib/doorkeeper/errors.rb +25 -16
  30. data/lib/doorkeeper/grant_flow/fallback_flow.rb +15 -0
  31. data/lib/doorkeeper/grant_flow/flow.rb +44 -0
  32. data/lib/doorkeeper/grant_flow/registry.rb +50 -0
  33. data/lib/doorkeeper/grant_flow.rb +45 -0
  34. data/lib/doorkeeper/grape/authorization_decorator.rb +6 -4
  35. data/lib/doorkeeper/grape/helpers.rb +13 -7
  36. data/lib/doorkeeper/helpers/controller.rb +43 -10
  37. data/lib/doorkeeper/models/access_grant_mixin.rb +97 -3
  38. data/lib/doorkeeper/models/access_token_mixin.rb +273 -67
  39. data/lib/doorkeeper/models/application_mixin.rb +50 -5
  40. data/lib/doorkeeper/models/concerns/accessible.rb +2 -0
  41. data/lib/doorkeeper/models/concerns/expirable.rb +7 -3
  42. data/lib/doorkeeper/models/concerns/expiration_time_sql_math.rb +88 -0
  43. data/lib/doorkeeper/models/concerns/orderable.rb +2 -0
  44. data/lib/doorkeeper/models/concerns/ownership.rb +4 -7
  45. data/lib/doorkeeper/models/concerns/polymorphic_resource_owner.rb +30 -0
  46. data/lib/doorkeeper/models/concerns/resource_ownerable.rb +47 -0
  47. data/lib/doorkeeper/models/concerns/reusable.rb +19 -0
  48. data/lib/doorkeeper/models/concerns/revocable.rb +3 -27
  49. data/lib/doorkeeper/models/concerns/scopes.rb +12 -2
  50. data/lib/doorkeeper/models/concerns/secret_storable.rb +106 -0
  51. data/lib/doorkeeper/oauth/authorization/code.rb +54 -12
  52. data/lib/doorkeeper/oauth/authorization/context.rb +17 -0
  53. data/lib/doorkeeper/oauth/authorization/token.rb +64 -24
  54. data/lib/doorkeeper/oauth/authorization/uri_builder.rb +7 -5
  55. data/lib/doorkeeper/oauth/authorization_code_request.rb +69 -11
  56. data/lib/doorkeeper/oauth/base_request.rb +36 -24
  57. data/lib/doorkeeper/oauth/base_response.rb +2 -0
  58. data/lib/doorkeeper/oauth/client/credentials.rb +5 -5
  59. data/lib/doorkeeper/oauth/client.rb +10 -11
  60. data/lib/doorkeeper/oauth/client_credentials/creator.rb +44 -4
  61. data/lib/doorkeeper/oauth/client_credentials/issuer.rb +16 -9
  62. data/lib/doorkeeper/oauth/client_credentials/validator.rb +55 -0
  63. data/lib/doorkeeper/oauth/client_credentials_request.rb +10 -11
  64. data/lib/doorkeeper/oauth/code_request.rb +8 -12
  65. data/lib/doorkeeper/oauth/code_response.rb +27 -15
  66. data/lib/doorkeeper/oauth/error.rb +3 -1
  67. data/lib/doorkeeper/oauth/error_response.rb +34 -14
  68. data/lib/doorkeeper/oauth/forbidden_token_response.rb +11 -3
  69. data/lib/doorkeeper/oauth/helpers/scope_checker.rb +23 -18
  70. data/lib/doorkeeper/oauth/helpers/unique_token.rb +20 -3
  71. data/lib/doorkeeper/oauth/helpers/uri_checker.rb +42 -6
  72. data/lib/doorkeeper/oauth/hooks/context.rb +21 -0
  73. data/lib/doorkeeper/oauth/invalid_request_response.rb +43 -0
  74. data/lib/doorkeeper/oauth/invalid_token_response.rb +29 -4
  75. data/lib/doorkeeper/oauth/nonstandard.rb +39 -0
  76. data/lib/doorkeeper/oauth/password_access_token_request.rb +43 -10
  77. data/lib/doorkeeper/oauth/pre_authorization.rb +136 -26
  78. data/lib/doorkeeper/oauth/refresh_token_request.rb +67 -31
  79. data/lib/doorkeeper/oauth/scopes.rb +8 -4
  80. data/lib/doorkeeper/oauth/token.rb +12 -8
  81. data/lib/doorkeeper/oauth/token_introspection.rb +99 -25
  82. data/lib/doorkeeper/oauth/token_request.rb +8 -20
  83. data/lib/doorkeeper/oauth/token_response.rb +13 -10
  84. data/lib/doorkeeper/oauth.rb +13 -0
  85. data/lib/doorkeeper/orm/active_record/access_grant.rb +5 -30
  86. data/lib/doorkeeper/orm/active_record/access_token.rb +5 -43
  87. data/lib/doorkeeper/orm/active_record/application.rb +6 -57
  88. data/lib/doorkeeper/orm/active_record/mixins/access_grant.rb +63 -0
  89. data/lib/doorkeeper/orm/active_record/mixins/access_token.rb +77 -0
  90. data/lib/doorkeeper/orm/active_record/mixins/application.rb +210 -0
  91. data/lib/doorkeeper/orm/active_record/redirect_uri_validator.rb +66 -0
  92. data/lib/doorkeeper/orm/active_record/stale_records_cleaner.rb +36 -0
  93. data/lib/doorkeeper/orm/active_record.rb +31 -20
  94. data/lib/doorkeeper/rails/helpers.rb +10 -8
  95. data/lib/doorkeeper/rails/routes/abstract_router.rb +35 -0
  96. data/lib/doorkeeper/rails/routes/mapper.rb +4 -2
  97. data/lib/doorkeeper/rails/routes/mapping.rb +9 -7
  98. data/lib/doorkeeper/rails/routes/registry.rb +45 -0
  99. data/lib/doorkeeper/rails/routes.rb +45 -25
  100. data/lib/doorkeeper/rake/db.rake +40 -0
  101. data/lib/doorkeeper/rake/setup.rake +6 -0
  102. data/lib/doorkeeper/rake.rb +14 -0
  103. data/lib/doorkeeper/request/authorization_code.rb +6 -4
  104. data/lib/doorkeeper/request/client_credentials.rb +3 -3
  105. data/lib/doorkeeper/request/code.rb +1 -1
  106. data/lib/doorkeeper/request/password.rb +4 -3
  107. data/lib/doorkeeper/request/refresh_token.rb +6 -5
  108. data/lib/doorkeeper/request/strategy.rb +4 -2
  109. data/lib/doorkeeper/request/token.rb +1 -1
  110. data/lib/doorkeeper/request.rb +61 -34
  111. data/lib/doorkeeper/secret_storing/base.rb +64 -0
  112. data/lib/doorkeeper/secret_storing/bcrypt.rb +60 -0
  113. data/lib/doorkeeper/secret_storing/plain.rb +33 -0
  114. data/lib/doorkeeper/secret_storing/sha256_hash.rb +26 -0
  115. data/lib/doorkeeper/server.rb +9 -11
  116. data/lib/doorkeeper/stale_records_cleaner.rb +24 -0
  117. data/lib/doorkeeper/validations.rb +2 -0
  118. data/lib/doorkeeper/version.rb +7 -29
  119. data/lib/doorkeeper.rb +180 -65
  120. data/lib/generators/doorkeeper/application_owner_generator.rb +24 -18
  121. data/lib/generators/doorkeeper/confidential_applications_generator.rb +33 -0
  122. data/lib/generators/doorkeeper/enable_polymorphic_resource_owner_generator.rb +39 -0
  123. data/lib/generators/doorkeeper/install_generator.rb +19 -9
  124. data/lib/generators/doorkeeper/migration_generator.rb +23 -18
  125. data/lib/generators/doorkeeper/pkce_generator.rb +33 -0
  126. data/lib/generators/doorkeeper/previous_refresh_token_generator.rb +28 -22
  127. data/{spec/dummy/db/migrate/20180210183654_add_confidential_to_application.rb → lib/generators/doorkeeper/templates/add_confidential_to_applications.rb.erb} +2 -2
  128. data/lib/generators/doorkeeper/templates/add_owner_to_application_migration.rb.erb +3 -1
  129. data/lib/generators/doorkeeper/templates/add_previous_refresh_token_to_access_tokens.rb.erb +2 -0
  130. data/lib/generators/doorkeeper/templates/enable_pkce_migration.rb.erb +8 -0
  131. data/lib/generators/doorkeeper/templates/enable_polymorphic_resource_owner_migration.rb.erb +17 -0
  132. data/lib/generators/doorkeeper/templates/initializer.rb +402 -32
  133. data/lib/generators/doorkeeper/templates/migration.rb.erb +47 -18
  134. data/lib/generators/doorkeeper/views_generator.rb +8 -4
  135. data/vendor/assets/stylesheets/doorkeeper/bootstrap.min.css +4 -5
  136. metadata +97 -309
  137. data/.coveralls.yml +0 -1
  138. data/.github/ISSUE_TEMPLATE.md +0 -25
  139. data/.github/PULL_REQUEST_TEMPLATE.md +0 -17
  140. data/.gitignore +0 -19
  141. data/.hound.yml +0 -2
  142. data/.rspec +0 -1
  143. data/.rubocop.yml +0 -17
  144. data/.travis.yml +0 -38
  145. data/Appraisals +0 -18
  146. data/CODE_OF_CONDUCT.md +0 -46
  147. data/CONTRIBUTING.md +0 -47
  148. data/Gemfile +0 -10
  149. data/RELEASING.md +0 -10
  150. data/Rakefile +0 -20
  151. data/SECURITY.md +0 -15
  152. data/app/validators/redirect_uri_validator.rb +0 -44
  153. data/doorkeeper.gemspec +0 -32
  154. data/gemfiles/rails_4_2.gemfile +0 -13
  155. data/gemfiles/rails_5_0.gemfile +0 -12
  156. data/gemfiles/rails_5_1.gemfile +0 -12
  157. data/gemfiles/rails_5_2.gemfile +0 -12
  158. data/gemfiles/rails_master.gemfile +0 -14
  159. data/lib/doorkeeper/oauth/client_credentials/validation.rb +0 -45
  160. data/lib/generators/doorkeeper/add_client_confidentiality_generator.rb +0 -31
  161. data/lib/generators/doorkeeper/templates/add_confidential_to_application_migration.rb.erb +0 -11
  162. data/spec/controllers/application_metal_controller.rb +0 -10
  163. data/spec/controllers/applications_controller_spec.rb +0 -69
  164. data/spec/controllers/authorizations_controller_spec.rb +0 -218
  165. data/spec/controllers/protected_resources_controller_spec.rb +0 -309
  166. data/spec/controllers/token_info_controller_spec.rb +0 -56
  167. data/spec/controllers/tokens_controller_spec.rb +0 -274
  168. data/spec/dummy/Rakefile +0 -7
  169. data/spec/dummy/app/controllers/application_controller.rb +0 -3
  170. data/spec/dummy/app/controllers/custom_authorizations_controller.rb +0 -7
  171. data/spec/dummy/app/controllers/full_protected_resources_controller.rb +0 -12
  172. data/spec/dummy/app/controllers/home_controller.rb +0 -17
  173. data/spec/dummy/app/controllers/metal_controller.rb +0 -11
  174. data/spec/dummy/app/controllers/semi_protected_resources_controller.rb +0 -11
  175. data/spec/dummy/app/helpers/application_helper.rb +0 -5
  176. data/spec/dummy/app/models/user.rb +0 -5
  177. data/spec/dummy/app/views/home/index.html.erb +0 -0
  178. data/spec/dummy/app/views/layouts/application.html.erb +0 -14
  179. data/spec/dummy/config/application.rb +0 -23
  180. data/spec/dummy/config/boot.rb +0 -9
  181. data/spec/dummy/config/database.yml +0 -15
  182. data/spec/dummy/config/environment.rb +0 -5
  183. data/spec/dummy/config/environments/development.rb +0 -29
  184. data/spec/dummy/config/environments/production.rb +0 -62
  185. data/spec/dummy/config/environments/test.rb +0 -44
  186. data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
  187. data/spec/dummy/config/initializers/doorkeeper.rb +0 -107
  188. data/spec/dummy/config/initializers/new_framework_defaults.rb +0 -6
  189. data/spec/dummy/config/initializers/secret_token.rb +0 -8
  190. data/spec/dummy/config/initializers/session_store.rb +0 -8
  191. data/spec/dummy/config/initializers/wrap_parameters.rb +0 -14
  192. data/spec/dummy/config/locales/doorkeeper.en.yml +0 -5
  193. data/spec/dummy/config/routes.rb +0 -52
  194. data/spec/dummy/config.ru +0 -4
  195. data/spec/dummy/db/migrate/20111122132257_create_users.rb +0 -11
  196. data/spec/dummy/db/migrate/20120312140401_add_password_to_users.rb +0 -7
  197. data/spec/dummy/db/migrate/20151223192035_create_doorkeeper_tables.rb +0 -62
  198. data/spec/dummy/db/migrate/20151223200000_add_owner_to_application.rb +0 -9
  199. data/spec/dummy/db/migrate/20160320211015_add_previous_refresh_token_to_access_tokens.rb +0 -13
  200. data/spec/dummy/db/schema.rb +0 -68
  201. data/spec/dummy/public/404.html +0 -26
  202. data/spec/dummy/public/422.html +0 -26
  203. data/spec/dummy/public/500.html +0 -26
  204. data/spec/dummy/public/favicon.ico +0 -0
  205. data/spec/dummy/script/rails +0 -6
  206. data/spec/factories.rb +0 -28
  207. data/spec/generators/application_owner_generator_spec.rb +0 -41
  208. data/spec/generators/install_generator_spec.rb +0 -31
  209. data/spec/generators/migration_generator_spec.rb +0 -41
  210. data/spec/generators/previous_refresh_token_generator_spec.rb +0 -57
  211. data/spec/generators/templates/routes.rb +0 -3
  212. data/spec/generators/views_generator_spec.rb +0 -27
  213. data/spec/grape/grape_integration_spec.rb +0 -135
  214. data/spec/helpers/doorkeeper/dashboard_helper_spec.rb +0 -24
  215. data/spec/lib/config_spec.rb +0 -437
  216. data/spec/lib/doorkeeper_spec.rb +0 -150
  217. data/spec/lib/models/expirable_spec.rb +0 -50
  218. data/spec/lib/models/revocable_spec.rb +0 -59
  219. data/spec/lib/models/scopes_spec.rb +0 -43
  220. data/spec/lib/oauth/authorization/uri_builder_spec.rb +0 -41
  221. data/spec/lib/oauth/authorization_code_request_spec.rb +0 -108
  222. data/spec/lib/oauth/base_request_spec.rb +0 -155
  223. data/spec/lib/oauth/base_response_spec.rb +0 -45
  224. data/spec/lib/oauth/client/credentials_spec.rb +0 -90
  225. data/spec/lib/oauth/client_credentials/creator_spec.rb +0 -44
  226. data/spec/lib/oauth/client_credentials/issuer_spec.rb +0 -86
  227. data/spec/lib/oauth/client_credentials/validation_spec.rb +0 -54
  228. data/spec/lib/oauth/client_credentials_integration_spec.rb +0 -27
  229. data/spec/lib/oauth/client_credentials_request_spec.rb +0 -105
  230. data/spec/lib/oauth/client_spec.rb +0 -39
  231. data/spec/lib/oauth/code_request_spec.rb +0 -43
  232. data/spec/lib/oauth/code_response_spec.rb +0 -34
  233. data/spec/lib/oauth/error_response_spec.rb +0 -61
  234. data/spec/lib/oauth/error_spec.rb +0 -23
  235. data/spec/lib/oauth/forbidden_token_response_spec.rb +0 -23
  236. data/spec/lib/oauth/helpers/scope_checker_spec.rb +0 -64
  237. data/spec/lib/oauth/helpers/unique_token_spec.rb +0 -20
  238. data/spec/lib/oauth/helpers/uri_checker_spec.rb +0 -213
  239. data/spec/lib/oauth/invalid_token_response_spec.rb +0 -56
  240. data/spec/lib/oauth/password_access_token_request_spec.rb +0 -96
  241. data/spec/lib/oauth/pre_authorization_spec.rb +0 -155
  242. data/spec/lib/oauth/refresh_token_request_spec.rb +0 -166
  243. data/spec/lib/oauth/scopes_spec.rb +0 -149
  244. data/spec/lib/oauth/token_request_spec.rb +0 -96
  245. data/spec/lib/oauth/token_response_spec.rb +0 -85
  246. data/spec/lib/oauth/token_spec.rb +0 -116
  247. data/spec/lib/request/strategy_spec.rb +0 -53
  248. data/spec/lib/server_spec.rb +0 -59
  249. data/spec/models/doorkeeper/access_grant_spec.rb +0 -36
  250. data/spec/models/doorkeeper/access_token_spec.rb +0 -418
  251. data/spec/models/doorkeeper/application_spec.rb +0 -286
  252. data/spec/requests/applications/applications_request_spec.rb +0 -94
  253. data/spec/requests/applications/authorized_applications_spec.rb +0 -30
  254. data/spec/requests/endpoints/authorization_spec.rb +0 -71
  255. data/spec/requests/endpoints/token_spec.rb +0 -71
  256. data/spec/requests/flows/authorization_code_errors_spec.rb +0 -76
  257. data/spec/requests/flows/authorization_code_spec.rb +0 -149
  258. data/spec/requests/flows/client_credentials_spec.rb +0 -86
  259. data/spec/requests/flows/implicit_grant_errors_spec.rb +0 -32
  260. data/spec/requests/flows/implicit_grant_spec.rb +0 -61
  261. data/spec/requests/flows/password_spec.rb +0 -197
  262. data/spec/requests/flows/refresh_token_spec.rb +0 -174
  263. data/spec/requests/flows/revoke_token_spec.rb +0 -157
  264. data/spec/requests/flows/skip_authorization_spec.rb +0 -59
  265. data/spec/requests/protected_resources/metal_spec.rb +0 -14
  266. data/spec/requests/protected_resources/private_api_spec.rb +0 -81
  267. data/spec/routing/custom_controller_routes_spec.rb +0 -75
  268. data/spec/routing/default_routes_spec.rb +0 -39
  269. data/spec/routing/scoped_routes_spec.rb +0 -31
  270. data/spec/spec_helper.rb +0 -4
  271. data/spec/spec_helper_integration.rb +0 -74
  272. data/spec/support/dependencies/factory_girl.rb +0 -2
  273. data/spec/support/helpers/access_token_request_helper.rb +0 -11
  274. data/spec/support/helpers/authorization_request_helper.rb +0 -41
  275. data/spec/support/helpers/config_helper.rb +0 -9
  276. data/spec/support/helpers/model_helper.rb +0 -72
  277. data/spec/support/helpers/request_spec_helper.rb +0 -88
  278. data/spec/support/helpers/url_helper.rb +0 -56
  279. data/spec/support/http_method_shim.rb +0 -38
  280. data/spec/support/orm/active_record.rb +0 -3
  281. data/spec/support/shared/controllers_shared_context.rb +0 -65
  282. data/spec/support/shared/models_shared_examples.rb +0 -52
  283. data/spec/validators/redirect_uri_validator_spec.rb +0 -123
  284. data/spec/version/version_spec.rb +0 -15
@@ -1,149 +0,0 @@
1
- require 'spec_helper_integration'
2
-
3
- feature 'Authorization Code Flow' do
4
- background do
5
- config_is_set(:authenticate_resource_owner) { User.first || redirect_to('/sign_in') }
6
- client_exists
7
- create_resource_owner
8
- sign_in
9
- end
10
-
11
- scenario 'resource owner authorizes the client' do
12
- visit authorization_endpoint_url(client: @client)
13
- click_on 'Authorize'
14
-
15
- access_grant_should_exist_for(@client, @resource_owner)
16
-
17
- i_should_be_on_client_callback(@client)
18
-
19
- url_should_have_param('code', Doorkeeper::AccessGrant.first.token)
20
- url_should_not_have_param('state')
21
- url_should_not_have_param('error')
22
- end
23
-
24
- scenario 'resource owner authorizes using test url' do
25
- @client.redirect_uri = Doorkeeper.configuration.native_redirect_uri
26
- @client.save!
27
- visit authorization_endpoint_url(client: @client)
28
- click_on 'Authorize'
29
-
30
- access_grant_should_exist_for(@client, @resource_owner)
31
-
32
- url_should_have_param('code', Doorkeeper::AccessGrant.first.token)
33
- i_should_see 'Authorization code:'
34
- i_should_see Doorkeeper::AccessGrant.first.token
35
- end
36
-
37
- scenario 'resource owner authorizes the client with state parameter set' do
38
- visit authorization_endpoint_url(client: @client, state: 'return-me')
39
- click_on 'Authorize'
40
- url_should_have_param('code', Doorkeeper::AccessGrant.first.token)
41
- url_should_have_param('state', 'return-me')
42
- end
43
-
44
- scenario 'resource owner requests an access token with authorization code' do
45
- visit authorization_endpoint_url(client: @client)
46
- click_on 'Authorize'
47
-
48
- authorization_code = Doorkeeper::AccessGrant.first.token
49
- create_access_token authorization_code, @client
50
-
51
- access_token_should_exist_for(@client, @resource_owner)
52
-
53
- should_not_have_json 'error'
54
-
55
- should_have_json 'access_token', Doorkeeper::AccessToken.first.token
56
- should_have_json 'token_type', 'bearer'
57
- should_have_json_within 'expires_in', Doorkeeper::AccessToken.first.expires_in, 1
58
- end
59
-
60
- context 'with scopes' do
61
- background do
62
- default_scopes_exist :public
63
- optional_scopes_exist :write
64
- end
65
-
66
- scenario 'resource owner authorizes the client with default scopes' do
67
- visit authorization_endpoint_url(client: @client)
68
- click_on 'Authorize'
69
- access_grant_should_exist_for(@client, @resource_owner)
70
- access_grant_should_have_scopes :public
71
- end
72
-
73
- scenario 'resource owner authorizes the client with required scopes' do
74
- visit authorization_endpoint_url(client: @client, scope: 'public write')
75
- click_on 'Authorize'
76
- access_grant_should_have_scopes :public, :write
77
- end
78
-
79
- scenario 'resource owner authorizes the client with required scopes (without defaults)' do
80
- visit authorization_endpoint_url(client: @client, scope: 'write')
81
- click_on 'Authorize'
82
- access_grant_should_have_scopes :write
83
- end
84
-
85
- scenario 'new access token matches required scopes' do
86
- visit authorization_endpoint_url(client: @client, scope: 'public write')
87
- click_on 'Authorize'
88
-
89
- authorization_code = Doorkeeper::AccessGrant.first.token
90
- create_access_token authorization_code, @client
91
-
92
- access_token_should_exist_for(@client, @resource_owner)
93
- access_token_should_have_scopes :public, :write
94
- end
95
-
96
- scenario 'returns new token if scopes have changed' do
97
- client_is_authorized(@client, @resource_owner, scopes: 'public write')
98
- visit authorization_endpoint_url(client: @client, scope: 'public')
99
- click_on 'Authorize'
100
-
101
- authorization_code = Doorkeeper::AccessGrant.first.token
102
- create_access_token authorization_code, @client
103
-
104
- expect(Doorkeeper::AccessToken.count).to be(2)
105
-
106
- should_have_json 'access_token', Doorkeeper::AccessToken.last.token
107
- end
108
-
109
- scenario 'resource owner authorizes the client with extra scopes' do
110
- client_is_authorized(@client, @resource_owner, scopes: 'public')
111
- visit authorization_endpoint_url(client: @client, scope: 'public write')
112
- click_on 'Authorize'
113
-
114
- authorization_code = Doorkeeper::AccessGrant.first.token
115
- create_access_token authorization_code, @client
116
-
117
- expect(Doorkeeper::AccessToken.count).to be(2)
118
-
119
- should_have_json 'access_token', Doorkeeper::AccessToken.last.token
120
- access_token_should_have_scopes :public, :write
121
- end
122
- end
123
- end
124
-
125
- describe 'Authorization Code Flow' do
126
- before do
127
- Doorkeeper.configure do
128
- orm DOORKEEPER_ORM
129
- use_refresh_token
130
- end
131
- client_exists
132
- end
133
-
134
- context 'issuing a refresh token' do
135
- before do
136
- authorization_code_exists application: @client
137
- end
138
-
139
- it 'second of simultaneous client requests get an error for revoked acccess token' do
140
- authorization_code = Doorkeeper::AccessGrant.first.token
141
- allow_any_instance_of(Doorkeeper::AccessGrant).to receive(:revoked?).and_return(false, true)
142
-
143
- post token_endpoint_url(code: authorization_code, client: @client)
144
-
145
- should_not_have_json 'access_token'
146
- should_have_json 'error', 'invalid_grant'
147
- end
148
- end
149
- end
@@ -1,86 +0,0 @@
1
- require 'spec_helper_integration'
2
-
3
- describe 'Client Credentials Request' do
4
- let(:client) { FactoryBot.create :application }
5
-
6
- context 'a valid request' do
7
- it 'authorizes the client and returns the token response' do
8
- headers = authorization client.uid, client.secret
9
- params = { grant_type: 'client_credentials' }
10
-
11
- post '/oauth/token', params, headers
12
-
13
- should_have_json 'access_token', Doorkeeper::AccessToken.first.token
14
- should_have_json_within 'expires_in', Doorkeeper.configuration.access_token_expires_in, 1
15
- should_not_have_json 'scope'
16
- should_not_have_json 'refresh_token'
17
-
18
- should_not_have_json 'error'
19
- should_not_have_json 'error_description'
20
- end
21
-
22
- context 'with scopes' do
23
- before do
24
- optional_scopes_exist :write
25
- default_scopes_exist :public
26
- end
27
-
28
- it 'adds the scope to the token an returns in the response' do
29
- headers = authorization client.uid, client.secret
30
- params = { grant_type: 'client_credentials', scope: 'write' }
31
-
32
- post '/oauth/token', params, headers
33
-
34
- should_have_json 'access_token', Doorkeeper::AccessToken.first.token
35
- should_have_json 'scope', 'write'
36
- end
37
-
38
- context 'that are default' do
39
- it 'adds the scope to the token an returns in the response' do
40
- headers = authorization client.uid, client.secret
41
- params = { grant_type: 'client_credentials', scope: 'public' }
42
-
43
- post '/oauth/token', params, headers
44
-
45
- should_have_json 'access_token', Doorkeeper::AccessToken.first.token
46
- should_have_json 'scope', 'public'
47
- end
48
- end
49
-
50
- context 'that are invalid' do
51
- it 'does not authorize the client and returns the error' do
52
- headers = authorization client.uid, client.secret
53
- params = { grant_type: 'client_credentials', scope: 'random' }
54
-
55
- post '/oauth/token', params, headers
56
-
57
- should_have_json 'error', 'invalid_scope'
58
- should_have_json 'error_description', translated_error_message(:invalid_scope)
59
- should_not_have_json 'access_token'
60
-
61
- expect(response.status).to eq(401)
62
- end
63
- end
64
- end
65
- end
66
-
67
- context 'an invalid request' do
68
- it 'does not authorize the client and returns the error' do
69
- headers = {}
70
- params = { grant_type: 'client_credentials' }
71
-
72
- post '/oauth/token', params, headers
73
-
74
- should_have_json 'error', 'invalid_client'
75
- should_have_json 'error_description', translated_error_message(:invalid_client)
76
- should_not_have_json 'access_token'
77
-
78
- expect(response.status).to eq(401)
79
- end
80
- end
81
-
82
- def authorization(username, password)
83
- credentials = ActionController::HttpAuthentication::Basic.encode_credentials username, password
84
- { 'HTTP_AUTHORIZATION' => credentials }
85
- end
86
- end
@@ -1,32 +0,0 @@
1
- require 'spec_helper_integration'
2
-
3
- feature 'Implicit Grant Flow Errors' do
4
- background do
5
- config_is_set(:authenticate_resource_owner) { User.first || redirect_to('/sign_in') }
6
- config_is_set(:grant_flows, ["implicit"])
7
- client_exists
8
- create_resource_owner
9
- sign_in
10
- end
11
-
12
- after do
13
- access_token_should_not_exist
14
- end
15
-
16
- [
17
- [:client_id, :invalid_client],
18
- [:redirect_uri, :invalid_redirect_uri]
19
- ].each do |error|
20
- scenario "displays #{error.last} error for invalid #{error.first}" do
21
- visit authorization_endpoint_url(client: @client, error.first => 'invalid', response_type: 'token')
22
- i_should_not_see 'Authorize'
23
- i_should_see_translated_error_message error.last
24
- end
25
-
26
- scenario "displays #{error.last} error when #{error.first} is missing" do
27
- visit authorization_endpoint_url(client: @client, error.first => '', response_type: 'token')
28
- i_should_not_see 'Authorize'
29
- i_should_see_translated_error_message error.last
30
- end
31
- end
32
- end
@@ -1,61 +0,0 @@
1
- require 'spec_helper_integration'
2
-
3
- feature 'Implicit Grant Flow (feature spec)' do
4
- background do
5
- config_is_set(:authenticate_resource_owner) { User.first || redirect_to('/sign_in') }
6
- config_is_set(:grant_flows, ["implicit"])
7
- client_exists
8
- create_resource_owner
9
- sign_in
10
- end
11
-
12
- scenario 'resource owner authorizes the client' do
13
- visit authorization_endpoint_url(client: @client, response_type: 'token')
14
- click_on 'Authorize'
15
-
16
- access_token_should_exist_for @client, @resource_owner
17
-
18
- i_should_be_on_client_callback @client
19
- end
20
- end
21
-
22
- describe 'Implicit Grant Flow (request spec)' do
23
- before do
24
- config_is_set(:authenticate_resource_owner) { User.first || redirect_to('/sign_in') }
25
- config_is_set(:grant_flows, ["implicit"])
26
- client_exists
27
- create_resource_owner
28
- end
29
-
30
- context 'token reuse' do
31
- it 'should return a new token each request' do
32
- allow(Doorkeeper.configuration).to receive(:reuse_access_token).and_return(false)
33
-
34
- token = client_is_authorized(@client, @resource_owner)
35
-
36
- post "/oauth/authorize",
37
- client_id: @client.uid,
38
- state: '',
39
- redirect_uri: @client.redirect_uri,
40
- response_type: 'token',
41
- commit: 'Authorize'
42
-
43
- expect(response.location).not_to include(token.token)
44
- end
45
-
46
- it 'should return the same token if it is still accessible' do
47
- allow(Doorkeeper.configuration).to receive(:reuse_access_token).and_return(true)
48
-
49
- token = client_is_authorized(@client, @resource_owner)
50
-
51
- post "/oauth/authorize",
52
- client_id: @client.uid,
53
- state: '',
54
- redirect_uri: @client.redirect_uri,
55
- response_type: 'token',
56
- commit: 'Authorize'
57
-
58
- expect(response.location).to include(token.token)
59
- end
60
- end
61
- end
@@ -1,197 +0,0 @@
1
- require 'spec_helper_integration'
2
-
3
- describe 'Resource Owner Password Credentials Flow not set up' do
4
- before do
5
- client_exists
6
- create_resource_owner
7
- end
8
-
9
- context 'with valid user credentials' do
10
- it 'doesn\'t issue new token' do
11
- expect do
12
- post password_token_endpoint_url(client: @client, resource_owner: @resource_owner)
13
- end.to_not(change { Doorkeeper::AccessToken.count })
14
- end
15
- end
16
- end
17
-
18
- describe 'Resource Owner Password Credentials Flow' do
19
- let(:client_attributes) { {} }
20
-
21
- before do
22
- config_is_set(:grant_flows, ["password"])
23
- config_is_set(:resource_owner_from_credentials) { User.authenticate! params[:username], params[:password] }
24
- client_exists(client_attributes)
25
- create_resource_owner
26
- end
27
-
28
- context 'with valid user credentials' do
29
- context "with non-confidential/public client" do
30
- let(:client_attributes) { { confidential: false } }
31
-
32
- context "when client_secret absent" do
33
- it "should issue new token" do
34
- expect do
35
- post password_token_endpoint_url(client_id: @client.uid, resource_owner: @resource_owner)
36
- end.to change { Doorkeeper::AccessToken.count }.by(1)
37
-
38
- token = Doorkeeper::AccessToken.first
39
-
40
- expect(token.application_id).to eq @client.id
41
- should_have_json 'access_token', token.token
42
- end
43
- end
44
-
45
- context "when client_secret present" do
46
- it "should issue new token" do
47
- expect do
48
- post password_token_endpoint_url(client: @client, resource_owner: @resource_owner)
49
- end.to change { Doorkeeper::AccessToken.count }.by(1)
50
-
51
- token = Doorkeeper::AccessToken.first
52
-
53
- expect(token.application_id).to eq @client.id
54
- should_have_json 'access_token', token.token
55
- end
56
-
57
- context "when client_secret incorrect" do
58
- it "should not issue new token" do
59
- expect do
60
- post password_token_endpoint_url(client_id: @client.uid, client_secret: 'foobar', resource_owner: @resource_owner)
61
- end.not_to(change { Doorkeeper::AccessToken.count })
62
-
63
- expect(response).not_to be_ok
64
- end
65
- end
66
- end
67
- end
68
-
69
- context "with confidential/private client" do
70
- it "should issue new token" do
71
- expect do
72
- post password_token_endpoint_url(client: @client, resource_owner: @resource_owner)
73
- end.to change { Doorkeeper::AccessToken.count }.by(1)
74
-
75
- token = Doorkeeper::AccessToken.first
76
-
77
- expect(token.application_id).to eq @client.id
78
- should_have_json 'access_token', token.token
79
- end
80
-
81
- context "when client_secret absent" do
82
- it "should not issue new token" do
83
- expect do
84
- post password_token_endpoint_url(client_id: @client.uid, resource_owner: @resource_owner)
85
- end.not_to(change { Doorkeeper::AccessToken.count })
86
-
87
- expect(response).not_to be_ok
88
- end
89
- end
90
- end
91
-
92
- it 'should issue new token without client credentials' do
93
- expect do
94
- post password_token_endpoint_url(resource_owner: @resource_owner)
95
- end.to(change { Doorkeeper::AccessToken.count }.by(1))
96
-
97
- token = Doorkeeper::AccessToken.first
98
-
99
- expect(token.application_id).to be_nil
100
- should_have_json 'access_token', token.token
101
- end
102
-
103
- it 'should issue a refresh token if enabled' do
104
- config_is_set(:refresh_token_enabled, true)
105
-
106
- post password_token_endpoint_url(client: @client, resource_owner: @resource_owner)
107
-
108
- token = Doorkeeper::AccessToken.first
109
-
110
- should_have_json 'refresh_token', token.refresh_token
111
- end
112
-
113
- it 'should return the same token if it is still accessible' do
114
- allow(Doorkeeper.configuration).to receive(:reuse_access_token).and_return(true)
115
-
116
- client_is_authorized(@client, @resource_owner)
117
-
118
- post password_token_endpoint_url(client: @client, resource_owner: @resource_owner)
119
-
120
- expect(Doorkeeper::AccessToken.count).to be(1)
121
- should_have_json 'access_token', Doorkeeper::AccessToken.first.token
122
- end
123
-
124
- context 'with valid, default scope' do
125
- before do
126
- default_scopes_exist :public
127
- end
128
-
129
- it 'should issue new token' do
130
- expect do
131
- post password_token_endpoint_url(client: @client, resource_owner: @resource_owner, scope: 'public')
132
- end.to change { Doorkeeper::AccessToken.count }.by(1)
133
-
134
- token = Doorkeeper::AccessToken.first
135
-
136
- expect(token.application_id).to eq @client.id
137
- should_have_json 'access_token', token.token
138
- should_have_json 'scope', 'public'
139
- end
140
- end
141
- end
142
-
143
- context 'with invalid scopes' do
144
- subject do
145
- post password_token_endpoint_url(client: @client,
146
- resource_owner: @resource_owner,
147
- scope: 'random')
148
- end
149
-
150
- it 'should not issue new token' do
151
- expect { subject }.to_not(change { Doorkeeper::AccessToken.count })
152
- end
153
-
154
- it 'should return invalid_scope error' do
155
- subject
156
- should_have_json 'error', 'invalid_scope'
157
- should_have_json 'error_description', translated_error_message(:invalid_scope)
158
- should_not_have_json 'access_token'
159
-
160
- expect(response.status).to eq(401)
161
- end
162
- end
163
-
164
- context 'with invalid user credentials' do
165
- it 'should not issue new token with bad password' do
166
- expect do
167
- post password_token_endpoint_url(client: @client,
168
- resource_owner_username: @resource_owner.name,
169
- resource_owner_password: 'wrongpassword')
170
- end.to_not(change { Doorkeeper::AccessToken.count })
171
- end
172
-
173
- it 'should not issue new token without credentials' do
174
- expect do
175
- post password_token_endpoint_url(client: @client)
176
- end.to_not(change { Doorkeeper::AccessToken.count })
177
- end
178
- end
179
-
180
- context 'with invalid confidential client credentials' do
181
- it 'should not issue new token with bad client credentials' do
182
- expect do
183
- post password_token_endpoint_url(client_id: @client.uid,
184
- client_secret: 'bad_secret',
185
- resource_owner: @resource_owner)
186
- end.to_not(change { Doorkeeper::AccessToken.count })
187
- end
188
- end
189
-
190
- context 'with invalid public client id' do
191
- it 'should not issue new token with bad client id' do
192
- expect do
193
- post password_token_endpoint_url(client_id: 'bad_id', resource_owner: @resource_owner)
194
- end.to_not(change { Doorkeeper::AccessToken.count })
195
- end
196
- end
197
- end
@@ -1,174 +0,0 @@
1
- require 'spec_helper_integration'
2
-
3
- describe 'Refresh Token Flow' do
4
- before do
5
- Doorkeeper.configure do
6
- orm DOORKEEPER_ORM
7
- use_refresh_token
8
- end
9
- client_exists
10
- end
11
-
12
- context 'issuing a refresh token' do
13
- before do
14
- authorization_code_exists application: @client
15
- end
16
-
17
- it 'client gets the refresh token and refreshses it' do
18
- post token_endpoint_url(code: @authorization.token, client: @client)
19
-
20
- token = Doorkeeper::AccessToken.first
21
-
22
- should_have_json 'access_token', token.token
23
- should_have_json 'refresh_token', token.refresh_token
24
-
25
- expect(@authorization.reload).to be_revoked
26
-
27
- post refresh_token_endpoint_url(client: @client, refresh_token: token.refresh_token)
28
-
29
- new_token = Doorkeeper::AccessToken.last
30
- should_have_json 'access_token', new_token.token
31
- should_have_json 'refresh_token', new_token.refresh_token
32
-
33
- expect(token.token).not_to eq(new_token.token)
34
- expect(token.refresh_token).not_to eq(new_token.refresh_token)
35
- end
36
- end
37
-
38
- context 'refreshing the token' do
39
- before do
40
- @token = FactoryBot.create(
41
- :access_token,
42
- application: @client,
43
- resource_owner_id: 1,
44
- use_refresh_token: true
45
- )
46
- end
47
-
48
- context "refresh_token revoked on use" do
49
- it 'client request a token with refresh token' do
50
- post refresh_token_endpoint_url(
51
- client: @client, refresh_token: @token.refresh_token
52
- )
53
- should_have_json(
54
- 'refresh_token', Doorkeeper::AccessToken.last.refresh_token
55
- )
56
- expect(@token.reload).not_to be_revoked
57
- end
58
-
59
- it 'client request a token with expired access token' do
60
- @token.update_attribute :expires_in, -100
61
- post refresh_token_endpoint_url(
62
- client: @client, refresh_token: @token.refresh_token
63
- )
64
- should_have_json(
65
- 'refresh_token', Doorkeeper::AccessToken.last.refresh_token
66
- )
67
- expect(@token.reload).not_to be_revoked
68
- end
69
- end
70
-
71
- context "refresh_token revoked on refresh_token request" do
72
- before do
73
- allow(Doorkeeper::AccessToken).to receive(:refresh_token_revoked_on_use?).and_return(false)
74
- end
75
-
76
- it 'client request a token with refresh token' do
77
- post refresh_token_endpoint_url(
78
- client: @client, refresh_token: @token.refresh_token
79
- )
80
- should_have_json(
81
- 'refresh_token', Doorkeeper::AccessToken.last.refresh_token
82
- )
83
- expect(@token.reload).to be_revoked
84
- end
85
-
86
- it 'client request a token with expired access token' do
87
- @token.update_attribute :expires_in, -100
88
- post refresh_token_endpoint_url(
89
- client: @client, refresh_token: @token.refresh_token
90
- )
91
- should_have_json(
92
- 'refresh_token', Doorkeeper::AccessToken.last.refresh_token
93
- )
94
- expect(@token.reload).to be_revoked
95
- end
96
- end
97
-
98
- it 'client gets an error for invalid refresh token' do
99
- post refresh_token_endpoint_url(client: @client, refresh_token: 'invalid')
100
- should_not_have_json 'refresh_token'
101
- should_have_json 'error', 'invalid_grant'
102
- end
103
-
104
- it 'client gets an error for revoked access token' do
105
- @token.revoke
106
- post refresh_token_endpoint_url(client: @client, refresh_token: @token.refresh_token)
107
- should_not_have_json 'refresh_token'
108
- should_have_json 'error', 'invalid_grant'
109
- end
110
-
111
- it 'second of simultaneous client requests get an error for revoked access token' do
112
- allow_any_instance_of(Doorkeeper::AccessToken).to receive(:revoked?).and_return(false, true)
113
- post refresh_token_endpoint_url(client: @client, refresh_token: @token.refresh_token)
114
-
115
- should_not_have_json 'refresh_token'
116
- should_have_json 'error', 'invalid_request'
117
- end
118
- end
119
-
120
- context 'refreshing the token with multiple sessions (devices)' do
121
- before do
122
- # enable password auth to simulate other devices
123
- config_is_set(:grant_flows, ["password"])
124
- config_is_set(:resource_owner_from_credentials) do
125
- User.authenticate! params[:username], params[:password]
126
- end
127
- create_resource_owner
128
- _another_token = post password_token_endpoint_url(
129
- client: @client, resource_owner: @resource_owner
130
- )
131
- last_token.update_attribute :created_at, 5.seconds.ago
132
-
133
- @token = FactoryBot.create(
134
- :access_token,
135
- application: @client,
136
- resource_owner_id: @resource_owner.id,
137
- use_refresh_token: true
138
- )
139
- @token.update_attribute :expires_in, -100
140
- end
141
-
142
- context "refresh_token revoked on use" do
143
- it 'client request a token after creating another token with the same user' do
144
- post refresh_token_endpoint_url(
145
- client: @client, refresh_token: @token.refresh_token
146
- )
147
-
148
- should_have_json 'refresh_token', last_token.refresh_token
149
- expect(@token.reload).not_to be_revoked
150
- end
151
- end
152
-
153
- context "refresh_token revoked on refresh_token request" do
154
- before do
155
- allow(Doorkeeper::AccessToken).to receive(:refresh_token_revoked_on_use?).and_return(false)
156
- end
157
-
158
- it 'client request a token after creating another token with the same user' do
159
- post refresh_token_endpoint_url(
160
- client: @client, refresh_token: @token.refresh_token
161
- )
162
-
163
- should_have_json 'refresh_token', last_token.refresh_token
164
- expect(@token.reload).to be_revoked
165
- end
166
- end
167
-
168
- def last_token
169
- Doorkeeper::AccessToken.last_authorized_token_for(
170
- @client.id, @resource_owner.id
171
- )
172
- end
173
- end
174
- end