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
83 lines
2.1 KiB
Ruby
83 lines
2.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'Settings aliases page' do
|
|
let!(:user) { Fabricate(:user) }
|
|
let(:account) { user.account }
|
|
|
|
before { sign_in user }
|
|
|
|
describe 'Viewing aliases' do
|
|
it 'shows index page with private cache control headers' do
|
|
visit settings_aliases_path
|
|
|
|
# View index page
|
|
expect(page)
|
|
.to have_text(I18n.t('settings.aliases'))
|
|
.and have_private_cache_control
|
|
end
|
|
end
|
|
|
|
describe 'Creating an alias' do
|
|
context 'with valid alias value' do
|
|
before { stub_resolver }
|
|
|
|
it 'creates an alias for the user' do
|
|
visit settings_aliases_path
|
|
|
|
fill_in 'account_alias_acct',
|
|
with: 'new@host.example'
|
|
expect { submit_form }
|
|
.to change(AccountAlias, :count).by(1)
|
|
expect(page)
|
|
.to have_text(I18n.t('aliases.created_msg'))
|
|
end
|
|
end
|
|
|
|
context 'with invalid value' do
|
|
it 'does not create an alias for the user' do
|
|
visit settings_aliases_path
|
|
|
|
fill_in 'account_alias_acct',
|
|
with: 'invalid-value'
|
|
expect { submit_form }
|
|
.to not_change(AccountAlias, :count)
|
|
expect(page)
|
|
.to have_text(I18n.t('settings.aliases'))
|
|
end
|
|
end
|
|
|
|
def submit_form
|
|
click_on I18n.t('aliases.add_new')
|
|
end
|
|
end
|
|
|
|
describe 'Removing an alias' do
|
|
let!(:account_alias) do
|
|
AccountAlias.new(account: user.account, acct: 'new@example.com').tap do |account_alias|
|
|
account_alias.save(validate: false)
|
|
end
|
|
end
|
|
|
|
it 'removes an alias' do
|
|
visit settings_aliases_path
|
|
expect { click_on I18n.t('aliases.remove') }
|
|
.to change(AccountAlias, :count).by(-1)
|
|
|
|
expect(page)
|
|
.to have_text(I18n.t('settings.aliases'))
|
|
.and have_text(I18n.t('aliases.deleted_msg'))
|
|
expect { account_alias.reload }
|
|
.to raise_error(ActiveRecord::RecordNotFound)
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def stub_resolver
|
|
resolver = instance_double(ResolveAccountService, call: Fabricate(:account))
|
|
allow(ResolveAccountService).to receive(:new).and_return(resolver)
|
|
end
|
|
end
|