mirror of
https://github.com/mastodon/mastodon.git
synced 2025-05-28 04:27:08 +00:00

Some checks failed
Bundler Audit / security (push) Waiting to run
Check i18n / check-i18n (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (ruby) (push) Waiting to run
Check formatting / 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.2) (push) Blocked by required conditions
Ruby Testing / test (3.3) (push) Blocked by required conditions
Ruby Testing / Libvips tests (.ruby-version) (push) Blocked by required conditions
Ruby Testing / Libvips tests (3.2) (push) Blocked by required conditions
Ruby Testing / Libvips tests (3.3) (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.2) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.3) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.10.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.2, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.3, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Crowdin / Download translations / download-translations (push) Has been cancelled
65 lines
1.9 KiB
Ruby
65 lines
1.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'Settings Privacy' do
|
|
let!(:user) { Fabricate(:user) }
|
|
|
|
before { sign_in(user) }
|
|
|
|
describe 'Managing privacy settings' do
|
|
before { user.account.update(discoverable: false) }
|
|
|
|
context 'with a successful update' do
|
|
it 'updates user profile information' do
|
|
# View settings page
|
|
visit settings_privacy_path
|
|
expect(page)
|
|
.to have_content(I18n.t('privacy.title'))
|
|
.and have_private_cache_control
|
|
|
|
# Fill out form and submit
|
|
check 'account_discoverable'
|
|
check 'account_indexable'
|
|
expect { click_on submit_button }
|
|
.to change { user.account.reload.discoverable }.to(true)
|
|
expect(page)
|
|
.to have_content(I18n.t('privacy.title'))
|
|
.and have_content(success_message)
|
|
expect(ActivityPub::UpdateDistributionWorker)
|
|
.to have_enqueued_sidekiq_job(user.account.id)
|
|
end
|
|
end
|
|
|
|
context 'with a failed update' do
|
|
before do
|
|
allow(UpdateAccountService).to receive(:new).and_return(failing_update_service)
|
|
end
|
|
|
|
it 'updates user profile information' do
|
|
# View settings page
|
|
visit settings_privacy_path
|
|
expect(page)
|
|
.to have_content(I18n.t('privacy.title'))
|
|
.and have_private_cache_control
|
|
|
|
# Fill out form and submit
|
|
check 'account_discoverable'
|
|
check 'account_indexable'
|
|
expect { click_on submit_button }
|
|
.to_not(change { user.account.reload.discoverable })
|
|
expect(page)
|
|
.to have_content(I18n.t('privacy.title'))
|
|
expect(ActivityPub::UpdateDistributionWorker)
|
|
.to_not have_enqueued_sidekiq_job(anything)
|
|
end
|
|
|
|
private
|
|
|
|
def failing_update_service
|
|
instance_double(UpdateAccountService, call: false)
|
|
end
|
|
end
|
|
end
|
|
end
|