mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-12-26 20:36:25 +00:00
96 lines
2.4 KiB
Ruby
96 lines
2.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe CreateCollectionService do
|
|
subject { described_class.new }
|
|
|
|
let(:author) { Fabricate.create(:account) }
|
|
|
|
describe '#call' do
|
|
let(:base_params) do
|
|
{
|
|
name: 'People to follow',
|
|
description: 'All my favourites',
|
|
sensitive: false,
|
|
discoverable: true,
|
|
}
|
|
end
|
|
|
|
context 'when given valid parameters' do
|
|
it 'creates a new local collection' do
|
|
collection = nil
|
|
|
|
expect do
|
|
collection = subject.call(base_params, author)
|
|
end.to change(Collection, :count).by(1)
|
|
|
|
expect(collection).to be_a(Collection)
|
|
expect(collection).to be_local
|
|
end
|
|
|
|
context 'when given account ids' do
|
|
let(:accounts) do
|
|
Fabricate.times(2, :account)
|
|
end
|
|
let(:account_ids) { accounts.map { |a| a.id.to_s } }
|
|
let(:params) do
|
|
base_params.merge(account_ids:)
|
|
end
|
|
|
|
it 'also creates collection items' do
|
|
expect do
|
|
subject.call(params, author)
|
|
end.to change(CollectionItem, :count).by(2)
|
|
end
|
|
|
|
context 'when one account may not be added' do
|
|
before do
|
|
accounts.last.update(discoverable: false)
|
|
end
|
|
|
|
it 'raises an error' do
|
|
expect do
|
|
subject.call(params, author)
|
|
end.to raise_error(Mastodon::NotPermittedError)
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'when given a tag' do
|
|
let(:params) { base_params.merge(tag_name: '#people') }
|
|
|
|
context 'when the tag exists' do
|
|
let!(:tag) { Fabricate.create(:tag, name: 'people') }
|
|
|
|
it 'correctly assigns the existing tag' do
|
|
collection = subject.call(params, author)
|
|
|
|
expect(collection.tag).to eq tag
|
|
end
|
|
end
|
|
|
|
context 'when the tag does not exist' do
|
|
it 'creates a new tag' do
|
|
collection = nil
|
|
|
|
expect do
|
|
collection = subject.call(params, author)
|
|
end.to change(Tag, :count).by(1)
|
|
|
|
expect(collection.tag.name).to eq 'people'
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'when given invalid parameters' do
|
|
it 'raises an exception' do
|
|
expect do
|
|
subject.call({}, author)
|
|
end.to raise_error(ActiveRecord::RecordInvalid)
|
|
end
|
|
end
|
|
end
|
|
end
|