doorkeeper-sequel 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (197) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +10 -0
  3. data/.gitmodules +3 -0
  4. data/.rspec +1 -0
  5. data/.rubocop.yml +13 -0
  6. data/.travis.yml +24 -0
  7. data/CHANGELOG.md +24 -0
  8. data/Gemfile +23 -0
  9. data/Gemfile.lock +172 -0
  10. data/LICENSE +21 -0
  11. data/README.md +76 -0
  12. data/Rakefile +56 -0
  13. data/config/locales/en.yml +16 -0
  14. data/doorkeeper-sequel.gemspec +32 -0
  15. data/gemfiles/rails-4.2.gemfile +11 -0
  16. data/gemfiles/rails-5.0.gemfile +11 -0
  17. data/lib/doorkeeper/orm/sequel/access_grant.rb +9 -0
  18. data/lib/doorkeeper/orm/sequel/access_token.rb +32 -0
  19. data/lib/doorkeeper/orm/sequel/application.rb +18 -0
  20. data/lib/doorkeeper/orm/sequel/models/access_grant_mixin.rb +50 -0
  21. data/lib/doorkeeper/orm/sequel/models/access_token_mixin.rb +163 -0
  22. data/lib/doorkeeper/orm/sequel/models/application_mixin.rb +70 -0
  23. data/lib/doorkeeper/orm/sequel/models/concerns/ownership.rb +19 -0
  24. data/lib/doorkeeper/orm/sequel/models/concerns/sequel_compat.rb +40 -0
  25. data/lib/doorkeeper/orm/sequel/validators/redirect_uri_validator.rb +49 -0
  26. data/lib/doorkeeper/orm/sequel.rb +18 -0
  27. data/lib/doorkeeper-sequel/gem_version.rb +13 -0
  28. data/lib/doorkeeper-sequel/version.rb +7 -0
  29. data/lib/doorkeeper-sequel.rb +18 -0
  30. data/lib/generators/doorkeeper/sequel/application_owner_generator.rb +23 -0
  31. data/lib/generators/doorkeeper/sequel/migration_generator.rb +23 -0
  32. data/lib/generators/doorkeeper/sequel/previous_refresh_token_generator.rb +23 -0
  33. data/lib/generators/doorkeeper/sequel/templates/add_owner_to_application.rb +9 -0
  34. data/lib/generators/doorkeeper/sequel/templates/add_previous_refresh_token_to_access_tokens.rb +7 -0
  35. data/lib/generators/doorkeeper/sequel/templates/migration.rb +59 -0
  36. data/spec/controllers/application_metal_controller.rb +10 -0
  37. data/spec/controllers/applications_controller_spec.rb +58 -0
  38. data/spec/controllers/authorizations_controller_spec.rb +189 -0
  39. data/spec/controllers/protected_resources_controller_spec.rb +300 -0
  40. data/spec/controllers/token_info_controller_spec.rb +52 -0
  41. data/spec/controllers/tokens_controller_spec.rb +88 -0
  42. data/spec/dummy/Rakefile +7 -0
  43. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  44. data/spec/dummy/app/controllers/custom_authorizations_controller.rb +7 -0
  45. data/spec/dummy/app/controllers/full_protected_resources_controller.rb +12 -0
  46. data/spec/dummy/app/controllers/home_controller.rb +17 -0
  47. data/spec/dummy/app/controllers/metal_controller.rb +11 -0
  48. data/spec/dummy/app/controllers/semi_protected_resources_controller.rb +11 -0
  49. data/spec/dummy/app/helpers/application_helper.rb +5 -0
  50. data/spec/dummy/app/models/user.rb +11 -0
  51. data/spec/dummy/app/views/home/index.html.erb +0 -0
  52. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  53. data/spec/dummy/config/application.rb +29 -0
  54. data/spec/dummy/config/boot.rb +9 -0
  55. data/spec/dummy/config/database.yml +15 -0
  56. data/spec/dummy/config/environment.rb +5 -0
  57. data/spec/dummy/config/environments/development.rb +29 -0
  58. data/spec/dummy/config/environments/production.rb +62 -0
  59. data/spec/dummy/config/environments/test.rb +44 -0
  60. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  61. data/spec/dummy/config/initializers/db.rb +74 -0
  62. data/spec/dummy/config/initializers/doorkeeper.rb +96 -0
  63. data/spec/dummy/config/initializers/secret_token.rb +9 -0
  64. data/spec/dummy/config/initializers/session_store.rb +8 -0
  65. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  66. data/spec/dummy/config/locales/doorkeeper.en.yml +5 -0
  67. data/spec/dummy/config/routes.rb +52 -0
  68. data/spec/dummy/config.ru +4 -0
  69. data/spec/dummy/db/migrate/20111122132257_create_users.rb +9 -0
  70. data/spec/dummy/db/migrate/20120312140401_add_password_to_users.rb +5 -0
  71. data/spec/dummy/db/migrate/20151223192035_create_doorkeeper_tables.rb +60 -0
  72. data/spec/dummy/db/migrate/20151223200000_add_owner_to_application.rb +7 -0
  73. data/spec/dummy/db/migrate/20160320211015_add_previous_refresh_token_to_access_tokens.rb +11 -0
  74. data/spec/dummy/db/schema.rb +67 -0
  75. data/spec/dummy/log/test.log +19813 -0
  76. data/spec/dummy/public/404.html +26 -0
  77. data/spec/dummy/public/422.html +26 -0
  78. data/spec/dummy/public/500.html +26 -0
  79. data/spec/dummy/public/favicon.ico +0 -0
  80. data/spec/dummy/script/rails +6 -0
  81. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-T/-TZF6Ae6YipbyKuHghb9wlTx4_b9itbSHRc_2PmqjiU.cache +1 -0
  82. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0p/0pa3wNbGHqFC6gxrMvdOJiP6gPwFv9VJ_npjEfRWxAE.cache +1 -0
  83. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2e/2eYh115US2lIRhM2KTEaJFa6aV_cX8iv6JAdjuq0Uio.cache +1 -0
  84. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3P/3PoguHEOEeItUjmwC74MWLLP-_Ijow7798bF5U6K2dw.cache +1 -0
  85. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6b/6b0anrSo7Fvoc05t4Ca0zZmfS_cpERy1DsG3ea6lBOg.cache +0 -0
  86. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/BA/BAC3ZaGoeZ9Od-kKg-UQYelvRgsCa0H72-52nLdcTNw.cache +1 -0
  87. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Bw/Bw6Nimjvy5Yv1AYbZb1t-v0eMNhv-bhwBzR-b5mY7FU.cache +0 -0
  88. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Fq/FqQWjMAz8yjZQlMC_dUsztaOxGruI2IXyGAAUF9SvQ0.cache +1 -0
  89. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/J_/J_D9clwKidN28hnVB1O3zEfKDwg90Usdb5ToKiPq_aw.cache +0 -0
  90. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ji/JitNKkP1dYdu9ObSdIkkEAsiFxEmRO5oy1UIyhT_hYs.cache +0 -0
  91. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Jq/JqTLVvnY2AgGkHftWPwqt_HkbwhYRsmgHxk37VqKJAY.cache +0 -0
  92. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/QX/QXcp8DweOJ6BfMedGMfeHvVXv2hjDIleln1LSJk7vOE.cache +2 -0
  93. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Qy/Qy1ldbz6vKa_fv4E4ByxWslKFoV1qReQR5DKJ525z88.cache +1 -0
  94. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Rl/RlCJ_X5xFsE3VBDhkYrY7r_R6sMgiAc03cT8nr7Q2vY.cache +0 -0
  95. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ta/TaYxNn81MhqC3DnMC6_y_Q7xap5Ntn4ggFo94EUaiak.cache +0 -0
  96. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Wq/WqbLVKOcTMZtttygYt_ncr1mGIDrzevSTaPGNmzV1D8.cache +1 -0
  97. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/YF/YF60qiQ28QMoYDrLmrbHWZr7X7bl5MxVPR5QrrVCFak.cache +1 -0
  98. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Yf/YfJJZvm_NONHd4eCasDibCcRapZ_WYIO5MUxSUUbYFk.cache +0 -0
  99. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Z0/Z0e47cT2a-21U-w-3gkbgqC3o5jWnEzOB8vW06aJH1E.cache +0 -0
  100. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_u/_uy-z8SVnhffUNelRxbPDL2aAUPb_GbqREXVsfy8uGc.cache +0 -0
  101. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dL/dL7SLUWUIeVdyA1UuH-rvif0nzesOar3LdEtqzdb4bE.cache +0 -0
  102. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/f8/f8WT8jqR1qNIdQaRDpXbyLN7E5AWkbYFBwdh9Ozk7gk.cache +1 -0
  103. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/hk/hk2YB6skvc72qL4IzzQKU8Emyfe5vARjoD1bvQTw4zE.cache +1 -0
  104. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iO/iOpDp_7ZvBNO5WIpTmqNewUl9bB2satqXWulyNvAaX8.cache +0 -0
  105. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ii/iiJRBZIsxKiwyzU_Z7UtQeUTXMRJRPTreTKRvAWO7_8.cache +1 -0
  106. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mj/mjuMepngMLrtgilLlJ9oTTSqoGO1YUww1rXphQ1pOm4.cache +0 -0
  107. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qo/qo6SpT75QykYB63Aqq5bgzpXyNU1Y4dGFvCCJgoWQpE.cache +1 -0
  108. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sp/sprzBMBliJDI__s-0D3q82tn1MpBkFV0N651hTr3XE8.cache +1 -0
  109. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tM/tM6A7CR8QluP_u4u59vN1GjSZGNqNH3TXkkNzb9EPXA.cache +0 -0
  110. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vO/vOXN0mER62j4JiPpMTSVS7MMqs0067cZx14vD5B8qiQ.cache +0 -0
  111. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zz/zzlQ_kom0liFOvGYDcjtVw6yAHOyA-bbzP8f0e_Tq1A.cache +1 -0
  112. data/spec/factories.rb +28 -0
  113. data/spec/generators/application_owner_generator_spec.rb +20 -0
  114. data/spec/generators/migration_generator_spec.rb +20 -0
  115. data/spec/generators/previous_refresh_token_generator_spec.rb +20 -0
  116. data/spec/generators/templates/routes.rb +3 -0
  117. data/spec/generators/tmp/dummy/db/migrate/20161012132809_create_doorkeeper_tables.rb +59 -0
  118. data/spec/helpers/doorkeeper/dashboard_helper_spec.rb +24 -0
  119. data/spec/lib/config_spec.rb +334 -0
  120. data/spec/lib/doorkeeper_spec.rb +28 -0
  121. data/spec/lib/models/expirable_spec.rb +51 -0
  122. data/spec/lib/models/revocable_spec.rb +59 -0
  123. data/spec/lib/models/scopes_spec.rb +43 -0
  124. data/spec/lib/oauth/authorization/uri_builder_spec.rb +42 -0
  125. data/spec/lib/oauth/authorization_code_request_spec.rb +80 -0
  126. data/spec/lib/oauth/client/credentials_spec.rb +47 -0
  127. data/spec/lib/oauth/client/methods_spec.rb +54 -0
  128. data/spec/lib/oauth/client_credentials/creator_spec.rb +44 -0
  129. data/spec/lib/oauth/client_credentials/issuer_spec.rb +86 -0
  130. data/spec/lib/oauth/client_credentials/validation_spec.rb +54 -0
  131. data/spec/lib/oauth/client_credentials_integration_spec.rb +27 -0
  132. data/spec/lib/oauth/client_credentials_request_spec.rb +104 -0
  133. data/spec/lib/oauth/client_spec.rb +39 -0
  134. data/spec/lib/oauth/code_request_spec.rb +45 -0
  135. data/spec/lib/oauth/code_response_spec.rb +34 -0
  136. data/spec/lib/oauth/error_response_spec.rb +61 -0
  137. data/spec/lib/oauth/error_spec.rb +23 -0
  138. data/spec/lib/oauth/forbidden_token_response_spec.rb +23 -0
  139. data/spec/lib/oauth/helpers/scope_checker_spec.rb +64 -0
  140. data/spec/lib/oauth/helpers/unique_token_spec.rb +20 -0
  141. data/spec/lib/oauth/helpers/uri_checker_spec.rb +104 -0
  142. data/spec/lib/oauth/invalid_token_response_spec.rb +28 -0
  143. data/spec/lib/oauth/password_access_token_request_spec.rb +90 -0
  144. data/spec/lib/oauth/pre_authorization_spec.rb +155 -0
  145. data/spec/lib/oauth/refresh_token_request_spec.rb +154 -0
  146. data/spec/lib/oauth/scopes_spec.rb +122 -0
  147. data/spec/lib/oauth/token_request_spec.rb +98 -0
  148. data/spec/lib/oauth/token_response_spec.rb +85 -0
  149. data/spec/lib/oauth/token_spec.rb +116 -0
  150. data/spec/lib/request/strategy_spec.rb +53 -0
  151. data/spec/lib/server_spec.rb +52 -0
  152. data/spec/models/doorkeeper/access_grant_spec.rb +36 -0
  153. data/spec/models/doorkeeper/access_token_spec.rb +394 -0
  154. data/spec/models/doorkeeper/application_spec.rb +179 -0
  155. data/spec/requests/applications/applications_request_spec.rb +94 -0
  156. data/spec/requests/applications/authorized_applications_spec.rb +30 -0
  157. data/spec/requests/endpoints/authorization_spec.rb +72 -0
  158. data/spec/requests/endpoints/token_spec.rb +64 -0
  159. data/spec/requests/flows/authorization_code_errors_spec.rb +66 -0
  160. data/spec/requests/flows/authorization_code_spec.rb +156 -0
  161. data/spec/requests/flows/client_credentials_spec.rb +58 -0
  162. data/spec/requests/flows/implicit_grant_errors_spec.rb +32 -0
  163. data/spec/requests/flows/implicit_grant_spec.rb +61 -0
  164. data/spec/requests/flows/password_spec.rb +115 -0
  165. data/spec/requests/flows/refresh_token_spec.rb +174 -0
  166. data/spec/requests/flows/revoke_token_spec.rb +157 -0
  167. data/spec/requests/flows/skip_authorization_spec.rb +59 -0
  168. data/spec/requests/protected_resources/metal_spec.rb +14 -0
  169. data/spec/requests/protected_resources/private_api_spec.rb +81 -0
  170. data/spec/routing/custom_controller_routes_spec.rb +71 -0
  171. data/spec/routing/default_routes_spec.rb +35 -0
  172. data/spec/routing/scoped_routes_spec.rb +31 -0
  173. data/spec/spec_helper.rb +2 -0
  174. data/spec/spec_helper_integration.rb +50 -0
  175. data/spec/stubs/config/application.rb +29 -0
  176. data/spec/stubs/config/initializers/db.rb +74 -0
  177. data/spec/stubs/generators/application_owner_generator_spec.rb +20 -0
  178. data/spec/stubs/generators/migration_generator_spec.rb +20 -0
  179. data/spec/stubs/generators/previous_refresh_token_generator_spec.rb +20 -0
  180. data/spec/stubs/generators/tmp/dummy/db/migrate/20161012132810_add_owner_to_application.rb +9 -0
  181. data/spec/stubs/models/user.rb +11 -0
  182. data/spec/stubs/spec_helper_integration.rb +50 -0
  183. data/spec/stubs/support/sequel.rb +0 -0
  184. data/spec/support/dependencies/factory_girl.rb +2 -0
  185. data/spec/support/helpers/access_token_request_helper.rb +11 -0
  186. data/spec/support/helpers/authorization_request_helper.rb +41 -0
  187. data/spec/support/helpers/config_helper.rb +9 -0
  188. data/spec/support/helpers/model_helper.rb +67 -0
  189. data/spec/support/helpers/request_spec_helper.rb +76 -0
  190. data/spec/support/helpers/url_helper.rb +55 -0
  191. data/spec/support/http_method_shim.rb +24 -0
  192. data/spec/support/orm/active_record.rb +3 -0
  193. data/spec/support/orm/sequel.rb +0 -0
  194. data/spec/support/shared/controllers_shared_context.rb +69 -0
  195. data/spec/support/shared/models_shared_examples.rb +52 -0
  196. data/spec/validators/redirect_uri_validator_spec.rb +78 -0
  197. metadata +570 -0
@@ -0,0 +1,394 @@
1
+ require 'spec_helper_integration'
2
+
3
+ module Doorkeeper
4
+ describe AccessToken do
5
+ subject { FactoryGirl.build(:access_token) }
6
+
7
+ it { expect(subject).to be_valid }
8
+
9
+ it_behaves_like 'an accessible token'
10
+ it_behaves_like 'a revocable token'
11
+ it_behaves_like 'a unique token' do
12
+ let(:factory_name) { :access_token }
13
+ end
14
+
15
+ module CustomGeneratorArgs
16
+ def self.generate
17
+ end
18
+ end
19
+
20
+ describe :generate_token do
21
+ it 'generates a token using the default method' do
22
+ FactoryGirl.create :access_token
23
+
24
+ token = FactoryGirl.create :access_token
25
+ expect(token.token).to be_a(String)
26
+ end
27
+
28
+ it 'generates a token using a custom object' do
29
+ eigenclass = class << CustomGeneratorArgs; self; end
30
+ eigenclass.class_eval do
31
+ remove_method :generate
32
+ end
33
+ module CustomGeneratorArgs
34
+ def self.generate(opts = {})
35
+ "custom_generator_token_#{opts[:resource_owner_id]}"
36
+ end
37
+ end
38
+
39
+ Doorkeeper.configure do
40
+ orm DOORKEEPER_ORM
41
+ access_token_generator "Doorkeeper::CustomGeneratorArgs"
42
+ end
43
+
44
+ token = FactoryGirl.create :access_token
45
+ expect(token.token).to match(%r{custom_generator_token_\d+})
46
+ end
47
+
48
+ it 'allows the custom generator to access the application details' do
49
+ eigenclass = class << CustomGeneratorArgs; self; end
50
+ eigenclass.class_eval do
51
+ remove_method :generate
52
+ end
53
+ module CustomGeneratorArgs
54
+ def self.generate(opts = {})
55
+ "custom_generator_token_#{opts[:application].name}"
56
+ end
57
+ end
58
+
59
+ Doorkeeper.configure do
60
+ orm DOORKEEPER_ORM
61
+ access_token_generator "Doorkeeper::CustomGeneratorArgs"
62
+ end
63
+
64
+ token = FactoryGirl.create :access_token
65
+ expect(token.token).to match(%r{custom_generator_token_Application \d+})
66
+ end
67
+
68
+ it 'allows the custom generator to access the scopes' do
69
+ eigenclass = class << CustomGeneratorArgs; self; end
70
+ eigenclass.class_eval do
71
+ remove_method :generate
72
+ end
73
+ module CustomGeneratorArgs
74
+ def self.generate(opts = {})
75
+ "custom_generator_token_#{opts[:scopes].count}_#{opts[:scopes]}"
76
+ end
77
+ end
78
+
79
+ Doorkeeper.configure do
80
+ orm DOORKEEPER_ORM
81
+ access_token_generator "Doorkeeper::CustomGeneratorArgs"
82
+ end
83
+
84
+ token = FactoryGirl.create :access_token, scopes: 'public write'
85
+
86
+ expect(token.token).to eq 'custom_generator_token_2_public write'
87
+ end
88
+
89
+ it 'allows the custom generator to access the expiry length' do
90
+ eigenclass = class << CustomGeneratorArgs; self; end
91
+ eigenclass.class_eval do
92
+ remove_method :generate
93
+ end
94
+ module CustomGeneratorArgs
95
+ def self.generate(opts = {})
96
+ "custom_generator_token_#{opts[:expires_in]}"
97
+ end
98
+ end
99
+
100
+ Doorkeeper.configure do
101
+ orm DOORKEEPER_ORM
102
+ access_token_generator "Doorkeeper::CustomGeneratorArgs"
103
+ end
104
+
105
+ token = FactoryGirl.create :access_token
106
+ expect(token.token).to eq 'custom_generator_token_7200'
107
+ end
108
+
109
+ it 'allows the custom generator to access the created time' do
110
+ module CustomGeneratorArgs
111
+ def self.generate(opts = {})
112
+ "custom_generator_token_#{opts[:created_at].to_i}"
113
+ end
114
+ end
115
+
116
+ Doorkeeper.configure do
117
+ orm DOORKEEPER_ORM
118
+ access_token_generator "Doorkeeper::CustomGeneratorArgs"
119
+ end
120
+
121
+ token = FactoryGirl.create :access_token
122
+ created_at = token.created_at
123
+ expect(token.token).to eq "custom_generator_token_#{created_at.to_i}"
124
+ end
125
+
126
+ it 'raises an error if the custom object does not support generate' do
127
+ module NoGenerate
128
+ end
129
+
130
+ Doorkeeper.configure do
131
+ orm DOORKEEPER_ORM
132
+ access_token_generator "Doorkeeper::NoGenerate"
133
+ end
134
+
135
+ expect { FactoryGirl.create :access_token }.to(
136
+ raise_error(Doorkeeper::Errors::UnableToGenerateToken))
137
+ end
138
+
139
+ it 'raises an error if the custom object does not exist' do
140
+ Doorkeeper.configure do
141
+ orm DOORKEEPER_ORM
142
+ access_token_generator "Doorkeeper::NotReal"
143
+ end
144
+
145
+ expect { FactoryGirl.create :access_token }.to(
146
+ raise_error(Doorkeeper::Errors::TokenGeneratorNotFound))
147
+ end
148
+ end
149
+
150
+ describe :refresh_token do
151
+ it 'has empty refresh token if it was not required' do
152
+ token = FactoryGirl.create :access_token
153
+ expect(token.refresh_token).to be_nil
154
+ end
155
+
156
+ it 'generates a refresh token if it was requested' do
157
+ token = FactoryGirl.create :access_token, use_refresh_token: true
158
+ expect(token.refresh_token).not_to be_nil
159
+ end
160
+
161
+ it 'is not valid if token exists' do
162
+ token1 = FactoryGirl.create :access_token, use_refresh_token: true
163
+ token2 = FactoryGirl.create :access_token, use_refresh_token: true
164
+ token2.refresh_token = token1.refresh_token
165
+ expect(token2).not_to be_valid
166
+ end
167
+
168
+ it 'expects database to raise an error if refresh tokens are the same' do
169
+ token1 = FactoryGirl.create :access_token, use_refresh_token: true
170
+ token2 = FactoryGirl.create :access_token, use_refresh_token: true
171
+ expect do
172
+ token2.refresh_token = token1.refresh_token
173
+ token2.save(validate: false)
174
+ end.to raise_error(uniqueness_error)
175
+ end
176
+ end
177
+
178
+ describe 'validations' do
179
+ it 'is valid without resource_owner_id' do
180
+ # For client credentials flow
181
+ subject.resource_owner_id = nil
182
+ expect(subject).to be_valid
183
+ end
184
+
185
+ it 'is valid without application_id' do
186
+ # For resource owner credentials flow
187
+ subject.application_id = nil
188
+ expect(subject).to be_valid
189
+ end
190
+ end
191
+
192
+ describe '#same_credential?' do
193
+
194
+ context 'with default parameters' do
195
+
196
+ let(:resource_owner_id) { 100 }
197
+ let(:application) { FactoryGirl.create :application }
198
+ let(:default_attributes) do
199
+ { application: application, resource_owner_id: resource_owner_id }
200
+ end
201
+ let(:access_token1) { FactoryGirl.create :access_token, default_attributes }
202
+
203
+ context 'the second token has the same owner and same app' do
204
+ let(:access_token2) { FactoryGirl.create :access_token, default_attributes }
205
+ it 'success' do
206
+ expect(access_token1.same_credential?(access_token2)).to be_truthy
207
+ end
208
+ end
209
+
210
+ context 'the second token has same owner and different app' do
211
+ let(:other_application) { FactoryGirl.create :application }
212
+ let(:access_token2) { FactoryGirl.create :access_token, application: other_application, resource_owner_id: resource_owner_id }
213
+
214
+ it 'fail' do
215
+ expect(access_token1.same_credential?(access_token2)).to be_falsey
216
+ end
217
+ end
218
+
219
+ context 'the second token has different owner and different app' do
220
+
221
+ let(:other_application) { FactoryGirl.create :application }
222
+ let(:access_token2) { FactoryGirl.create :access_token, application: other_application, resource_owner_id: 42 }
223
+
224
+ it 'fail' do
225
+ expect(access_token1.same_credential?(access_token2)).to be_falsey
226
+ end
227
+ end
228
+
229
+ context 'the second token has different owner and same app' do
230
+ let(:access_token2) { FactoryGirl.create :access_token, application: application, resource_owner_id: 42 }
231
+
232
+ it 'fail' do
233
+ expect(access_token1.same_credential?(access_token2)).to be_falsey
234
+ end
235
+ end
236
+ end
237
+ end
238
+
239
+ describe '#acceptable?' do
240
+ context 'a token that is not accessible' do
241
+ let(:token) { FactoryGirl.create(:access_token, created_at: 6.hours.ago) }
242
+
243
+ it 'should return false' do
244
+ expect(token.acceptable?(nil)).to be false
245
+ end
246
+ end
247
+
248
+ context 'a token that has the incorrect scopes' do
249
+ let(:token) { FactoryGirl.create(:access_token) }
250
+
251
+ it 'should return false' do
252
+ expect(token.acceptable?(['public'])).to be false
253
+ end
254
+ end
255
+
256
+ context 'a token is acceptable with the correct scopes' do
257
+ let(:token) do
258
+ token = FactoryGirl.create(:access_token)
259
+ token[:scopes] = 'public'
260
+ token
261
+ end
262
+
263
+ it 'should return true' do
264
+ expect(token.acceptable?(['public'])).to be true
265
+ end
266
+ end
267
+ end
268
+
269
+ describe '.revoke_all_for' do
270
+ let(:resource_owner) { double(id: 100) }
271
+ let(:application) { FactoryGirl.create :application }
272
+ let(:default_attributes) do
273
+ { application: application, resource_owner_id: resource_owner.id }
274
+ end
275
+
276
+ it 'revokes all tokens for given application and resource owner' do
277
+ FactoryGirl.create :access_token, default_attributes
278
+ AccessToken.revoke_all_for application.id, resource_owner
279
+ AccessToken.all.each do |token|
280
+ expect(token).to be_revoked
281
+ end
282
+ end
283
+
284
+ it 'matches application' do
285
+ FactoryGirl.create :access_token, default_attributes.merge(application: FactoryGirl.create(:application))
286
+ AccessToken.revoke_all_for application.id, resource_owner
287
+ expect(AccessToken.all).not_to be_empty
288
+ end
289
+
290
+ it 'matches resource owner' do
291
+ FactoryGirl.create :access_token, default_attributes.merge(resource_owner_id: 90)
292
+ AccessToken.revoke_all_for application.id, resource_owner
293
+ expect(AccessToken.all).not_to be_empty
294
+ end
295
+ end
296
+
297
+ describe '.matching_token_for' do
298
+ let(:resource_owner_id) { 100 }
299
+ let(:application) { FactoryGirl.create :application }
300
+ let(:scopes) { Doorkeeper::OAuth::Scopes.from_string('public write') }
301
+ let(:default_attributes) do
302
+ {
303
+ application: application,
304
+ resource_owner_id: resource_owner_id,
305
+ scopes: scopes.to_s
306
+ }
307
+ end
308
+
309
+ it 'returns only one token' do
310
+ token = FactoryGirl.create :access_token, default_attributes
311
+ last_token = AccessToken.matching_token_for(application, resource_owner_id, scopes)
312
+ expect(last_token).to eq(token)
313
+ end
314
+
315
+ it 'accepts resource owner as object' do
316
+ resource_owner = double(to_key: true, id: 100)
317
+ token = FactoryGirl.create :access_token, default_attributes
318
+ last_token = AccessToken.matching_token_for(application, resource_owner, scopes)
319
+ expect(last_token).to eq(token)
320
+ end
321
+
322
+ it 'accepts nil as resource owner' do
323
+ token = FactoryGirl.create :access_token, default_attributes.merge(resource_owner_id: nil)
324
+ last_token = AccessToken.matching_token_for(application, nil, scopes)
325
+ expect(last_token).to eq(token)
326
+ end
327
+
328
+ it 'excludes revoked tokens' do
329
+ FactoryGirl.create :access_token, default_attributes.merge(revoked_at: 1.day.ago)
330
+ last_token = AccessToken.matching_token_for(application, resource_owner_id, scopes)
331
+ expect(last_token).to be_nil
332
+ end
333
+
334
+ it 'matches the application' do
335
+ FactoryGirl.create :access_token, default_attributes.merge(application: FactoryGirl.create(:application))
336
+ last_token = AccessToken.matching_token_for(application, resource_owner_id, scopes)
337
+ expect(last_token).to be_nil
338
+ end
339
+
340
+ it 'matches the resource owner' do
341
+ FactoryGirl.create :access_token, default_attributes.merge(resource_owner_id: 2)
342
+ last_token = AccessToken.matching_token_for(application, resource_owner_id, scopes)
343
+ expect(last_token).to be_nil
344
+ end
345
+
346
+ it 'matches token with fewer scopes' do
347
+ FactoryGirl.create :access_token, default_attributes.merge(scopes: 'public')
348
+ last_token = AccessToken.matching_token_for(application, resource_owner_id, scopes)
349
+ expect(last_token).to be_nil
350
+ end
351
+
352
+ it 'matches token with different scopes' do
353
+ FactoryGirl.create :access_token, default_attributes.merge(scopes: 'public email')
354
+ last_token = AccessToken.matching_token_for(application, resource_owner_id, scopes)
355
+ expect(last_token).to be_nil
356
+ end
357
+
358
+ it 'matches token with more scopes' do
359
+ FactoryGirl.create :access_token, default_attributes.merge(scopes: 'public write email')
360
+ last_token = AccessToken.matching_token_for(application, resource_owner_id, scopes)
361
+ expect(last_token).to be_nil
362
+ end
363
+
364
+ it 'matches application scopes' do
365
+ application = FactoryGirl.create :application, scopes: "private read"
366
+ FactoryGirl.create :access_token, default_attributes.merge(
367
+ application: application
368
+ )
369
+ last_token = AccessToken.matching_token_for(application, resource_owner_id, scopes)
370
+ expect(last_token).to be_nil
371
+ end
372
+
373
+ it 'returns the last created token' do
374
+ FactoryGirl.create :access_token, default_attributes.merge(created_at: 1.day.ago)
375
+ token = FactoryGirl.create :access_token, default_attributes
376
+ last_token = AccessToken.matching_token_for(application, resource_owner_id, scopes)
377
+ expect(last_token).to eq(token)
378
+ end
379
+
380
+ it 'returns as_json hash' do
381
+ token = FactoryGirl.create :access_token, default_attributes
382
+ token_hash = {
383
+ resource_owner_id: token.resource_owner_id,
384
+ scopes: token.scopes,
385
+ expires_in_seconds: token.expires_in_seconds,
386
+ application: { uid: token.application.uid },
387
+ created_at: token.created_at.to_i,
388
+ }
389
+ expect(token.as_json).to eq token_hash
390
+ end
391
+ end
392
+
393
+ end
394
+ end
@@ -0,0 +1,179 @@
1
+ require 'spec_helper_integration'
2
+
3
+ module Doorkeeper
4
+ describe Application do
5
+ let(:require_owner) { Doorkeeper.configuration.instance_variable_set('@confirm_application_owner', true) }
6
+ let(:unset_require_owner) { Doorkeeper.configuration.instance_variable_set('@confirm_application_owner', false) }
7
+ let(:new_application) { FactoryGirl.build(:application) }
8
+
9
+ let(:uid) { SecureRandom.hex(8) }
10
+ let(:secret) { SecureRandom.hex(8) }
11
+
12
+ context 'application_owner is enabled' do
13
+ before do
14
+ Doorkeeper.configure do
15
+ orm DOORKEEPER_ORM
16
+ enable_application_owner
17
+ end
18
+ end
19
+
20
+ context 'application owner is not required' do
21
+ before(:each) do
22
+ unset_require_owner
23
+ end
24
+
25
+ it 'is valid given valid attributes' do
26
+ expect(new_application).to be_valid
27
+ end
28
+ end
29
+
30
+ context 'application owner is required' do
31
+ before(:each) do
32
+ require_owner
33
+ @owner = FactoryGirl.build_stubbed(:doorkeeper_testing_user)
34
+ end
35
+
36
+ it 'is invalid without an owner' do
37
+ expect(new_application).not_to be_valid
38
+ end
39
+
40
+ it 'is valid with an owner' do
41
+ new_application.owner = @owner
42
+ expect(new_application).to be_valid
43
+ end
44
+ end
45
+ end
46
+
47
+ it 'is invalid without a name' do
48
+ new_application.name = nil
49
+ expect(new_application).not_to be_valid
50
+ end
51
+
52
+ it 'generates uid on create' do
53
+ expect(new_application.uid).to be_nil
54
+ new_application.save
55
+ expect(new_application.uid).not_to be_nil
56
+ end
57
+
58
+ it 'generates uid on create if an empty string' do
59
+ new_application.uid = ''
60
+ new_application.save
61
+ expect(new_application.uid).not_to be_blank
62
+ end
63
+
64
+ it 'generates uid on create unless one is set' do
65
+ new_application.uid = uid
66
+ new_application.save
67
+ expect(new_application.uid).to eq(uid)
68
+ end
69
+
70
+ it 'is invalid without uid' do
71
+ new_application.save
72
+ new_application.uid = nil
73
+ expect(new_application).not_to be_valid
74
+ end
75
+
76
+ it 'is invalid without redirect_uri' do
77
+ new_application.save
78
+ new_application.redirect_uri = nil
79
+ expect(new_application).not_to be_valid
80
+ end
81
+
82
+ it 'checks uniqueness of uid' do
83
+ app1 = FactoryGirl.create(:application)
84
+ app2 = FactoryGirl.create(:application)
85
+ app2.uid = app1.uid
86
+ expect(app2).not_to be_valid
87
+ end
88
+
89
+ it 'expects database to throw an error when uids are the same' do
90
+ app1 = FactoryGirl.create(:application)
91
+ app2 = FactoryGirl.create(:application)
92
+ app2.uid = app1.uid
93
+ expect { app2.save!(validate: false) }.to raise_error(uniqueness_error)
94
+ end
95
+
96
+ it 'generate secret on create' do
97
+ expect(new_application.secret).to be_nil
98
+ new_application.save
99
+ expect(new_application.secret).not_to be_nil
100
+ end
101
+
102
+ it 'generate secret on create if is blank string' do
103
+ new_application.secret = ''
104
+ new_application.save
105
+ expect(new_application.secret).not_to be_blank
106
+ end
107
+
108
+ it 'generate secret on create unless one is set' do
109
+ new_application.secret = secret
110
+ new_application.save
111
+ expect(new_application.secret).to eq(secret)
112
+ end
113
+
114
+ it 'is invalid without secret' do
115
+ new_application.save
116
+ new_application.secret = nil
117
+ expect(new_application).not_to be_valid
118
+ end
119
+
120
+ describe 'destroy related models on cascade' do
121
+ before(:each) do
122
+ new_application.save
123
+ end
124
+
125
+ it 'should destroy its access grants' do
126
+ FactoryGirl.create(:access_grant, application: new_application)
127
+ expect { new_application.destroy }.to change { Doorkeeper::AccessGrant.count }.by(-1)
128
+ end
129
+
130
+ it 'should destroy its access tokens' do
131
+ FactoryGirl.create(:access_token, application: new_application)
132
+ FactoryGirl.create(:access_token, application: new_application, revoked_at: Time.now.utc)
133
+ expect do
134
+ new_application.destroy
135
+ end.to change { Doorkeeper::AccessToken.count }.by(-2)
136
+ end
137
+ end
138
+
139
+ describe :authorized_for do
140
+ let(:resource_owner) { double(:resource_owner, id: 10) }
141
+
142
+ it 'is empty if the application is not authorized for anyone' do
143
+ expect(Application.authorized_for(resource_owner)).to be_empty
144
+ end
145
+
146
+ it 'returns only application for a specific resource owner' do
147
+ FactoryGirl.create(:access_token, resource_owner_id: resource_owner.id + 1)
148
+ token = FactoryGirl.create(:access_token, resource_owner_id: resource_owner.id)
149
+ expect(Application.authorized_for(resource_owner)).to eq([token.application])
150
+ end
151
+
152
+ it 'excludes revoked tokens' do
153
+ FactoryGirl.create(:access_token, resource_owner_id: resource_owner.id, revoked_at: 2.days.ago)
154
+ expect(Application.authorized_for(resource_owner)).to be_empty
155
+ end
156
+
157
+ it 'returns all applications that have been authorized' do
158
+ token1 = FactoryGirl.create(:access_token, resource_owner_id: resource_owner.id)
159
+ token2 = FactoryGirl.create(:access_token, resource_owner_id: resource_owner.id)
160
+ expect(Application.authorized_for(resource_owner)).to eq([token1.application, token2.application])
161
+ end
162
+
163
+ it 'returns only one application even if it has been authorized twice' do
164
+ application = FactoryGirl.create(:application)
165
+ FactoryGirl.create(:access_token, resource_owner_id: resource_owner.id, application: application)
166
+ FactoryGirl.create(:access_token, resource_owner_id: resource_owner.id, application: application)
167
+ expect(Application.authorized_for(resource_owner)).to eq([application])
168
+ end
169
+ end
170
+
171
+ describe :authenticate do
172
+ it 'finds the application via uid/secret' do
173
+ app = FactoryGirl.create :application
174
+ authenticated = Application.by_uid_and_secret(app.uid, app.secret)
175
+ expect(authenticated).to eq(app)
176
+ end
177
+ end
178
+ end
179
+ end
@@ -0,0 +1,94 @@
1
+ require 'spec_helper_integration'
2
+
3
+ feature 'Adding applications' do
4
+ context 'in application form' do
5
+ background do
6
+ visit '/oauth/applications/new'
7
+ end
8
+
9
+ scenario 'adding a valid app' do
10
+ fill_in 'doorkeeper_application[name]', with: 'My Application'
11
+ fill_in 'doorkeeper_application[redirect_uri]',
12
+ with: 'https://example.com'
13
+
14
+ click_button 'Submit'
15
+ i_should_see 'Application created'
16
+ i_should_see 'My Application'
17
+ end
18
+
19
+ scenario 'adding invalid app' do
20
+ click_button 'Submit'
21
+ i_should_see 'Whoops! Check your form for possible errors'
22
+ end
23
+ end
24
+ end
25
+
26
+ feature 'Listing applications' do
27
+ background do
28
+ FactoryGirl.create :application, name: 'Oauth Dude'
29
+ FactoryGirl.create :application, name: 'Awesome App'
30
+ end
31
+
32
+ scenario 'application list' do
33
+ visit '/oauth/applications'
34
+ i_should_see 'Awesome App'
35
+ i_should_see 'Oauth Dude'
36
+ end
37
+ end
38
+
39
+ feature 'Show application' do
40
+ given :app do
41
+ FactoryGirl.create :application, name: 'Just another oauth app'
42
+ end
43
+
44
+ scenario 'visiting application page' do
45
+ visit "/oauth/applications/#{app.id}"
46
+ i_should_see 'Just another oauth app'
47
+ end
48
+ end
49
+
50
+ feature 'Edit application' do
51
+ let :app do
52
+ FactoryGirl.create :application, name: 'OMG my app'
53
+ end
54
+
55
+ background do
56
+ visit "/oauth/applications/#{app.id}/edit"
57
+ end
58
+
59
+ scenario 'updating a valid app' do
60
+ fill_in 'doorkeeper_application[name]', with: 'Serious app'
61
+ click_button 'Submit'
62
+ i_should_see 'Application updated'
63
+ i_should_see 'Serious app'
64
+ i_should_not_see 'OMG my app'
65
+ end
66
+
67
+ scenario 'updating an invalid app' do
68
+ fill_in 'doorkeeper_application[name]', with: ''
69
+ click_button 'Submit'
70
+ i_should_see 'Whoops! Check your form for possible errors'
71
+ end
72
+ end
73
+
74
+ feature 'Remove application' do
75
+ background do
76
+ @app = FactoryGirl.create :application
77
+ end
78
+
79
+ scenario 'deleting an application from list' do
80
+ visit '/oauth/applications'
81
+ i_should_see @app.name
82
+ within(:css, "tr#application_#{@app.id}") do
83
+ click_button 'Destroy'
84
+ end
85
+ i_should_see 'Application deleted'
86
+ i_should_not_see @app.name
87
+ end
88
+
89
+ scenario 'deleting an application from show' do
90
+ visit "/oauth/applications/#{@app.id}"
91
+ click_button 'Destroy'
92
+ i_should_see 'Application deleted'
93
+ end
94
+ end
@@ -0,0 +1,30 @@
1
+ require 'spec_helper_integration'
2
+
3
+ feature 'Authorized applications' do
4
+ background do
5
+ @user = User.create!(name: 'Joe', password: 'sekret')
6
+ @client = client_exists(name: 'Amazing Client App')
7
+ resource_owner_is_authenticated @user
8
+ client_is_authorized @client, @user
9
+ end
10
+
11
+ scenario 'display user\'s authorized applications' do
12
+ visit '/oauth/authorized_applications'
13
+ i_should_see 'Amazing Client App'
14
+ end
15
+
16
+ scenario 'do not display other user\'s authorized applications' do
17
+ client = client_exists(name: 'Another Client App')
18
+ client_is_authorized client, User.create!(name: 'Joe', password: 'sekret')
19
+ visit '/oauth/authorized_applications'
20
+ i_should_not_see 'Another Client App'
21
+ end
22
+
23
+ scenario 'user revoke access to application' do
24
+ visit '/oauth/authorized_applications'
25
+ i_should_see 'Amazing Client App'
26
+ click_on 'Revoke'
27
+ i_should_see 'Application revoked'
28
+ i_should_not_see 'Amazing Client App'
29
+ end
30
+ end