mirror of
https://github.com/mastodon/mastodon.git
synced 2026-05-14 16:21:03 -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
50 lines
1.4 KiB
Ruby
50 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'Settings verification page' do
|
|
let(:user) { Fabricate :user }
|
|
|
|
before { sign_in user }
|
|
|
|
describe 'Viewing the verification page' do
|
|
it 'shows the page and updates attribution' do
|
|
visit settings_verification_path
|
|
|
|
expect(page)
|
|
.to have_text(verification_summary)
|
|
.and have_private_cache_control
|
|
|
|
fill_in attribution_field, with: " example.com\n\n https://example.net"
|
|
|
|
expect { click_on submit_button }
|
|
.to(change { user.account.reload.attribution_domains }.to(['example.com', 'example.net']))
|
|
expect(page)
|
|
.to have_text(success_message)
|
|
expect(find_field(attribution_field).value)
|
|
.to have_text("example.com\nexample.net")
|
|
end
|
|
|
|
it 'rejects invalid attribution domains' do
|
|
visit settings_verification_path
|
|
|
|
fill_in attribution_field, with: "example.com \n invalid_com"
|
|
|
|
expect { click_on submit_button }
|
|
.to_not(change { user.account.reload.attribution_domains })
|
|
expect(page)
|
|
.to have_text(I18n.t('activerecord.errors.messages.invalid_domain_on_line', value: 'invalid_com'))
|
|
expect(find_field(attribution_field).value)
|
|
.to have_text("example.com\ninvalid_com")
|
|
end
|
|
end
|
|
|
|
def verification_summary
|
|
I18n.t('verification.website_verification')
|
|
end
|
|
|
|
def attribution_field
|
|
form_label('account.attribution_domains')
|
|
end
|
|
end
|