about summary refs log tree commit diff
path: root/spec/validators/disallowed_hashtags_validator_spec.rb
blob: 896fd4fc5ee4b2f0bec495c69a6c7763307e8a5e (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
# frozen_string_literal: true

require 'rails_helper'

RSpec.describe DisallowedHashtagsValidator, type: :validator do
  let(:disallowed_tags) { [] }

  describe '#validate' do
    before do
      disallowed_tags.each { |name| Fabricate(:tag, name: name, usable: false) }
      described_class.new.validate(status)
    end

    let(:status) { double(errors: errors, local?: local, reblog?: reblog, text: disallowed_tags.map { |x| "##{x}" }.join(' ')) }
    let(:errors) { double(add: nil) }

    context 'for a remote reblog' do
      let(:local)  { false }
      let(:reblog) { true }

      it 'does not add errors' do
        expect(errors).to_not have_received(:add).with(:text, any_args)
      end
    end

    context 'for a local original status' do
      let(:local)  { true }
      let(:reblog) { false }

      context 'when does not contain any disallowed hashtags' do
        let(:disallowed_tags) { [] }

        it 'does not add errors' do
          expect(errors).to_not have_received(:add).with(:text, any_args)
        end
      end

      context 'when contains disallowed hashtags' do
        let(:disallowed_tags) { %w(a b c) }

        it 'adds an error' do
          expect(errors).to have_received(:add)
            .with(:text, I18n.t('statuses.disallowed_hashtags', tags: disallowed_tags.join(', '), count: disallowed_tags.size))
        end
      end
    end
  end
end