summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/template/finders/repo_template_finders_spec.rb
blob: 2eabccd5dff5225e4b0f57c5b6ad05a1a66f3551 (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
require 'spec_helper'

describe Gitlab::Template::Finders::RepoTemplateFinder do
  set(:project) { create(:project, :repository) }

  let(:categories) { { 'HTML' => 'html' } }

  subject(:finder) { described_class.new(project, 'files/', '.html', categories) }

  describe '#read' do
    it 'returns the content of the given path' do
      result = finder.read('files/html/500.html')

      expect(result).to be_present
    end

    it 'raises an error if the path does not exist' do
      expect { finder.read('does/not/exist') }.to raise_error(described_class::FileNotFoundError)
    end
  end

  describe '#find' do
    it 'returns the full path of the found template' do
      result = finder.find('500')

      expect(result).to eq('files/html/500.html')
    end
  end

  describe '#list_files_for' do
    it 'returns the full path of the found files' do
      result = finder.list_files_for('files/html')

      expect(result).to contain_exactly('files/html/500.html')
    end
  end
end