summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2021-04-18 05:39:29 +0000
committerGo MAEDA <maeda@farend.jp>2021-04-18 05:39:29 +0000
commit77730103c72f814fb412c3dcb42baacc0e13737c (patch)
tree75fdf856f7f2f4c183a9e1723f1cd6e0768e25df /test
parent56979912c9bb041aac3fc5b88bf8275b743b0e28 (diff)
downloadredmine-77730103c72f814fb412c3dcb42baacc0e13737c.tar.gz
redmine-77730103c72f814fb412c3dcb42baacc0e13737c.zip
Merged r20949 from trunk to 4.2-stable (#35087).
git-svn-id: http://svn.redmine.org/redmine/branches/4.2-stable@20950 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r--test/integration/twofa_test.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/integration/twofa_test.rb b/test/integration/twofa_test.rb
index 36412a7c2..a787e2770 100644
--- a/test/integration/twofa_test.rb
+++ b/test/integration/twofa_test.rb
@@ -43,6 +43,19 @@ class TwofaTest < Redmine::IntegrationTest
end
end
+ test 'should allow logout even if twofa setup is required' do
+ with_settings twofa: '2' do
+ log_user('jsmith', 'jsmith')
+ follow_redirect!
+ assert_redirected_to '/my/twofa/totp/activate/confirm'
+ follow_redirect!
+ post '/logout'
+ assert_redirected_to '/'
+ follow_redirect!
+ assert_response :success
+ end
+ end
+
test "should generate and accept backup codes" do
log_user('jsmith', 'jsmith')
get "/my/account"