Sha256: 7514477542df9f313b7661367456540719c1e24c3df0f2d5ecdc588dfaef17cf
Contents?: true
Size: 1.87 KB
Versions: 2
Compression:
Stored size: 1.87 KB
Contents
require "test_helper" require "integration_tests_helper" class PersistenceTest < ActionDispatch::IntegrationTest def setup @old_persistence = User.otp_trust_persistence User.otp_trust_persistence = 3.seconds end def teardown User.otp_trust_persistence = @old_persistence Capybara.reset_sessions! end test "a user should be requested the otp challenge every log in" do # log in 1fa user = enable_otp_and_sign_in otp_challenge_for user visit user_otp_token_path assert_equal user_otp_token_path, current_path sign_out sign_user_in assert_equal user_otp_credential_path, current_path end test "a user should be able to set their browser as trusted" do # log in 1fa user = enable_otp_and_sign_in otp_challenge_for user visit user_otp_token_path assert_equal user_otp_token_path, current_path click_link("Trust this browser") assert_text "Your browser is trusted." sign_out sign_user_in assert_equal root_path, current_path end test "a user should be able to download its recovery codes" do # log in 1fa user = enable_otp_and_sign_in otp_challenge_for user visit user_otp_token_path assert_equal user_otp_token_path, current_path enable_chrome_headless_downloads(page, "/tmp/devise-otp") DownloadHelper.wait_for_download(count: 1) do click_link("Download recovery codes") end assert_equal 1, DownloadHelper.downloads.size end test "trusted status should expire" do # log in 1fa user = enable_otp_and_sign_in otp_challenge_for user visit user_otp_token_path assert_equal user_otp_token_path, current_path click_link("Trust this browser") assert_text "Your browser is trusted." sign_out sleep User.otp_trust_persistence.to_i + 1 sign_user_in assert_equal user_otp_credential_path, current_path end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
devise-otp-0.6.0 | test/integration/persistence_test.rb |
devise-otp-0.5.0 | test/integration/persistence_test.rb |