doorkeeper 5.2.2 → 5.5.4

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of doorkeeper might be problematic. Click here for more details.

Files changed (260) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +198 -3
  3. data/README.md +28 -20
  4. data/app/controllers/doorkeeper/application_controller.rb +3 -2
  5. data/app/controllers/doorkeeper/application_metal_controller.rb +2 -2
  6. data/app/controllers/doorkeeper/applications_controller.rb +7 -8
  7. data/app/controllers/doorkeeper/authorizations_controller.rb +48 -18
  8. data/app/controllers/doorkeeper/authorized_applications_controller.rb +6 -6
  9. data/app/controllers/doorkeeper/token_info_controller.rb +12 -2
  10. data/app/controllers/doorkeeper/tokens_controller.rb +70 -25
  11. data/app/helpers/doorkeeper/dashboard_helper.rb +1 -1
  12. data/app/views/doorkeeper/applications/_form.html.erb +1 -1
  13. data/app/views/doorkeeper/applications/show.html.erb +35 -14
  14. data/app/views/doorkeeper/authorizations/form_post.html.erb +15 -0
  15. data/app/views/doorkeeper/authorizations/new.html.erb +2 -0
  16. data/config/locales/en.yml +9 -2
  17. data/lib/doorkeeper/config/abstract_builder.rb +28 -0
  18. data/lib/doorkeeper/config/option.rb +26 -14
  19. data/lib/doorkeeper/config/validations.rb +53 -0
  20. data/lib/doorkeeper/config.rb +214 -122
  21. data/lib/doorkeeper/engine.rb +1 -1
  22. data/lib/doorkeeper/grant_flow/fallback_flow.rb +15 -0
  23. data/lib/doorkeeper/grant_flow/flow.rb +44 -0
  24. data/lib/doorkeeper/grant_flow/registry.rb +50 -0
  25. data/lib/doorkeeper/grant_flow.rb +45 -0
  26. data/lib/doorkeeper/grape/helpers.rb +2 -2
  27. data/lib/doorkeeper/helpers/controller.rb +18 -12
  28. data/lib/doorkeeper/models/access_grant_mixin.rb +23 -19
  29. data/lib/doorkeeper/models/access_token_mixin.rb +157 -55
  30. data/lib/doorkeeper/models/application_mixin.rb +8 -7
  31. data/lib/doorkeeper/models/concerns/expirable.rb +1 -1
  32. data/lib/doorkeeper/models/concerns/ownership.rb +1 -1
  33. data/lib/doorkeeper/models/concerns/resource_ownerable.rb +47 -0
  34. data/lib/doorkeeper/models/concerns/reusable.rb +1 -1
  35. data/lib/doorkeeper/models/concerns/revocable.rb +1 -28
  36. data/lib/doorkeeper/models/concerns/scopes.rb +5 -1
  37. data/lib/doorkeeper/models/concerns/secret_storable.rb +1 -3
  38. data/lib/doorkeeper/oauth/authorization/code.rb +22 -9
  39. data/lib/doorkeeper/oauth/authorization/context.rb +5 -5
  40. data/lib/doorkeeper/oauth/authorization/token.rb +23 -18
  41. data/lib/doorkeeper/oauth/authorization/uri_builder.rb +4 -4
  42. data/lib/doorkeeper/oauth/authorization_code_request.rb +30 -20
  43. data/lib/doorkeeper/oauth/base_request.rb +19 -23
  44. data/lib/doorkeeper/oauth/client/credentials.rb +2 -4
  45. data/lib/doorkeeper/oauth/client.rb +8 -9
  46. data/lib/doorkeeper/oauth/client_credentials/creator.rb +38 -12
  47. data/lib/doorkeeper/oauth/client_credentials/issuer.rb +10 -8
  48. data/lib/doorkeeper/oauth/client_credentials/{validation.rb → validator.rb} +7 -5
  49. data/lib/doorkeeper/oauth/client_credentials_request.rb +8 -7
  50. data/lib/doorkeeper/oauth/code_request.rb +4 -4
  51. data/lib/doorkeeper/oauth/code_response.rb +24 -14
  52. data/lib/doorkeeper/oauth/error.rb +1 -1
  53. data/lib/doorkeeper/oauth/error_response.rb +10 -11
  54. data/lib/doorkeeper/oauth/forbidden_token_response.rb +2 -1
  55. data/lib/doorkeeper/oauth/helpers/scope_checker.rb +8 -12
  56. data/lib/doorkeeper/oauth/helpers/unique_token.rb +10 -7
  57. data/lib/doorkeeper/oauth/helpers/uri_checker.rb +1 -19
  58. data/lib/doorkeeper/oauth/hooks/context.rb +21 -0
  59. data/lib/doorkeeper/oauth/invalid_request_response.rb +3 -3
  60. data/lib/doorkeeper/oauth/invalid_token_response.rb +7 -4
  61. data/lib/doorkeeper/oauth/password_access_token_request.rb +28 -10
  62. data/lib/doorkeeper/oauth/pre_authorization.rb +73 -37
  63. data/lib/doorkeeper/oauth/refresh_token_request.rb +35 -26
  64. data/lib/doorkeeper/oauth/token.rb +6 -7
  65. data/lib/doorkeeper/oauth/token_introspection.rb +12 -16
  66. data/lib/doorkeeper/oauth/token_request.rb +3 -3
  67. data/lib/doorkeeper/oauth/token_response.rb +1 -1
  68. data/lib/doorkeeper/orm/active_record/access_grant.rb +4 -43
  69. data/lib/doorkeeper/orm/active_record/access_token.rb +4 -35
  70. data/lib/doorkeeper/orm/active_record/application.rb +5 -95
  71. data/lib/doorkeeper/orm/active_record/mixins/access_grant.rb +69 -0
  72. data/lib/doorkeeper/orm/active_record/mixins/access_token.rb +60 -0
  73. data/lib/doorkeeper/orm/active_record/mixins/application.rb +199 -0
  74. data/lib/doorkeeper/orm/active_record/redirect_uri_validator.rb +8 -3
  75. data/lib/doorkeeper/orm/active_record.rb +5 -7
  76. data/lib/doorkeeper/rails/helpers.rb +4 -4
  77. data/lib/doorkeeper/rails/routes/abstract_router.rb +35 -0
  78. data/lib/doorkeeper/rails/routes/mapper.rb +2 -2
  79. data/lib/doorkeeper/rails/routes/registry.rb +45 -0
  80. data/lib/doorkeeper/rails/routes.rb +17 -25
  81. data/lib/doorkeeper/rake/db.rake +6 -6
  82. data/lib/doorkeeper/rake/setup.rake +5 -0
  83. data/lib/doorkeeper/request/authorization_code.rb +3 -3
  84. data/lib/doorkeeper/request/client_credentials.rb +2 -2
  85. data/lib/doorkeeper/request/password.rb +3 -2
  86. data/lib/doorkeeper/request/refresh_token.rb +5 -4
  87. data/lib/doorkeeper/request/strategy.rb +2 -2
  88. data/lib/doorkeeper/request.rb +49 -12
  89. data/lib/doorkeeper/server.rb +5 -5
  90. data/lib/doorkeeper/stale_records_cleaner.rb +4 -4
  91. data/lib/doorkeeper/version.rb +2 -6
  92. data/lib/doorkeeper.rb +112 -81
  93. data/lib/generators/doorkeeper/application_owner_generator.rb +1 -1
  94. data/lib/generators/doorkeeper/confidential_applications_generator.rb +2 -2
  95. data/lib/generators/doorkeeper/enable_polymorphic_resource_owner_generator.rb +39 -0
  96. data/lib/generators/doorkeeper/migration_generator.rb +1 -1
  97. data/lib/generators/doorkeeper/pkce_generator.rb +1 -1
  98. data/lib/generators/doorkeeper/previous_refresh_token_generator.rb +2 -2
  99. data/lib/generators/doorkeeper/templates/add_owner_to_application_migration.rb.erb +3 -1
  100. data/lib/generators/doorkeeper/templates/add_previous_refresh_token_to_access_tokens.rb.erb +2 -0
  101. data/lib/generators/doorkeeper/templates/enable_pkce_migration.rb.erb +2 -0
  102. data/lib/generators/doorkeeper/templates/enable_polymorphic_resource_owner_migration.rb.erb +17 -0
  103. data/lib/generators/doorkeeper/templates/initializer.rb +99 -14
  104. data/lib/generators/doorkeeper/templates/migration.rb.erb +14 -5
  105. metadata +37 -306
  106. data/Appraisals +0 -40
  107. data/CODE_OF_CONDUCT.md +0 -46
  108. data/CONTRIBUTING.md +0 -49
  109. data/Dangerfile +0 -67
  110. data/Dockerfile +0 -29
  111. data/Gemfile +0 -25
  112. data/NEWS.md +0 -1
  113. data/RELEASING.md +0 -11
  114. data/Rakefile +0 -28
  115. data/SECURITY.md +0 -15
  116. data/UPGRADE.md +0 -2
  117. data/bin/console +0 -16
  118. data/doorkeeper.gemspec +0 -42
  119. data/gemfiles/rails_5_0.gemfile +0 -18
  120. data/gemfiles/rails_5_1.gemfile +0 -18
  121. data/gemfiles/rails_5_2.gemfile +0 -18
  122. data/gemfiles/rails_6_0.gemfile +0 -18
  123. data/gemfiles/rails_master.gemfile +0 -18
  124. data/spec/controllers/application_metal_controller_spec.rb +0 -64
  125. data/spec/controllers/applications_controller_spec.rb +0 -273
  126. data/spec/controllers/authorizations_controller_spec.rb +0 -608
  127. data/spec/controllers/protected_resources_controller_spec.rb +0 -353
  128. data/spec/controllers/token_info_controller_spec.rb +0 -50
  129. data/spec/controllers/tokens_controller_spec.rb +0 -498
  130. data/spec/dummy/Rakefile +0 -9
  131. data/spec/dummy/app/assets/config/manifest.js +0 -2
  132. data/spec/dummy/app/controllers/application_controller.rb +0 -5
  133. data/spec/dummy/app/controllers/custom_authorizations_controller.rb +0 -9
  134. data/spec/dummy/app/controllers/full_protected_resources_controller.rb +0 -14
  135. data/spec/dummy/app/controllers/home_controller.rb +0 -18
  136. data/spec/dummy/app/controllers/metal_controller.rb +0 -13
  137. data/spec/dummy/app/controllers/semi_protected_resources_controller.rb +0 -13
  138. data/spec/dummy/app/helpers/application_helper.rb +0 -7
  139. data/spec/dummy/app/models/user.rb +0 -7
  140. data/spec/dummy/app/views/home/index.html.erb +0 -0
  141. data/spec/dummy/app/views/layouts/application.html.erb +0 -14
  142. data/spec/dummy/config/application.rb +0 -49
  143. data/spec/dummy/config/boot.rb +0 -7
  144. data/spec/dummy/config/database.yml +0 -15
  145. data/spec/dummy/config/environment.rb +0 -5
  146. data/spec/dummy/config/environments/development.rb +0 -31
  147. data/spec/dummy/config/environments/production.rb +0 -64
  148. data/spec/dummy/config/environments/test.rb +0 -45
  149. data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -9
  150. data/spec/dummy/config/initializers/doorkeeper.rb +0 -166
  151. data/spec/dummy/config/initializers/secret_token.rb +0 -10
  152. data/spec/dummy/config/initializers/session_store.rb +0 -10
  153. data/spec/dummy/config/initializers/wrap_parameters.rb +0 -16
  154. data/spec/dummy/config/locales/doorkeeper.en.yml +0 -5
  155. data/spec/dummy/config/routes.rb +0 -13
  156. data/spec/dummy/config.ru +0 -6
  157. data/spec/dummy/db/migrate/20111122132257_create_users.rb +0 -11
  158. data/spec/dummy/db/migrate/20120312140401_add_password_to_users.rb +0 -7
  159. data/spec/dummy/db/migrate/20151223192035_create_doorkeeper_tables.rb +0 -69
  160. data/spec/dummy/db/migrate/20151223200000_add_owner_to_application.rb +0 -9
  161. data/spec/dummy/db/migrate/20160320211015_add_previous_refresh_token_to_access_tokens.rb +0 -13
  162. data/spec/dummy/db/migrate/20170822064514_enable_pkce.rb +0 -8
  163. data/spec/dummy/db/migrate/20180210183654_add_confidential_to_applications.rb +0 -13
  164. data/spec/dummy/db/schema.rb +0 -68
  165. data/spec/dummy/public/404.html +0 -26
  166. data/spec/dummy/public/422.html +0 -26
  167. data/spec/dummy/public/500.html +0 -26
  168. data/spec/dummy/public/favicon.ico +0 -0
  169. data/spec/dummy/script/rails +0 -9
  170. data/spec/factories.rb +0 -30
  171. data/spec/generators/application_owner_generator_spec.rb +0 -28
  172. data/spec/generators/confidential_applications_generator_spec.rb +0 -29
  173. data/spec/generators/install_generator_spec.rb +0 -36
  174. data/spec/generators/migration_generator_spec.rb +0 -28
  175. data/spec/generators/pkce_generator_spec.rb +0 -28
  176. data/spec/generators/previous_refresh_token_generator_spec.rb +0 -44
  177. data/spec/generators/templates/routes.rb +0 -4
  178. data/spec/generators/views_generator_spec.rb +0 -29
  179. data/spec/grape/grape_integration_spec.rb +0 -137
  180. data/spec/helpers/doorkeeper/dashboard_helper_spec.rb +0 -26
  181. data/spec/lib/config_spec.rb +0 -739
  182. data/spec/lib/doorkeeper_spec.rb +0 -27
  183. data/spec/lib/models/expirable_spec.rb +0 -61
  184. data/spec/lib/models/reusable_spec.rb +0 -40
  185. data/spec/lib/models/revocable_spec.rb +0 -59
  186. data/spec/lib/models/scopes_spec.rb +0 -53
  187. data/spec/lib/models/secret_storable_spec.rb +0 -135
  188. data/spec/lib/oauth/authorization/uri_builder_spec.rb +0 -39
  189. data/spec/lib/oauth/authorization_code_request_spec.rb +0 -168
  190. data/spec/lib/oauth/base_request_spec.rb +0 -222
  191. data/spec/lib/oauth/base_response_spec.rb +0 -47
  192. data/spec/lib/oauth/client/credentials_spec.rb +0 -90
  193. data/spec/lib/oauth/client_credentials/creator_spec.rb +0 -97
  194. data/spec/lib/oauth/client_credentials/issuer_spec.rb +0 -112
  195. data/spec/lib/oauth/client_credentials/validation_spec.rb +0 -59
  196. data/spec/lib/oauth/client_credentials_integration_spec.rb +0 -29
  197. data/spec/lib/oauth/client_credentials_request_spec.rb +0 -109
  198. data/spec/lib/oauth/client_spec.rb +0 -38
  199. data/spec/lib/oauth/code_request_spec.rb +0 -46
  200. data/spec/lib/oauth/code_response_spec.rb +0 -36
  201. data/spec/lib/oauth/error_response_spec.rb +0 -66
  202. data/spec/lib/oauth/error_spec.rb +0 -23
  203. data/spec/lib/oauth/forbidden_token_response_spec.rb +0 -22
  204. data/spec/lib/oauth/helpers/scope_checker_spec.rb +0 -98
  205. data/spec/lib/oauth/helpers/unique_token_spec.rb +0 -21
  206. data/spec/lib/oauth/helpers/uri_checker_spec.rb +0 -262
  207. data/spec/lib/oauth/invalid_request_response_spec.rb +0 -75
  208. data/spec/lib/oauth/invalid_token_response_spec.rb +0 -55
  209. data/spec/lib/oauth/password_access_token_request_spec.rb +0 -192
  210. data/spec/lib/oauth/pre_authorization_spec.rb +0 -225
  211. data/spec/lib/oauth/refresh_token_request_spec.rb +0 -178
  212. data/spec/lib/oauth/scopes_spec.rb +0 -148
  213. data/spec/lib/oauth/token_request_spec.rb +0 -153
  214. data/spec/lib/oauth/token_response_spec.rb +0 -86
  215. data/spec/lib/oauth/token_spec.rb +0 -158
  216. data/spec/lib/request/strategy_spec.rb +0 -54
  217. data/spec/lib/secret_storing/base_spec.rb +0 -60
  218. data/spec/lib/secret_storing/bcrypt_spec.rb +0 -49
  219. data/spec/lib/secret_storing/plain_spec.rb +0 -44
  220. data/spec/lib/secret_storing/sha256_hash_spec.rb +0 -48
  221. data/spec/lib/server_spec.rb +0 -49
  222. data/spec/lib/stale_records_cleaner_spec.rb +0 -89
  223. data/spec/models/doorkeeper/access_grant_spec.rb +0 -163
  224. data/spec/models/doorkeeper/access_token_spec.rb +0 -622
  225. data/spec/models/doorkeeper/application_spec.rb +0 -377
  226. data/spec/requests/applications/applications_request_spec.rb +0 -259
  227. data/spec/requests/applications/authorized_applications_spec.rb +0 -32
  228. data/spec/requests/endpoints/authorization_spec.rb +0 -89
  229. data/spec/requests/endpoints/token_spec.rb +0 -75
  230. data/spec/requests/flows/authorization_code_errors_spec.rb +0 -79
  231. data/spec/requests/flows/authorization_code_spec.rb +0 -513
  232. data/spec/requests/flows/client_credentials_spec.rb +0 -166
  233. data/spec/requests/flows/implicit_grant_errors_spec.rb +0 -46
  234. data/spec/requests/flows/implicit_grant_spec.rb +0 -91
  235. data/spec/requests/flows/password_spec.rb +0 -296
  236. data/spec/requests/flows/refresh_token_spec.rb +0 -233
  237. data/spec/requests/flows/revoke_token_spec.rb +0 -151
  238. data/spec/requests/flows/skip_authorization_spec.rb +0 -66
  239. data/spec/requests/protected_resources/metal_spec.rb +0 -16
  240. data/spec/requests/protected_resources/private_api_spec.rb +0 -83
  241. data/spec/routing/custom_controller_routes_spec.rb +0 -133
  242. data/spec/routing/default_routes_spec.rb +0 -41
  243. data/spec/routing/scoped_routes_spec.rb +0 -47
  244. data/spec/spec_helper.rb +0 -57
  245. data/spec/spec_helper_integration.rb +0 -4
  246. data/spec/support/dependencies/factory_bot.rb +0 -4
  247. data/spec/support/doorkeeper_rspec.rb +0 -22
  248. data/spec/support/helpers/access_token_request_helper.rb +0 -13
  249. data/spec/support/helpers/authorization_request_helper.rb +0 -43
  250. data/spec/support/helpers/config_helper.rb +0 -11
  251. data/spec/support/helpers/model_helper.rb +0 -78
  252. data/spec/support/helpers/request_spec_helper.rb +0 -110
  253. data/spec/support/helpers/url_helper.rb +0 -62
  254. data/spec/support/http_method_shim.rb +0 -29
  255. data/spec/support/orm/active_record.rb +0 -5
  256. data/spec/support/shared/controllers_shared_context.rb +0 -123
  257. data/spec/support/shared/hashing_shared_context.rb +0 -36
  258. data/spec/support/shared/models_shared_examples.rb +0 -54
  259. data/spec/validators/redirect_uri_validator_spec.rb +0 -183
  260. data/spec/version/version_spec.rb +0 -17
@@ -1,262 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require "spec_helper"
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
-
43
- it "is invalid if localhost is resolved as as scheme (no scheme specified)" do
44
- uri = "localhost:8080"
45
- expect(URIChecker.valid?(uri)).to be_falsey
46
- end
47
-
48
- it "is invalid if scheme is missing #2" do
49
- uri = "app.co:80"
50
- expect(URIChecker.valid?(uri)).to be_falsey
51
- end
52
-
53
- it "is invalid if is not an uri" do
54
- uri = " "
55
- expect(URIChecker.valid?(uri)).to be_falsey
56
- end
57
-
58
- it "is valid for custom schemes" do
59
- uri = "com.example.app:/test"
60
- expect(URIChecker.valid?(uri)).to be_truthy
61
- end
62
-
63
- it "is valid for custom schemes with authority marker (common misconfiguration)" do
64
- uri = "com.example.app://test"
65
- expect(URIChecker.valid?(uri)).to be_truthy
66
- end
67
- end
68
-
69
- describe ".matches?" do
70
- it "is true if both url matches" do
71
- uri = client_uri = "http://app.co/aaa"
72
- expect(URIChecker.matches?(uri, client_uri)).to be_truthy
73
- end
74
-
75
- it "ignores query parameter on comparsion" do
76
- uri = "http://app.co/?query=hello"
77
- client_uri = "http://app.co"
78
- expect(URIChecker.matches?(uri, client_uri)).to be_truthy
79
- end
80
-
81
- it "doesn't allow non-matching domains through" do
82
- uri = "http://app.abc/?query=hello"
83
- client_uri = "http://app.co"
84
- expect(URIChecker.matches?(uri, client_uri)).to be_falsey
85
- end
86
-
87
- it "doesn't allow non-matching domains that don't start at the beginning" do
88
- uri = "http://app.co/?query=hello"
89
- client_uri = "http://example.com?app.co=test"
90
- expect(URIChecker.matches?(uri, client_uri)).to be_falsey
91
- end
92
-
93
- context "loopback IP redirect URIs" do
94
- it "ignores port for same URIs" do
95
- uri = "http://127.0.0.1:5555/auth/callback"
96
- client_uri = "http://127.0.0.1:48599/auth/callback"
97
- expect(URIChecker.matches?(uri, client_uri)).to be_truthy
98
-
99
- uri = "http://[::1]:5555/auth/callback"
100
- client_uri = "http://[::1]:5555/auth/callback"
101
- expect(URIChecker.matches?(uri, client_uri)).to be_truthy
102
- end
103
-
104
- it "doesn't ignore port for URIs with different queries" do
105
- uri = "http://127.0.0.1:5555/auth/callback"
106
- client_uri = "http://127.0.0.1:48599/auth/callback2"
107
- expect(URIChecker.matches?(uri, client_uri)).to be_falsey
108
- end
109
- end
110
-
111
- context "client registered query params" do
112
- it "doesn't allow query being absent" do
113
- uri = "http://app.co"
114
- client_uri = "http://app.co/?vendorId=AJ4L7XXW9"
115
- expect(URIChecker.matches?(uri, client_uri)).to be_falsey
116
- end
117
-
118
- it "is false if query values differ but key same" do
119
- uri = "http://app.co/?vendorId=pancakes"
120
- client_uri = "http://app.co/?vendorId=waffles"
121
- expect(URIChecker.matches?(uri, client_uri)).to be_falsey
122
- end
123
-
124
- it "is false if query values same but key differs" do
125
- uri = "http://app.co/?foo=pancakes"
126
- client_uri = "http://app.co/?bar=pancakes"
127
- expect(URIChecker.matches?(uri, client_uri)).to be_falsey
128
- end
129
-
130
- it "is false if query present and match, but unknown queries present" do
131
- uri = "http://app.co/?vendorId=pancakes&unknown=query"
132
- client_uri = "http://app.co/?vendorId=waffles"
133
- expect(URIChecker.matches?(uri, client_uri)).to be_falsey
134
- end
135
-
136
- it "is true if queries are present and matche" do
137
- uri = "http://app.co/?vendorId=AJ4L7XXW9&foo=bar"
138
- client_uri = "http://app.co/?vendorId=AJ4L7XXW9&foo=bar"
139
- expect(URIChecker.matches?(uri, client_uri)).to be_truthy
140
- end
141
-
142
- it "is true if queries are present, match and in different order" do
143
- uri = "http://app.co/?bing=bang&foo=bar"
144
- client_uri = "http://app.co/?foo=bar&bing=bang"
145
- expect(URIChecker.matches?(uri, client_uri)).to be_truthy
146
- end
147
- end
148
- end
149
-
150
- describe ".valid_for_authorization?" do
151
- it "is true if valid and matches" do
152
- uri = client_uri = "http://app.co/aaa"
153
- expect(URIChecker.valid_for_authorization?(uri, client_uri)).to be_truthy
154
-
155
- uri = client_uri = "http://app.co/aaa?b=c"
156
- expect(URIChecker.valid_for_authorization?(uri, client_uri)).to be_truthy
157
- end
158
-
159
- it "is true if uri includes blank query" do
160
- uri = client_uri = "http://app.co/aaa?"
161
- expect(URIChecker.valid_for_authorization?(uri, client_uri)).to be_truthy
162
-
163
- uri = "http://app.co/aaa?"
164
- client_uri = "http://app.co/aaa"
165
- expect(URIChecker.valid_for_authorization?(uri, client_uri)).to be_truthy
166
-
167
- uri = "http://app.co/aaa"
168
- client_uri = "http://app.co/aaa?"
169
- expect(URIChecker.valid_for_authorization?(uri, client_uri)).to be_truthy
170
- end
171
-
172
- it "is false if valid and mismatches" do
173
- uri = "http://app.co/aaa"
174
- client_uri = "http://app.co/bbb"
175
- expect(URIChecker.valid_for_authorization?(uri, client_uri)).to be_falsey
176
- end
177
-
178
- it "is true if valid and included in array" do
179
- uri = "http://app.co/aaa"
180
- client_uri = "http://example.com/bbb\nhttp://app.co/aaa"
181
- expect(URIChecker.valid_for_authorization?(uri, client_uri)).to be_truthy
182
- end
183
-
184
- it "is false if valid and not included in array" do
185
- uri = "http://app.co/aaa"
186
- client_uri = "http://example.com/bbb\nhttp://app.co/cc"
187
- expect(URIChecker.valid_for_authorization?(uri, client_uri)).to be_falsey
188
- end
189
-
190
- it "is false if queries does not match" do
191
- uri = "http://app.co/aaa?pankcakes=abc"
192
- client_uri = "http://app.co/aaa?waffles=abc"
193
- expect(URIChecker.valid_for_authorization?(uri, client_uri)).to be false
194
- end
195
-
196
- it "calls .matches?" do
197
- uri = "http://app.co/aaa?pankcakes=abc"
198
- client_uri = "http://app.co/aaa?waffles=abc"
199
- expect(URIChecker).to receive(:matches?).with(uri, client_uri).once
200
- URIChecker.valid_for_authorization?(uri, client_uri)
201
- end
202
-
203
- it "calls .valid?" do
204
- uri = "http://app.co/aaa?pankcakes=abc"
205
- client_uri = "http://app.co/aaa?waffles=abc"
206
- expect(URIChecker).to receive(:valid?).with(uri).once
207
- URIChecker.valid_for_authorization?(uri, client_uri)
208
- end
209
- end
210
-
211
- describe ".query_matches?" do
212
- it "is true if no queries" do
213
- expect(URIChecker.query_matches?("", "")).to be_truthy
214
- expect(URIChecker.query_matches?(nil, nil)).to be_truthy
215
- end
216
-
217
- it "is true if same query" do
218
- expect(URIChecker.query_matches?("foo", "foo")).to be_truthy
219
- end
220
-
221
- it "is false if different query" do
222
- expect(URIChecker.query_matches?("foo", "bar")).to be_falsey
223
- end
224
-
225
- it "is true if same queries" do
226
- expect(URIChecker.query_matches?("foo&bar", "foo&bar")).to be_truthy
227
- end
228
-
229
- it "is true if same queries, different order" do
230
- expect(URIChecker.query_matches?("foo&bar", "bar&foo")).to be_truthy
231
- end
232
-
233
- it "is false if one different query" do
234
- expect(URIChecker.query_matches?("foo&bang", "foo&bing")).to be_falsey
235
- end
236
-
237
- it "is true if same query with same value" do
238
- expect(URIChecker.query_matches?("foo=bar", "foo=bar")).to be_truthy
239
- end
240
-
241
- it "is true if same queries with same values" do
242
- expect(URIChecker.query_matches?("foo=bar&bing=bang", "foo=bar&bing=bang")).to be_truthy
243
- end
244
-
245
- it "is true if same queries with same values, different order" do
246
- expect(URIChecker.query_matches?("foo=bar&bing=bang", "bing=bang&foo=bar")).to be_truthy
247
- end
248
-
249
- it "is false if same query with different value" do
250
- expect(URIChecker.query_matches?("foo=bar", "foo=bang")).to be_falsey
251
- end
252
-
253
- it "is false if some queries missing" do
254
- expect(URIChecker.query_matches?("foo=bar", "foo=bar&bing=bang")).to be_falsey
255
- end
256
-
257
- it "is false if some queries different value" do
258
- expect(URIChecker.query_matches?("foo=bar&bing=bang", "foo=bar&bing=banana")).to be_falsey
259
- end
260
- end
261
- end
262
- end
@@ -1,75 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require "spec_helper"
4
-
5
- module Doorkeeper::OAuth
6
- describe InvalidRequestResponse do
7
- describe "#name" do
8
- it { expect(subject.name).to eq(:invalid_request) }
9
- end
10
-
11
- describe "#status" do
12
- it { expect(subject.status).to eq(:bad_request) }
13
- end
14
-
15
- describe :from_request do
16
- let(:response) { InvalidRequestResponse.from_request(request) }
17
-
18
- context "missing param" do
19
- let(:request) { double(missing_param: "some_param") }
20
-
21
- it "sets a description" do
22
- expect(response.description).to eq(
23
- I18n.t(:missing_param, scope: %i[doorkeeper errors messages invalid_request], value: "some_param")
24
- )
25
- end
26
-
27
- it "sets the reason" do
28
- expect(response.reason).to eq(:missing_param)
29
- end
30
- end
31
-
32
- context "server doesn not support_pkce" do
33
- let(:request) { double(invalid_request_reason: :not_support_pkce) }
34
-
35
- it "sets a description" do
36
- expect(response.description).to eq(
37
- I18n.t(:not_support_pkce, scope: %i[doorkeeper errors messages invalid_request])
38
- )
39
- end
40
-
41
- it "sets the reason" do
42
- expect(response.reason).to eq(:not_support_pkce)
43
- end
44
- end
45
-
46
- context "request is not authorized" do
47
- let(:request) { double(invalid_request_reason: :request_not_authorized) }
48
-
49
- it "sets a description" do
50
- expect(response.description).to eq(
51
- I18n.t(:request_not_authorized, scope: %i[doorkeeper errors messages invalid_request])
52
- )
53
- end
54
-
55
- it "sets the reason" do
56
- expect(response.reason).to eq(:request_not_authorized)
57
- end
58
- end
59
-
60
- context "unknown reason" do
61
- let(:request) { double(invalid_request_reason: :unknown_reason) }
62
-
63
- it "sets a description" do
64
- expect(response.description).to eq(
65
- I18n.t(:unknown, scope: %i[doorkeeper errors messages invalid_request])
66
- )
67
- end
68
-
69
- it "unknown reason" do
70
- expect(response.reason).to eq(:unknown_reason)
71
- end
72
- end
73
- end
74
- end
75
- end
@@ -1,55 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require "spec_helper"
4
-
5
- module Doorkeeper::OAuth
6
- describe InvalidTokenResponse do
7
- describe "#name" do
8
- it { expect(subject.name).to eq(:invalid_token) }
9
- end
10
-
11
- describe "#status" do
12
- it { expect(subject.status).to eq(:unauthorized) }
13
- end
14
-
15
- describe :from_access_token do
16
- let(:response) { InvalidTokenResponse.from_access_token(access_token) }
17
-
18
- context "revoked" do
19
- let(:access_token) { double(revoked?: true, expired?: true) }
20
-
21
- it "sets a description" do
22
- expect(response.description).to include("revoked")
23
- end
24
-
25
- it "sets the reason" do
26
- expect(response.reason).to eq(:revoked)
27
- end
28
- end
29
-
30
- context "expired" do
31
- let(:access_token) { double(revoked?: false, expired?: true) }
32
-
33
- it "sets a description" do
34
- expect(response.description).to include("expired")
35
- end
36
-
37
- it "sets the reason" do
38
- expect(response.reason).to eq(:expired)
39
- end
40
- end
41
-
42
- context "unknown" do
43
- let(:access_token) { double(revoked?: false, expired?: false) }
44
-
45
- it "sets a description" do
46
- expect(response.description).to include("invalid")
47
- end
48
-
49
- it "sets the reason" do
50
- expect(response.reason).to eq(:unknown)
51
- end
52
- end
53
- end
54
- end
55
- end
@@ -1,192 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require "spec_helper"
4
-
5
- module Doorkeeper::OAuth
6
- describe PasswordAccessTokenRequest do
7
- let(:server) do
8
- double(
9
- :server,
10
- default_scopes: Doorkeeper::OAuth::Scopes.new,
11
- access_token_expires_in: 2.hours,
12
- refresh_token_enabled?: false,
13
- custom_access_token_expires_in: lambda { |context|
14
- context.grant_type == Doorkeeper::OAuth::PASSWORD ? 1234 : nil
15
- }
16
- )
17
- end
18
- let(:client) { FactoryBot.create(:application) }
19
- let(:owner) { double :owner, id: 99 }
20
-
21
- before do
22
- allow(server).to receive(:option_defined?).with(:custom_access_token_expires_in).and_return(true)
23
- end
24
-
25
- subject do
26
- PasswordAccessTokenRequest.new(server, client, owner)
27
- end
28
-
29
- it "issues a new token for the client" do
30
- expect do
31
- subject.authorize
32
- end.to change { client.reload.access_tokens.count }.by(1)
33
-
34
- expect(client.reload.access_tokens.max_by(&:created_at).expires_in).to eq(1234)
35
- end
36
-
37
- it "issues a new token without a client" do
38
- expect do
39
- subject.client = nil
40
- subject.authorize
41
- end.to change { Doorkeeper::AccessToken.count }.by(1)
42
- end
43
-
44
- it "does not issue a new token with an invalid client" do
45
- expect do
46
- subject.client = nil
47
- subject.parameters = { client_id: "bad_id" }
48
- subject.authorize
49
- end.not_to(change { Doorkeeper::AccessToken.count })
50
-
51
- expect(subject.error).to eq(:invalid_client)
52
- end
53
-
54
- it "requires the owner" do
55
- subject.resource_owner = nil
56
- subject.validate
57
- expect(subject.error).to eq(:invalid_grant)
58
- end
59
-
60
- it "optionally accepts the client" do
61
- subject.client = nil
62
- expect(subject).to be_valid
63
- end
64
-
65
- it "creates token even when there is already one (default)" do
66
- FactoryBot.create(:access_token, application_id: client.id, resource_owner_id: owner.id)
67
-
68
- expect do
69
- subject.authorize
70
- end.to change { Doorkeeper::AccessToken.count }.by(1)
71
- end
72
-
73
- it "skips token creation if there is already one reusable" do
74
- allow(Doorkeeper.configuration).to receive(:reuse_access_token).and_return(true)
75
- FactoryBot.create(:access_token, application_id: client.id, resource_owner_id: owner.id)
76
-
77
- expect do
78
- subject.authorize
79
- end.not_to(change { Doorkeeper::AccessToken.count })
80
- end
81
-
82
- it "creates token when there is already one but non reusable" do
83
- allow(Doorkeeper.configuration).to receive(:reuse_access_token).and_return(true)
84
- FactoryBot.create(:access_token, application_id: client.id, resource_owner_id: owner.id)
85
- allow_any_instance_of(Doorkeeper::AccessToken).to receive(:reusable?).and_return(false)
86
-
87
- expect do
88
- subject.authorize
89
- end.to change { Doorkeeper::AccessToken.count }.by(1)
90
- end
91
-
92
- it "calls configured request callback methods" do
93
- expect(Doorkeeper.configuration.before_successful_strategy_response)
94
- .to receive(:call).with(subject).once
95
-
96
- expect(Doorkeeper.configuration.after_successful_strategy_response)
97
- .to receive(:call).with(subject, instance_of(Doorkeeper::OAuth::TokenResponse)).once
98
-
99
- subject.authorize
100
- end
101
-
102
- describe "with scopes" do
103
- subject do
104
- PasswordAccessTokenRequest.new(server, client, owner, scope: "public")
105
- end
106
-
107
- context "when scopes_by_grant_type is not configured for grant_type" do
108
- it "returns error when scopes are invalid" do
109
- allow(server).to receive(:scopes).and_return(Doorkeeper::OAuth::Scopes.from_string("another"))
110
- subject.validate
111
- expect(subject.error).to eq(:invalid_scope)
112
- end
113
-
114
- it "creates the token with scopes if scopes are valid" do
115
- allow(server).to receive(:scopes).and_return(Doorkeeper::OAuth::Scopes.from_string("public"))
116
- expect do
117
- subject.authorize
118
- end.to change { Doorkeeper::AccessToken.count }.by(1)
119
-
120
- expect(Doorkeeper::AccessToken.last.scopes).to include("public")
121
- end
122
- end
123
-
124
- context "when scopes_by_grant_type is configured for grant_type" do
125
- it "returns error when scopes are valid but not permitted for grant_type" do
126
- allow(server)
127
- .to receive(:scopes).and_return(Doorkeeper::OAuth::Scopes.from_string("public"))
128
- allow(Doorkeeper.configuration)
129
- .to receive(:scopes_by_grant_type).and_return(password: "another")
130
- subject.validate
131
- expect(subject.error).to eq(:invalid_scope)
132
- end
133
-
134
- it "creates the token with scopes if scopes are valid and permitted for grant_type" do
135
- allow(server).to receive(:scopes).and_return(Doorkeeper::OAuth::Scopes.from_string("public"))
136
- allow(Doorkeeper.configuration)
137
- .to receive(:scopes_by_grant_type).and_return(password: [:public])
138
-
139
- expect do
140
- subject.authorize
141
- end.to change { Doorkeeper::AccessToken.count }.by(1)
142
-
143
- expect(Doorkeeper::AccessToken.last.scopes).to include("public")
144
- end
145
- end
146
- end
147
-
148
- describe "with custom expiry" do
149
- let(:server) do
150
- double(
151
- :server,
152
- default_scopes: Doorkeeper::OAuth::Scopes.new,
153
- access_token_expires_in: 2.hours,
154
- refresh_token_enabled?: false,
155
- custom_access_token_expires_in: lambda { |context|
156
- if context.scopes.exists?("public")
157
- 222
158
- elsif context.scopes.exists?("magic")
159
- Float::INFINITY
160
- end
161
- }
162
- )
163
- end
164
-
165
- before do
166
- allow(server).to receive(:option_defined?).with(:custom_access_token_expires_in).and_return(true)
167
- end
168
-
169
- it "checks scopes" do
170
- subject = PasswordAccessTokenRequest.new(server, client, owner, scope: "public")
171
- allow(server).to receive(:scopes).and_return(Doorkeeper::OAuth::Scopes.from_string("public"))
172
-
173
- expect do
174
- subject.authorize
175
- end.to change { Doorkeeper::AccessToken.count }.by(1)
176
-
177
- expect(Doorkeeper::AccessToken.last.expires_in).to eq(222)
178
- end
179
-
180
- it "falls back to the default otherwise" do
181
- subject = PasswordAccessTokenRequest.new(server, client, owner, scope: "private")
182
- allow(server).to receive(:scopes).and_return(Doorkeeper::OAuth::Scopes.from_string("private"))
183
-
184
- expect do
185
- subject.authorize
186
- end.to change { Doorkeeper::AccessToken.count }.by(1)
187
-
188
- expect(Doorkeeper::AccessToken.last.expires_in).to eq(2.hours)
189
- end
190
- end
191
- end
192
- end