~cytrogen/masto-fe

ref: 68b4e36c82344fba7c5a01e9f8dc9ddbaaf4e3ff masto-fe/spec/lib/mastodon/cli/canonical_email_blocks_spec.rb -rw-r--r-- 1.7 KiB
68b4e36c — Eugen Rochko Fix `#hashtag` matching non-hashtagged posts in search (#26781) 2 years ago
                                                                                
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
# frozen_string_literal: true

require 'rails_helper'
require 'mastodon/cli/canonical_email_blocks'

describe Mastodon::CLI::CanonicalEmailBlocks do
  let(:cli) { described_class.new }

  describe '.exit_on_failure?' do
    it 'returns true' do
      expect(described_class.exit_on_failure?).to be true
    end
  end

  describe '#find' do
    let(:arguments) { ['user@example.com'] }

    context 'when a block is present' do
      before { Fabricate(:canonical_email_block, email: 'user@example.com') }

      it 'announces the presence of the block' do
        expect { cli.invoke(:find, arguments) }.to output(
          a_string_including('user@example.com is blocked')
        ).to_stdout
      end
    end

    context 'when a block is not present' do
      it 'announces the absence of the block' do
        expect { cli.invoke(:find, arguments) }.to output(
          a_string_including('user@example.com is not blocked')
        ).to_stdout
      end
    end
  end

  describe '#remove' do
    let(:arguments) { ['user@example.com'] }

    context 'when a block is present' do
      before { Fabricate(:canonical_email_block, email: 'user@example.com') }

      it 'removes the block' do
        expect { cli.invoke(:remove, arguments) }.to output(
          a_string_including('Unblocked user@example.com')
        ).to_stdout

        expect(CanonicalEmailBlock.matching_email('user@example.com')).to be_empty
      end
    end

    context 'when a block is not present' do
      it 'announces the absence of the block' do
        expect { cli.invoke(:remove, arguments) }.to output(
          a_string_including('user@example.com is not blocked')
        ).to_stdout
      end
    end
  end
end