mirror of
https://github.com/mastodon/mastodon.git
synced 2026-05-06 22:08:07 -05:00
Some checks failed
Check i18n / check-i18n (push) Waiting to run
Chromatic / Check for relevant changes (push) Waiting to run
Chromatic / Run Chromatic (push) Blocked by required conditions
Check formatting / lint (push) Waiting to run
CSS Linting / lint (push) Waiting to run
Haml Linting / lint (push) Waiting to run
JavaScript Linting / lint (push) Waiting to run
Ruby Linting / lint (push) Waiting to run
JavaScript Testing / test (push) Waiting to run
Historical data migration test / test (14-alpine) (push) Waiting to run
Historical data migration test / test (15-alpine) (push) Waiting to run
Historical data migration test / test (16-alpine) (push) Waiting to run
Historical data migration test / test (17-alpine) (push) Waiting to run
Ruby Testing / build (production) (push) Waiting to run
Ruby Testing / build (test) (push) Waiting to run
Ruby Testing / test (.ruby-version) (push) Blocked by required conditions
Ruby Testing / test (3.3) (push) Blocked by required conditions
Ruby Testing / test (3.4) (push) Blocked by required conditions
Ruby Testing / End to End testing (.ruby-version) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.3) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.4) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.19.2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.3, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.4, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Bundler Audit / security (push) Has been cancelled
CodeQL / Analyze (actions) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (ruby) (push) Has been cancelled
37 lines
1.2 KiB
Ruby
37 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'Settings TwoFactorAuthenticationMethods' do
|
|
context 'when signed in' do
|
|
let(:user) { Fabricate(:user) }
|
|
|
|
before { sign_in user }
|
|
|
|
describe 'Managing 2FA methods' do
|
|
before { user.update(otp_required_for_login: true) }
|
|
|
|
it 'disables 2FA with challenge confirmation', :inline_jobs do
|
|
visit settings_two_factor_authentication_methods_path
|
|
expect(page)
|
|
.to have_text(I18n.t('settings.two_factor_authentication'))
|
|
.and have_private_cache_control
|
|
|
|
# Attempt to disable
|
|
click_on I18n.t('two_factor_authentication.disable')
|
|
expect(page)
|
|
.to have_title(I18n.t('challenge.prompt'))
|
|
|
|
# Fill in challenge form
|
|
fill_in 'form_challenge_current_password', with: user.password
|
|
expect { click_on I18n.t('challenge.confirm') }
|
|
.to change { user.reload.otp_required_for_login }.to(false)
|
|
.and send_email(to: user.email, subject: I18n.t('devise.mailer.two_factor_disabled.subject'))
|
|
|
|
expect(page)
|
|
.to have_text(I18n.t('two_factor_authentication.disabled_success'))
|
|
end
|
|
end
|
|
end
|
|
end
|