2020-05-04 02:10:10 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 14:09:03 -04:00
|
|
|
RSpec.describe DesignManagement::Repository do
|
2020-05-04 02:10:10 -04:00
|
|
|
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
|