mirror of
https://github.com/mastodon/mastodon.git
synced 2026-06-15 12:15:09 -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
39 lines
1.1 KiB
Ruby
39 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'Settings Deletes' do
|
|
describe 'Deleting user from settings area' do
|
|
let(:user) { Fabricate(:user) }
|
|
|
|
before { sign_in(user) }
|
|
|
|
it 'requires password and deletes user record', :inline_jobs do
|
|
visit settings_delete_path
|
|
expect(page)
|
|
.to have_title(I18n.t('settings.delete'))
|
|
.and have_private_cache_control
|
|
|
|
# Wrong confirmation value
|
|
fill_in 'form_delete_confirmation_password', with: 'wrongvalue'
|
|
click_on I18n.t('deletes.proceed')
|
|
expect(page)
|
|
.to have_text(I18n.t('deletes.challenge_not_passed'))
|
|
|
|
# Correct confirmation value
|
|
fill_in 'form_delete_confirmation_password', with: user.password
|
|
click_on I18n.t('deletes.proceed')
|
|
expect(page)
|
|
.to have_text(I18n.t('deletes.success_msg'))
|
|
expect(page)
|
|
.to have_title(I18n.t('auth.login'))
|
|
expect(User.find_by(id: user.id))
|
|
.to be_nil
|
|
expect(user.account.reload)
|
|
.to be_suspended
|
|
expect(CanonicalEmailBlock.block?(user.email))
|
|
.to be(false)
|
|
end
|
|
end
|
|
end
|