rodauth 1.21.0 → 2.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (200) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +182 -0
  3. data/MIT-LICENSE +1 -1
  4. data/README.rdoc +211 -79
  5. data/doc/account_expiration.rdoc +12 -26
  6. data/doc/active_sessions.rdoc +49 -0
  7. data/doc/audit_logging.rdoc +44 -0
  8. data/doc/base.rdoc +75 -128
  9. data/doc/change_login.rdoc +7 -14
  10. data/doc/change_password.rdoc +9 -13
  11. data/doc/change_password_notify.rdoc +2 -2
  12. data/doc/close_account.rdoc +9 -16
  13. data/doc/confirm_password.rdoc +12 -5
  14. data/doc/create_account.rdoc +11 -22
  15. data/doc/disallow_password_reuse.rdoc +6 -13
  16. data/doc/email_auth.rdoc +15 -14
  17. data/doc/email_base.rdoc +6 -15
  18. data/doc/guides/admin_activation.rdoc +46 -0
  19. data/doc/guides/already_authenticated.rdoc +10 -0
  20. data/doc/guides/alternative_login.rdoc +46 -0
  21. data/doc/guides/create_account_programmatically.rdoc +38 -0
  22. data/doc/guides/delay_password.rdoc +25 -0
  23. data/doc/guides/email_only.rdoc +16 -0
  24. data/doc/guides/i18n.rdoc +26 -0
  25. data/doc/{internals.rdoc → guides/internals.rdoc} +0 -0
  26. data/doc/guides/links.rdoc +12 -0
  27. data/doc/guides/login_return.rdoc +37 -0
  28. data/doc/guides/password_column.rdoc +25 -0
  29. data/doc/guides/password_confirmation.rdoc +37 -0
  30. data/doc/guides/password_requirements.rdoc +30 -0
  31. data/doc/guides/paths.rdoc +36 -0
  32. data/doc/guides/query_params.rdoc +9 -0
  33. data/doc/guides/redirects.rdoc +17 -0
  34. data/doc/guides/registration_field.rdoc +68 -0
  35. data/doc/guides/require_mfa.rdoc +30 -0
  36. data/doc/guides/reset_password_autologin.rdoc +21 -0
  37. data/doc/guides/status_column.rdoc +28 -0
  38. data/doc/guides/totp_or_recovery.rdoc +16 -0
  39. data/doc/http_basic_auth.rdoc +10 -1
  40. data/doc/jwt.rdoc +22 -22
  41. data/doc/jwt_cors.rdoc +22 -0
  42. data/doc/jwt_refresh.rdoc +18 -8
  43. data/doc/lockout.rdoc +17 -15
  44. data/doc/login.rdoc +10 -2
  45. data/doc/login_password_requirements_base.rdoc +15 -37
  46. data/doc/logout.rdoc +2 -2
  47. data/doc/otp.rdoc +25 -19
  48. data/doc/password_complexity.rdoc +10 -26
  49. data/doc/password_expiration.rdoc +11 -25
  50. data/doc/password_grace_period.rdoc +16 -2
  51. data/doc/recovery_codes.rdoc +18 -12
  52. data/doc/release_notes/1.22.0.txt +11 -0
  53. data/doc/release_notes/1.23.0.txt +32 -0
  54. data/doc/release_notes/2.0.0.txt +361 -0
  55. data/doc/release_notes/2.1.0.txt +31 -0
  56. data/doc/release_notes/2.2.0.txt +39 -0
  57. data/doc/remember.rdoc +40 -64
  58. data/doc/reset_password.rdoc +12 -9
  59. data/doc/session_expiration.rdoc +1 -0
  60. data/doc/single_session.rdoc +16 -25
  61. data/doc/sms_codes.rdoc +24 -14
  62. data/doc/two_factor_base.rdoc +60 -22
  63. data/doc/verify_account.rdoc +14 -12
  64. data/doc/verify_account_grace_period.rdoc +6 -2
  65. data/doc/verify_login_change.rdoc +9 -8
  66. data/doc/webauthn.rdoc +115 -0
  67. data/doc/webauthn_login.rdoc +15 -0
  68. data/doc/webauthn_verify_account.rdoc +9 -0
  69. data/javascript/webauthn_auth.js +45 -0
  70. data/javascript/webauthn_setup.js +35 -0
  71. data/lib/roda/plugins/rodauth.rb +1 -1
  72. data/lib/rodauth.rb +36 -28
  73. data/lib/rodauth/features/account_expiration.rb +5 -5
  74. data/lib/rodauth/features/active_sessions.rb +158 -0
  75. data/lib/rodauth/features/audit_logging.rb +98 -0
  76. data/lib/rodauth/features/base.rb +144 -43
  77. data/lib/rodauth/features/change_password_notify.rb +2 -2
  78. data/lib/rodauth/features/confirm_password.rb +40 -2
  79. data/lib/rodauth/features/create_account.rb +8 -13
  80. data/lib/rodauth/features/disallow_common_passwords.rb +1 -1
  81. data/lib/rodauth/features/disallow_password_reuse.rb +1 -1
  82. data/lib/rodauth/features/email_auth.rb +31 -30
  83. data/lib/rodauth/features/email_base.rb +9 -4
  84. data/lib/rodauth/features/http_basic_auth.rb +55 -35
  85. data/lib/rodauth/features/jwt.rb +63 -16
  86. data/lib/rodauth/features/jwt_cors.rb +53 -0
  87. data/lib/rodauth/features/jwt_refresh.rb +32 -9
  88. data/lib/rodauth/features/lockout.rb +12 -14
  89. data/lib/rodauth/features/login.rb +54 -10
  90. data/lib/rodauth/features/login_password_requirements_base.rb +4 -4
  91. data/lib/rodauth/features/otp.rb +77 -80
  92. data/lib/rodauth/features/password_complexity.rb +8 -13
  93. data/lib/rodauth/features/password_expiration.rb +2 -2
  94. data/lib/rodauth/features/password_grace_period.rb +17 -10
  95. data/lib/rodauth/features/recovery_codes.rb +49 -53
  96. data/lib/rodauth/features/remember.rb +11 -27
  97. data/lib/rodauth/features/reset_password.rb +26 -26
  98. data/lib/rodauth/features/session_expiration.rb +6 -4
  99. data/lib/rodauth/features/single_session.rb +8 -6
  100. data/lib/rodauth/features/sms_codes.rb +62 -72
  101. data/lib/rodauth/features/two_factor_base.rb +134 -30
  102. data/lib/rodauth/features/verify_account.rb +29 -21
  103. data/lib/rodauth/features/verify_account_grace_period.rb +18 -9
  104. data/lib/rodauth/features/verify_login_change.rb +12 -11
  105. data/lib/rodauth/features/webauthn.rb +505 -0
  106. data/lib/rodauth/features/webauthn_login.rb +70 -0
  107. data/lib/rodauth/features/webauthn_verify_account.rb +46 -0
  108. data/lib/rodauth/version.rb +2 -2
  109. data/templates/button.str +1 -3
  110. data/templates/change-login.str +1 -2
  111. data/templates/change-password.str +3 -5
  112. data/templates/close-account.str +2 -2
  113. data/templates/confirm-password.str +1 -1
  114. data/templates/create-account.str +1 -1
  115. data/templates/email-auth-email.str +1 -1
  116. data/templates/email-auth-request-form.str +2 -3
  117. data/templates/email-auth.str +1 -1
  118. data/templates/global-logout-field.str +6 -0
  119. data/templates/login-confirm-field.str +2 -4
  120. data/templates/login-display.str +3 -2
  121. data/templates/login-field.str +2 -4
  122. data/templates/login-form-footer.str +6 -0
  123. data/templates/login-form.str +7 -0
  124. data/templates/login.str +1 -9
  125. data/templates/logout.str +1 -1
  126. data/templates/multi-phase-login.str +3 -0
  127. data/templates/otp-auth-code-field.str +5 -3
  128. data/templates/otp-auth.str +1 -1
  129. data/templates/otp-disable.str +1 -1
  130. data/templates/otp-setup.str +3 -3
  131. data/templates/password-confirm-field.str +2 -4
  132. data/templates/password-field.str +2 -4
  133. data/templates/recovery-auth.str +3 -6
  134. data/templates/recovery-codes.str +1 -1
  135. data/templates/remember.str +15 -20
  136. data/templates/reset-password-email.str +1 -1
  137. data/templates/reset-password-request.str +3 -3
  138. data/templates/reset-password.str +1 -2
  139. data/templates/sms-auth.str +1 -1
  140. data/templates/sms-code-field.str +5 -3
  141. data/templates/sms-confirm.str +1 -2
  142. data/templates/sms-disable.str +1 -2
  143. data/templates/sms-request.str +1 -1
  144. data/templates/sms-setup.str +6 -4
  145. data/templates/two-factor-auth.str +5 -0
  146. data/templates/two-factor-disable.str +6 -0
  147. data/templates/two-factor-manage.str +16 -0
  148. data/templates/unlock-account-email.str +1 -1
  149. data/templates/unlock-account-request.str +4 -4
  150. data/templates/unlock-account.str +1 -1
  151. data/templates/verify-account-email.str +1 -1
  152. data/templates/verify-account-resend.str +3 -3
  153. data/templates/verify-account.str +1 -2
  154. data/templates/verify-login-change-email.str +2 -1
  155. data/templates/verify-login-change.str +1 -1
  156. data/templates/webauthn-auth.str +11 -0
  157. data/templates/webauthn-remove.str +14 -0
  158. data/templates/webauthn-setup.str +12 -0
  159. metadata +110 -52
  160. data/Rakefile +0 -179
  161. data/doc/verify_change_login.rdoc +0 -11
  162. data/lib/rodauth/features/verify_change_login.rb +0 -20
  163. data/spec/account_expiration_spec.rb +0 -225
  164. data/spec/all.rb +0 -1
  165. data/spec/change_login_spec.rb +0 -156
  166. data/spec/change_password_notify_spec.rb +0 -33
  167. data/spec/change_password_spec.rb +0 -202
  168. data/spec/close_account_spec.rb +0 -162
  169. data/spec/confirm_password_spec.rb +0 -70
  170. data/spec/create_account_spec.rb +0 -127
  171. data/spec/disallow_common_passwords_spec.rb +0 -93
  172. data/spec/disallow_password_reuse_spec.rb +0 -179
  173. data/spec/email_auth_spec.rb +0 -285
  174. data/spec/http_basic_auth_spec.rb +0 -143
  175. data/spec/jwt_refresh_spec.rb +0 -256
  176. data/spec/jwt_spec.rb +0 -235
  177. data/spec/lockout_spec.rb +0 -250
  178. data/spec/login_spec.rb +0 -328
  179. data/spec/migrate/001_tables.rb +0 -184
  180. data/spec/migrate/002_account_password_hash_column.rb +0 -11
  181. data/spec/migrate_password/001_tables.rb +0 -73
  182. data/spec/migrate_travis/001_tables.rb +0 -141
  183. data/spec/password_complexity_spec.rb +0 -109
  184. data/spec/password_expiration_spec.rb +0 -244
  185. data/spec/password_grace_period_spec.rb +0 -93
  186. data/spec/remember_spec.rb +0 -451
  187. data/spec/reset_password_spec.rb +0 -229
  188. data/spec/rodauth_spec.rb +0 -343
  189. data/spec/session_expiration_spec.rb +0 -58
  190. data/spec/single_session_spec.rb +0 -127
  191. data/spec/spec_helper.rb +0 -327
  192. data/spec/two_factor_spec.rb +0 -1462
  193. data/spec/update_password_hash_spec.rb +0 -40
  194. data/spec/verify_account_grace_period_spec.rb +0 -171
  195. data/spec/verify_account_spec.rb +0 -240
  196. data/spec/verify_change_login_spec.rb +0 -46
  197. data/spec/verify_login_change_spec.rb +0 -232
  198. data/spec/views/layout-other.str +0 -11
  199. data/spec/views/layout.str +0 -11
  200. data/spec/views/login.str +0 -21
@@ -1,33 +0,0 @@
1
- require File.expand_path("spec_helper", File.dirname(__FILE__))
2
-
3
- describe 'Rodauth change_password_notify feature' do
4
- it "should email when using change password" do
5
- rodauth do
6
- enable :login, :logout, :change_password_notify
7
- change_password_requires_password? false
8
- end
9
- roda do |r|
10
- r.rodauth
11
- r.root{view :content=>""}
12
- end
13
-
14
- login
15
- page.current_path.must_equal '/'
16
-
17
- visit '/change-password'
18
- fill_in 'New Password', :with=>'0123456'
19
- fill_in 'Confirm Password', :with=>'0123456'
20
- click_button 'Change Password'
21
- page.find('#notice_flash').text.must_equal "Your password has been changed"
22
-
23
- page.current_path.must_equal '/'
24
- msgs = Mail::TestMailer.deliveries
25
- msgs.length.must_equal 1
26
- msgs.first.to.first.must_equal 'foo@example.com'
27
- msgs.first.body.to_s.must_equal <<EMAIL
28
- Someone (hopefully you) has changed the password for the account
29
- associated to this email address.
30
- EMAIL
31
- msgs.clear
32
- end
33
- end
@@ -1,202 +0,0 @@
1
- require File.expand_path("spec_helper", File.dirname(__FILE__))
2
-
3
- describe 'Rodauth change_password feature' do
4
- [false, true].each do |ph|
5
- it "should support changing passwords for accounts #{'with account_password_hash_column' if ph}" do
6
- require_password = true
7
- rodauth do
8
- enable :login, :logout, :change_password
9
- account_password_hash_column :ph if ph
10
- change_password_requires_password?{require_password}
11
- end
12
- roda do |r|
13
- r.rodauth
14
- r.root{view :content=>""}
15
- end
16
-
17
- login
18
- page.current_path.must_equal '/'
19
-
20
- visit '/change-password'
21
- page.title.must_equal 'Change Password'
22
-
23
- fill_in 'Password', :with=>'0123456789'
24
- fill_in 'New Password', :with=>'0123456'
25
- fill_in 'Confirm Password', :with=>'0123456789'
26
- click_button 'Change Password'
27
- page.html.must_include("passwords do not match")
28
- page.find('#error_flash').text.must_equal "There was an error changing your password"
29
- page.current_path.must_equal '/change-password'
30
-
31
- fill_in 'Password', :with=>'0123456'
32
- fill_in 'New Password', :with=>'0123456'
33
- fill_in 'Confirm Password', :with=>'0123456'
34
- click_button 'Change Password'
35
- page.find('#error_flash').text.must_equal "There was an error changing your password"
36
- page.body.must_include 'invalid password'
37
- page.current_path.must_equal '/change-password'
38
-
39
- fill_in 'Password', :with=>'0123456789'
40
- fill_in 'New Password', :with=>'0123456789'
41
- fill_in 'Confirm Password', :with=>'0123456789'
42
- click_button 'Change Password'
43
- page.find('#error_flash').text.must_equal "There was an error changing your password"
44
- page.body.must_include 'invalid password, same as current password'
45
- page.current_path.must_equal '/change-password'
46
-
47
- fill_in 'Password', :with=>'0123456789'
48
- fill_in 'New Password', :with=>'0123456'
49
- fill_in 'Confirm Password', :with=>'0123456'
50
- click_button 'Change Password'
51
- page.find('#notice_flash').text.must_equal "Your password has been changed"
52
- page.current_path.must_equal '/'
53
-
54
- logout
55
- login
56
- page.html.must_include("invalid password")
57
- page.current_path.must_equal '/login'
58
-
59
- fill_in 'Password', :with=>'0123456'
60
- click_button 'Login'
61
- page.current_path.must_equal '/'
62
-
63
- require_password = false
64
- visit '/change-password'
65
- fill_in 'New Password', :with=>'012345678'
66
- fill_in 'Confirm Password', :with=>'012345678'
67
- click_button 'Change Password'
68
- page.find('#notice_flash').text.must_equal "Your password has been changed"
69
- page.current_path.must_equal '/'
70
-
71
- login(:pass=>'012345678')
72
- page.current_path.must_equal '/'
73
- end
74
- end
75
-
76
- it "should support changing passwords for accounts without confirmation" do
77
- rodauth do
78
- enable :login, :change_password
79
- modifications_require_password? false
80
- require_password_confirmation? false
81
- end
82
- roda do |r|
83
- r.rodauth
84
- r.root{view :content=>""}
85
- end
86
-
87
- login
88
- visit '/change-password'
89
- fill_in 'New Password', :with=>'012345678'
90
- click_button 'Change Password'
91
- page.find('#notice_flash').text.must_equal "Your password has been changed"
92
- end
93
-
94
- it "should support invalid_previous_password_message" do
95
- rodauth do
96
- enable :login, :logout, :change_password
97
- invalid_previous_password_message "Previous password not correct"
98
- end
99
- roda do |r|
100
- r.rodauth
101
- r.root{view :content=>""}
102
- end
103
-
104
- login
105
- page.current_path.must_equal '/'
106
-
107
- visit '/change-password'
108
- page.title.must_equal 'Change Password'
109
-
110
- fill_in 'Password', :with=>'0123456'
111
- fill_in 'New Password', :with=>'0123456'
112
- fill_in 'Confirm Password', :with=>'0123456'
113
- click_button 'Change Password'
114
- page.find('#error_flash').text.must_equal "There was an error changing your password"
115
- page.body.must_include 'Previous password not correct'
116
- page.current_path.must_equal '/change-password'
117
- end
118
-
119
- it "should support setting requirements for passwords" do
120
- rodauth do
121
- enable :login, :create_account, :change_password
122
- create_account_autologin? false
123
- password_meets_requirements? do |password|
124
- password =~ /banana/
125
- end
126
- end
127
- roda do |r|
128
- r.rodauth
129
- r.root{view :content=>""}
130
- end
131
-
132
- visit '/create-account'
133
- fill_in 'Login', :with=>'foo2@example.com'
134
- fill_in 'Confirm Login', :with=>'foo2@example.com'
135
- fill_in 'Password', :with=>'apple'
136
- fill_in 'Confirm Password', :with=>'apple'
137
- click_button 'Create Account'
138
- page.html.must_include("invalid password, does not meet requirements")
139
- page.find('#error_flash').text.must_equal "There was an error creating your account"
140
- page.current_path.must_equal '/create-account'
141
-
142
- fill_in 'Password', :with=>'banana'
143
- fill_in 'Confirm Password', :with=>'banana'
144
- click_button 'Create Account'
145
-
146
- login(:login=>'foo2@example.com', :pass=>'banana')
147
-
148
- visit '/change-password'
149
- fill_in 'Password', :with=>'banana'
150
- fill_in 'New Password', :with=>'apple'
151
- fill_in 'Confirm Password', :with=>'apple'
152
- click_button 'Change Password'
153
- page.html.must_include("invalid password, does not meet requirements")
154
- page.find('#error_flash').text.must_equal "There was an error changing your password"
155
- page.current_path.must_equal '/change-password'
156
-
157
- fill_in 'Password', :with=>'banana'
158
- fill_in 'New Password', :with=>'my_banana_3'
159
- fill_in 'Confirm Password', :with=>'my_banana_3'
160
- click_button 'Change Password'
161
- page.current_path.must_equal '/'
162
- end
163
-
164
- it "should support changing passwords for accounts via jwt" do
165
- require_password = true
166
- rodauth do
167
- enable :login, :logout, :change_password
168
- change_password_requires_password?{require_password}
169
- end
170
- roda(:jwt) do |r|
171
- r.rodauth
172
- end
173
-
174
- json_login
175
-
176
- res = json_request('/change-password', :password=>'0123456789', "new-password"=>'0123456', "password-confirm"=>'0123456789')
177
- res.must_equal [422, {'error'=>"There was an error changing your password", "field-error"=>["new-password", "passwords do not match"]}]
178
-
179
- res = json_request('/change-password', :password=>'0123456', "new-password"=>'0123456', "password-confirm"=>'0123456')
180
- res.must_equal [401, {'error'=>"There was an error changing your password", "field-error"=>["password", "invalid password"]}]
181
-
182
- res = json_request('/change-password', :password=>'0123456789', "new-password"=>'0123456789', "password-confirm"=>'0123456789')
183
- res.must_equal [422, {'error'=>"There was an error changing your password", "field-error"=>["new-password", "invalid password, same as current password"]}]
184
-
185
- res = json_request('/change-password', :password=>'0123456789', "new-password"=>'0123456', "password-confirm"=>'0123456')
186
- res.must_equal [200, {'success'=>"Your password has been changed"}]
187
-
188
- json_logout
189
- res = json_login(:no_check=>true)
190
- res.must_equal [401, {'error'=>"There was an error logging in", "field-error"=>["password", "invalid password"]}]
191
-
192
- json_login(:pass=>'0123456')
193
-
194
- require_password = false
195
-
196
- res = json_request('/change-password', "new-password"=>'012345678', "password-confirm"=>'012345678')
197
- res.must_equal [200, {'success'=>"Your password has been changed"}]
198
-
199
- json_logout
200
- json_login(:pass=>'012345678')
201
- end
202
- end
@@ -1,162 +0,0 @@
1
- require File.expand_path("spec_helper", File.dirname(__FILE__))
2
-
3
- describe 'Rodauth close_account feature' do
4
- it "should support closing accounts when passwords are not required" do
5
- rodauth do
6
- enable :login, :close_account
7
- close_account_requires_password? false
8
- end
9
- roda do |r|
10
- r.rodauth
11
- r.root{view(:content=>"")}
12
- end
13
-
14
- login
15
- page.current_path.must_equal '/'
16
-
17
- visit '/close-account'
18
- click_button 'Close Account'
19
- page.current_path.must_equal '/'
20
-
21
- DB[:accounts].select_map(:status_id).must_equal [3]
22
- end
23
-
24
- it "should update account information when closing accounts" do
25
- statuses = nil
26
- rodauth do
27
- enable :login, :close_account
28
- close_account_requires_password? false
29
- after_close_account{statuses = [account[:status_id], account_ds.get(:status_id)]}
30
- end
31
- roda do |r|
32
- r.rodauth
33
- r.root{view(:content=>"")}
34
- end
35
-
36
- login
37
- visit '/close-account'
38
- click_button 'Close Account'
39
- statuses[0].must_equal 3
40
- statuses[1].must_equal 3
41
- end
42
-
43
- it "should delete accounts when skip_status_checks? is true" do
44
- rodauth do
45
- enable :login, :close_account
46
- close_account_requires_password? false
47
- skip_status_checks? true
48
- end
49
- roda do |r|
50
- r.rodauth
51
- r.root{view(:content=>"")}
52
- end
53
-
54
- login
55
- page.current_path.must_equal '/'
56
-
57
- visit '/close-account'
58
- click_button 'Close Account'
59
- page.current_path.must_equal '/'
60
-
61
- DB[:accounts].count.must_equal 0
62
- end
63
-
64
- it "should support closing accounts when passwords are required" do
65
- rodauth do
66
- enable :login, :close_account
67
- end
68
- roda do |r|
69
- r.rodauth
70
- r.root{view(:content=>"")}
71
- end
72
-
73
- login
74
- page.current_path.must_equal '/'
75
-
76
- visit '/close-account'
77
- fill_in 'Password', :with=>'012345678'
78
- click_button 'Close Account'
79
- page.find('#error_flash').text.must_equal "There was an error closing your account"
80
- page.html.must_include("invalid password")
81
- DB[:accounts].select_map(:status_id).must_equal [2]
82
-
83
- fill_in 'Password', :with=>'0123456789'
84
- click_button 'Close Account'
85
- page.find('#notice_flash').text.must_equal "Your account has been closed"
86
- page.current_path.must_equal '/'
87
-
88
- DB[:accounts].select_map(:status_id).must_equal [3]
89
- end
90
-
91
- it "should support closing accounts with overrides" do
92
- rodauth do
93
- enable :login, :close_account
94
- close_account do
95
- account_ds.update(:email => 'foo@bar.com', :status_id=>3)
96
- end
97
- close_account_route 'close'
98
- close_account_redirect '/login'
99
- end
100
- roda do |r|
101
- r.rodauth
102
- r.root{""}
103
- end
104
-
105
- login
106
- page.current_path.must_equal '/'
107
-
108
- visit '/close'
109
- page.title.must_equal 'Close Account'
110
- fill_in 'Password', :with=>'0123456789'
111
- click_button 'Close Account'
112
- page.find('#notice_flash').text.must_equal "Your account has been closed"
113
- page.current_path.must_equal '/login'
114
-
115
- DB[:accounts].select_map(:status_id).must_equal [3]
116
- DB[:accounts].select_map(:email).must_equal ['foo@bar.com']
117
- end
118
-
119
- it "should close accounts when account_password_hash_column is set" do
120
- rodauth do
121
- enable :create_account, :close_account
122
- close_account_requires_password? false
123
- account_password_hash_column :ph
124
- end
125
- roda do |r|
126
- r.rodauth
127
- r.root{view(:content=>"")}
128
- end
129
-
130
- visit '/create-account'
131
- fill_in 'Login', :with=>'foo2@example.com'
132
- fill_in 'Confirm Login', :with=>'foo2@example.com'
133
- fill_in 'Password', :with=>'apple2'
134
- fill_in 'Confirm Password', :with=>'apple2'
135
- click_button 'Create Account'
136
-
137
- visit '/close-account'
138
- click_button 'Close Account'
139
- page.current_path.must_equal '/'
140
-
141
- DB[:accounts].reverse(:id).get(:status_id).must_equal 3
142
- end
143
-
144
- it "should support closing accounts via jwt" do
145
- rodauth do
146
- enable :login, :close_account
147
- end
148
- roda(:jwt) do |r|
149
- r.rodauth
150
- end
151
-
152
- json_login
153
-
154
- res = json_request('/close-account', :password=>'0123456')
155
- res.must_equal [401, {'error'=>"There was an error closing your account", "field-error"=>["password", "invalid password"]}]
156
- DB[:accounts].select_map(:status_id).must_equal [2]
157
-
158
- res = json_request('/close-account', :password=>'0123456789')
159
- res.must_equal [200, {'success'=>"Your account has been closed"}]
160
- DB[:accounts].select_map(:status_id).must_equal [3]
161
- end
162
- end
@@ -1,70 +0,0 @@
1
- require File.expand_path("spec_helper", File.dirname(__FILE__))
2
-
3
- describe 'Rodauth confirm password feature' do
4
- it "should support confirming passwords" do
5
- rodauth do
6
- enable :login, :change_login, :confirm_password, :password_grace_period
7
- before_change_login_route do
8
- unless password_recently_entered?
9
- session[:confirm_password_redirect] = request.path_info
10
- redirect '/confirm-password'
11
- end
12
- end
13
- end
14
- roda do |r|
15
- r.rodauth
16
- r.get("reset"){session[:last_password_entry] = Time.now.to_i - 400; "a"}
17
- view :content=>""
18
- end
19
-
20
- login
21
-
22
- visit '/change-login'
23
- page.title.must_equal 'Change Login'
24
-
25
- visit '/reset'
26
- page.body.must_equal 'a'
27
-
28
- visit '/change-login'
29
- page.title.must_equal 'Confirm Password'
30
- fill_in 'Password', :with=>'012345678'
31
- click_button 'Confirm Password'
32
- page.find('#error_flash').text.must_equal "There was an error confirming your password"
33
- page.html.must_include("invalid password")
34
-
35
- fill_in 'Password', :with=>'0123456789'
36
- click_button 'Confirm Password'
37
- page.find('#notice_flash').text.must_equal "Your password has been confirmed"
38
-
39
- fill_in 'Login', :with=>'foo3@example.com'
40
- fill_in 'Confirm Login', :with=>'foo3@example.com'
41
- click_button 'Change Login'
42
- page.find('#notice_flash').text.must_equal "Your login has been changed"
43
- end
44
-
45
- it "should support confirming passwords via jwt" do
46
- rodauth do
47
- enable :login, :change_password, :confirm_password, :password_grace_period
48
- end
49
- roda(:jwt) do |r|
50
- r.rodauth
51
- r.post("reset"){rodauth.send(:set_session_value, :last_password_entry, Time.now.to_i - 400); [1]}
52
- end
53
-
54
- json_login
55
-
56
- res = json_request('/change-password', "new-password"=>'0123456', "password-confirm"=>'0123456')
57
- res.must_equal [200, {'success'=>"Your password has been changed"}]
58
-
59
- json_request('/reset').must_equal [200, [1]]
60
-
61
- res = json_request('/change-password', "new-password"=>'01234567', "password-confirm"=>'01234567')
62
- res.must_equal [401, {"field-error"=>["password", "invalid password"], "error"=>"There was an error changing your password"}]
63
-
64
- res = json_request('/confirm-password', "password"=>'0123456')
65
- res.must_equal [200, {'success'=>"Your password has been confirmed"}]
66
-
67
- res = json_request('/change-password', "new-password"=>'01234567', "password-confirm"=>'01234567')
68
- res.must_equal [200, {'success'=>"Your password has been changed"}]
69
- end
70
- end