summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/banzai/filters/emoji_shared_examples.rb
blob: da305f5ccaa801eed685998b3129056cd4733a47 (plain)
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
# frozen_string_literal: true

RSpec.shared_examples 'emoji filter' do
  it 'keeps whitespace intact' do
    doc = filter("This deserves a #{emoji_name}, big time.")

    expect(doc.to_html).to match(/^This deserves a <gl-emoji.+>, big time\.\z/)
  end

  it 'does not match emoji in a string' do
    doc = filter("'2a00:a4c0#{emoji_name}:1'")

    expect(doc.css('gl-emoji')).to be_empty
  end

  it 'ignores non existent/unsupported emoji' do
    exp = '<p>:foo:</p>'
    doc = filter(exp)

    expect(doc.to_html).to eq(exp)
  end

  it 'matches with adjacent text' do
    doc = filter("#{emoji_name.delete(':')} (#{emoji_name})")

    expect(doc.css('gl-emoji').size).to eq 1
  end

  it 'does not match emoji in a pre tag' do
    doc = filter("<p><pre>#{emoji_name}</pre></p>")

    expect(doc.css('img')).to be_empty
  end

  it 'does not match emoji in code tag' do
    doc = filter("<p><code>#{emoji_name} wow</code></p>")

    expect(doc.css('img')).to be_empty
  end

  it 'does not match emoji in tt tag' do
    doc = filter("<p><tt>#{emoji_name} yes!</tt></p>")

    expect(doc.css('img')).to be_empty
  end
end