mirror of
https://github.com/mastodon/mastodon.git
synced 2026-03-21 18:05:23 -05:00
Some checks failed
Bundler Audit / security (push) Waiting to run
Check i18n / check-i18n (push) Waiting to run
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.2) (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 / 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 / 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
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (ruby) (push) Has been cancelled
72 lines
2.7 KiB
Ruby
72 lines
2.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe FeedInsertWorker do
|
|
subject { described_class.new }
|
|
|
|
describe 'perform' do
|
|
let(:follower) { Fabricate(:account) }
|
|
let(:status) { Fabricate(:status) }
|
|
let(:list) { Fabricate(:list) }
|
|
|
|
context 'when there are no records' do
|
|
it 'skips push with missing status' do
|
|
instance = instance_double(FeedManager, push_to_home: nil)
|
|
allow(FeedManager).to receive(:instance).and_return(instance)
|
|
result = subject.perform(nil, follower.id)
|
|
|
|
expect(result).to be true
|
|
expect(instance).to_not have_received(:push_to_home)
|
|
end
|
|
|
|
it 'skips push with missing account' do
|
|
instance = instance_double(FeedManager, push_to_home: nil)
|
|
allow(FeedManager).to receive(:instance).and_return(instance)
|
|
result = subject.perform(status.id, nil)
|
|
|
|
expect(result).to be true
|
|
expect(instance).to_not have_received(:push_to_home)
|
|
end
|
|
end
|
|
|
|
context 'when there are real records' do
|
|
it 'skips the push when there is a filter' do
|
|
instance = instance_double(FeedManager, push_to_home: nil, filter?: true, filter: :filter)
|
|
allow(FeedManager).to receive(:instance).and_return(instance)
|
|
result = subject.perform(status.id, follower.id)
|
|
|
|
expect(result).to be_nil
|
|
expect(instance).to_not have_received(:push_to_home)
|
|
end
|
|
|
|
it 'pushes the status onto the home timeline without filter' do
|
|
instance = instance_double(FeedManager, push_to_home: nil, filter?: false, filter: nil)
|
|
allow(FeedManager).to receive(:instance).and_return(instance)
|
|
result = subject.perform(status.id, follower.id, :home)
|
|
|
|
expect(result).to be_nil
|
|
expect(instance).to have_received(:push_to_home).with(follower, status, update: nil)
|
|
end
|
|
|
|
it 'pushes the status onto the tags timeline without filter' do
|
|
instance = instance_double(FeedManager, push_to_home: nil, filter?: false, filter: nil)
|
|
allow(FeedManager).to receive(:instance).and_return(instance)
|
|
result = subject.perform(status.id, follower.id, :tags)
|
|
|
|
expect(result).to be_nil
|
|
expect(instance).to have_received(:push_to_home).with(follower, status, update: nil)
|
|
end
|
|
|
|
it 'pushes the status onto the list timeline without filter' do
|
|
instance = instance_double(FeedManager, push_to_list: nil, filter?: false, filter: nil)
|
|
allow(FeedManager).to receive(:instance).and_return(instance)
|
|
result = subject.perform(status.id, list.id, :list)
|
|
|
|
expect(result).to be_nil
|
|
expect(instance).to have_received(:push_to_list).with(list, status, update: nil)
|
|
end
|
|
end
|
|
end
|
|
end
|