summaryrefslogtreecommitdiff
path: root/spec/lib/banzai/filter/video_link_filter_spec.rb
blob: 81dda0687f351f1e2467cb05e38b78138f20c90e (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
47
48
49
50
require 'spec_helper'

describe Banzai::Filter::VideoLinkFilter do
  def filter(doc, contexts = {})
    contexts.reverse_merge!({
      project: project
    })

    described_class.call(doc, contexts)
  end

  def link_to_image(path)
    %(<img src="#{path}" />)
  end

  let(:project) { create(:project, :repository) }

  context 'when the element src has a video extension' do
    UploaderHelper::VIDEO_EXT.each do |ext|
      it "replaces the image tag 'path/video.#{ext}' with a video tag" do
        container = filter(link_to_image("/path/video.#{ext}")).children.first

        expect(container.name).to eq 'div'
        expect(container['class']).to eq 'video-container'

        video, paragraph = container.children

        expect(video.name).to eq 'video'
        expect(video['src']).to eq "/path/video.#{ext}"

        expect(paragraph.name).to eq 'p'

        link = paragraph.children.first

        expect(link.name).to eq 'a'
        expect(link['href']).to eq "/path/video.#{ext}"
        expect(link['target']).to eq '_blank'
      end
    end
  end

  context 'when the element src is an image' do
    it 'leaves the document unchanged' do
      element = filter(link_to_image('/path/my_image.jpg')).children.first

      expect(element.name).to eq 'img'
      expect(element['src']).to eq '/path/my_image.jpg'
    end
  end
end