about summary refs log tree commit diff
path: root/spec/models/glitch/keyword_mute_helper_spec.rb
blob: b3f991d5b8438cb63dde2287b0d1d438dd69e952 (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
require 'rails_helper'

RSpec.describe Glitch::KeywordMuteHelper do
  describe '#matches?' do
    let(:alice) { Fabricate(:account, username: 'alice').tap(&:save!) }
    let(:helper) { Glitch::KeywordMuteHelper.new(alice) }

    it 'ignores names of HTML tags in status text' do
      status = Fabricate(:status, text: '<addr>uh example</addr>')
      Glitch::KeywordMute.create!(account: alice, keyword: 'addr')

      expect(helper.matches?(status)).to be false
    end

    it 'ignores properties of HTML tags in status text' do
      status = Fabricate(:status, text: '<a href="https://www.example.org">uh example</a>')
      Glitch::KeywordMute.create!(account: alice, keyword: 'href')

      expect(helper.matches?(status)).to be false
    end

    it 'matches text inside HTML tags' do
      status = Fabricate(:status, text: '<p>HEY THIS IS SOMETHING ANNOYING</p>')
      Glitch::KeywordMute.create!(account: alice, keyword: 'annoying')

      expect(helper.matches?(status)).to be true
    end

    it 'matches < in HTML-stripped text' do
      status = Fabricate(:status, text: '<p>I <3 oats</p>')
      Glitch::KeywordMute.create!(account: alice, keyword: '<3')

      expect(helper.matches?(status)).to be true
    end

    it 'matches &lt; in HTML text' do
      status = Fabricate(:status, text: '<p>I &lt;3 oats</p>')
      Glitch::KeywordMute.create!(account: alice, keyword: '<3')

      expect(helper.matches?(status)).to be true
    end

    it 'matches link hrefs in HTML text' do
      status = Fabricate(:status, text: '<p><a href="https://example.com/it-was-milk">yep</a></p>')
      Glitch::KeywordMute.create!(account: alice, keyword: 'milk')

      expect(helper.matches?(status)).to be true
    end
  end
end