mirror of
https://github.com/mastodon/mastodon.git
synced 2026-05-24 10:12:52 -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
52 lines
1.4 KiB
Ruby
52 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'Admin Confirmations' do
|
|
before { sign_in Fabricate(:admin_user) }
|
|
|
|
describe 'Confirming a user' do
|
|
let!(:user) { Fabricate :user, confirmed_at: nil }
|
|
|
|
it 'changes user to confirmed and returns to accounts page' do
|
|
# Go to accounts listing page
|
|
visit admin_accounts_path
|
|
expect(page)
|
|
.to have_title(I18n.t('admin.accounts.title'))
|
|
|
|
# Go to account page
|
|
click_on user.account.username
|
|
|
|
# Click to confirm
|
|
expect { click_on I18n.t('admin.accounts.confirm') }
|
|
.to change(Admin::ActionLog.where(action: 'confirm'), :count).by(1)
|
|
expect(page)
|
|
.to have_title(I18n.t('admin.accounts.title'))
|
|
expect(user.reload)
|
|
.to be_confirmed
|
|
end
|
|
end
|
|
|
|
describe 'Resending a confirmation email', :inline_jobs do
|
|
let!(:user) { Fabricate(:user, confirmed_at: confirmed_at) }
|
|
|
|
context 'when email is not confirmed' do
|
|
let(:confirmed_at) { nil }
|
|
|
|
it 'resends the confirmation mail' do
|
|
visit admin_account_path(id: user.account.id)
|
|
|
|
expect { resend_confirmation }
|
|
.to send_email(to: user.email)
|
|
expect(page)
|
|
.to have_title(I18n.t('admin.accounts.title'))
|
|
.and have_text(I18n.t('admin.accounts.resend_confirmation.success'))
|
|
end
|
|
end
|
|
|
|
def resend_confirmation
|
|
click_on I18n.t('admin.accounts.resend_confirmation.send')
|
|
end
|
|
end
|
|
end
|