mirror of
https://github.com/mastodon/mastodon.git
synced 2025-05-24 10:31:12 +00:00

Some checks failed
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
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.1) (push) Blocked by required conditions
Ruby Testing / test (3.2) (push) Blocked by required conditions
Ruby Testing / Libvips tests (.ruby-version) (push) Blocked by required conditions
Ruby Testing / Libvips tests (3.1) (push) Blocked by required conditions
Ruby Testing / Libvips tests (3.2) (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.1) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.2) (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.1, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (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
Crowdin / Upload translations / upload-translations (push) Has been cancelled
Ruby Linting / lint (push) Has been cancelled
Historical data migration test / test (14-alpine) (push) Has been cancelled
Historical data migration test / test (15-alpine) (push) Has been cancelled
37 lines
1012 B
Ruby
37 lines
1012 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe UpdateAccountService do
|
|
subject { described_class.new }
|
|
|
|
describe 'switching form locked to unlocked accounts', :inline_jobs do
|
|
let(:account) { Fabricate(:account, locked: true) }
|
|
let(:alice) { Fabricate(:account) }
|
|
let(:bob) { Fabricate(:account) }
|
|
let(:eve) { Fabricate(:account) }
|
|
|
|
before do
|
|
bob.touch(:silenced_at)
|
|
account.mute!(eve)
|
|
|
|
FollowService.new.call(alice, account)
|
|
FollowService.new.call(bob, account)
|
|
FollowService.new.call(eve, account)
|
|
end
|
|
|
|
it 'auto accepts pending follow requests from appropriate accounts' do
|
|
subject.call(account, { locked: false })
|
|
|
|
expect(alice).to be_following(account)
|
|
expect(alice).to_not be_requested(account)
|
|
|
|
expect(bob).to_not be_following(account)
|
|
expect(bob).to be_requested(account)
|
|
|
|
expect(eve).to be_following(account)
|
|
expect(eve).to_not be_requested(account)
|
|
end
|
|
end
|
|
end
|