about summary refs log tree commit diff
path: root/spec/lib/status_filter_spec.rb
blob: a851014d9c025ee76b946f8fb46a3aa6a84a2aa3 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# frozen_string_literal: true

require 'rails_helper'

describe StatusFilter do
  describe '#filtered?' do
    let(:status) { Fabricate(:status) }

    context 'without an account' do
      subject { described_class.new(status, nil) }

      context 'when there are no connections' do
        it { is_expected.not_to be_filtered }
      end

      context 'when status account is silenced' do
        before do
          status.account.silence!
        end

        it { is_expected.to be_filtered }
      end

      context 'when status policy does not allow show' do
        before do
          expect_any_instance_of(StatusPolicy).to receive(:show?).and_return(false)
        end

        it { is_expected.to be_filtered }
      end
    end

    context 'with real account' do
      let(:account) { Fabricate(:account) }
      subject { described_class.new(status, account) }

      context 'when there are no connections' do
        it { is_expected.not_to be_filtered }
      end

      context 'when status account is blocked' do
        before do
          Fabricate(:block, account: account, target_account: status.account)
        end

        it { is_expected.to be_filtered }
      end

      context 'when status account domain is blocked' do
        before do
          status.account.update(domain: 'example.com')
          Fabricate(:account_domain_block, account: account, domain: status.account_domain)
        end

        it { is_expected.to be_filtered }
      end

      context 'when status account is muted' do
        before do
          Fabricate(:mute, account: account, target_account: status.account)
        end

        it { is_expected.to be_filtered }
      end

      context 'when status account is silenced' do
        before do
          status.account.silence!
        end

        it { is_expected.to be_filtered }
      end

      context 'when status policy does not allow show' do
        before do
          expect_any_instance_of(StatusPolicy).to receive(:show?).and_return(false)
        end

        it { is_expected.to be_filtered }
      end
    end
  end
end