d2a77094ae
Uses Lfs::FileModificationHandler to coordinate LFS detection, creation of LfsObject, etc Caveats: 1. This isn't used by the multi-file editor / Web IDE 2. This isn't used on rename. We'd need to be able to download LFS files and add them to the commit if they no longer match so not as simple. 3. We only check the root .gitattributes file, so this should be improved to correctly check for nested .gitattributes files in subfolders.
37 lines
893 B
Ruby
37 lines
893 B
Ruby
require 'spec_helper'
|
|
|
|
describe Gitlab::Git::LfsPointerFile do
|
|
let(:data) { "1234\n" }
|
|
|
|
subject { described_class.new(data) }
|
|
|
|
describe '#size' do
|
|
it 'counts the bytes' do
|
|
expect(subject.size).to eq 5
|
|
end
|
|
|
|
it 'handles non ascii data' do
|
|
expect(described_class.new("ääää").size).to eq 8
|
|
end
|
|
end
|
|
|
|
describe '#sha256' do
|
|
it 'hashes the content correctly' do
|
|
expect(subject.sha256).to eq 'a883dafc480d466ee04e0d6da986bd78eb1fdd2178d04693723da3a8f95d42f4'
|
|
end
|
|
end
|
|
|
|
describe '#pointer' do
|
|
it 'starts with the LFS version' do
|
|
expect(subject.pointer).to start_with('version https://git-lfs.github.com/spec/v1')
|
|
end
|
|
|
|
it 'includes sha256' do
|
|
expect(subject.pointer).to match(/^oid sha256:[0-9a-fA-F]{64}/)
|
|
end
|
|
|
|
it 'ends with the size' do
|
|
expect(subject.pointer).to end_with("\nsize 5\n")
|
|
end
|
|
end
|
|
end
|