mirror of
https://github.com/mastodon/mastodon.git
synced 2024-12-22 09:08:24 +00:00
Add basic coverage for CreateFeaturedTagService
class (#29321)
This commit is contained in:
parent
5f19e7e799
commit
b73932461f
31
spec/services/create_featured_tag_service_spec.rb
Normal file
31
spec/services/create_featured_tag_service_spec.rb
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
require 'rails_helper'
|
||||||
|
|
||||||
|
RSpec.describe CreateFeaturedTagService do
|
||||||
|
describe '#call' do
|
||||||
|
let(:tag) { 'test' }
|
||||||
|
|
||||||
|
context 'with a local account' do
|
||||||
|
let(:account) { Fabricate(:account, domain: nil) }
|
||||||
|
|
||||||
|
it 'creates a new featured tag and distributes' do
|
||||||
|
expect { subject.call(account, tag) }
|
||||||
|
.to change(FeaturedTag, :count).by(1)
|
||||||
|
expect(ActivityPub::AccountRawDistributionWorker)
|
||||||
|
.to have_enqueued_sidekiq_job(anything, account.id)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context 'with a remote account' do
|
||||||
|
let(:account) { Fabricate(:account, domain: 'host.example') }
|
||||||
|
|
||||||
|
it 'creates a new featured tag and does not distributes' do
|
||||||
|
expect { subject.call(account, tag) }
|
||||||
|
.to change(FeaturedTag, :count).by(1)
|
||||||
|
expect(ActivityPub::AccountRawDistributionWorker)
|
||||||
|
.to_not have_enqueued_sidekiq_job
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue