about summary refs log tree commit diff
path: root/spec/services/post_status_service_spec.rb
blob: acb922d641abae5299cb93c81a97e1890fb902cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
require 'rails_helper'

RSpec.describe PostStatusService do
  subject { PostStatusService.new }

  it 'creates a new status'
  it 'creates a new response status'
  it 'processes mentions'
  it 'pings PuSH hubs'

  it 'does not allow attaching more than 4 files' do
    account = Fabricate(:account)

    expect do
      PostStatusService.new.call(
      account,
      "test status update",
      nil,
      media_ids: [
        Fabricate(:media_attachment, account: account),
        Fabricate(:media_attachment, account: account),
        Fabricate(:media_attachment, account: account),
        Fabricate(:media_attachment, account: account),
        Fabricate(:media_attachment, account: account),
      ].map(&:id),
    )
    end.to raise_error(
      Mastodon::ValidationError,
      'Cannot attach more than 4 files',
    )
  end

  it 'does not allow attaching both videos and images' do
    account = Fabricate(:account)

    expect do
      PostStatusService.new.call(
      account,
      "test status update",
      nil,
      media_ids: [
        Fabricate(:media_attachment, type: :video, account: account),
        Fabricate(:media_attachment, type: :image, account: account),
      ].map(&:id),
    )
    end.to raise_error(
      Mastodon::ValidationError,
      'Cannot attach a video to a toot that already contains images',
    )
  end
end