summaryrefslogtreecommitdiff
path: root/spec/models/design_management/repository_spec.rb
blob: 0115e0c139c5ea279e54e5bca1c0dfd18d1a2694 (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
51
52
53
54
55
56
57
58
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe DesignManagement::Repository do
  let(:project) { create(:project) }
  let(:repository) { described_class.new(project) }

  shared_examples 'returns parsed git attributes that enable LFS for all file types' do
    it do
      expect(subject.patterns).to be_a_kind_of(Hash)
      expect(subject.patterns).to have_key('/designs/*')
      expect(subject.patterns['/designs/*']).to eql(
        { "filter" => "lfs", "diff" => "lfs", "merge" => "lfs", "text" => false }
      )
    end
  end

  describe "#info_attributes" do
    subject { repository.info_attributes }

    include_examples 'returns parsed git attributes that enable LFS for all file types'
  end

  describe '#attributes_at' do
    subject { repository.attributes_at }

    include_examples 'returns parsed git attributes that enable LFS for all file types'
  end

  describe '#gitattribute' do
    it 'returns a gitattribute when path has gitattributes' do
      expect(repository.gitattribute('/designs/file.txt', 'filter')).to eq('lfs')
    end

    it 'returns nil when path has no gitattributes' do
      expect(repository.gitattribute('/invalid/file.txt', 'filter')).to be_nil
    end
  end

  describe '#copy_gitattributes' do
    it 'always returns regardless of whether given a valid or invalid ref' do
      expect(repository.copy_gitattributes('master')).to be true
      expect(repository.copy_gitattributes('invalid')).to be true
    end
  end

  describe '#attributes' do
    it 'confirms that all files are LFS enabled' do
      %w(png zip anything).each do |filetype|
        path = "/#{DesignManagement.designs_directory}/file.#{filetype}"
        attributes = repository.attributes(path)

        expect(attributes['filter']).to eq('lfs')
      end
    end
  end
end