2016-01-19 16:12:03 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Gitlab::Ci::Build::Artifacts::Metadata do
|
2016-01-29 22:53:50 +05:30
|
|
|
def metadata(path = '', **opts)
|
2018-11-18 11:00:15 +05:30
|
|
|
described_class.new(metadata_file_stream, path, **opts)
|
2016-01-19 16:12:03 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
let(:metadata_file_path) do
|
|
|
|
Rails.root + 'spec/fixtures/ci_build_artifacts_metadata.gz'
|
|
|
|
end
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
let(:metadata_file_stream) do
|
|
|
|
File.open(metadata_file_path) if metadata_file_path
|
|
|
|
end
|
|
|
|
|
|
|
|
after do
|
|
|
|
metadata_file_stream&.close
|
|
|
|
end
|
|
|
|
|
2016-01-19 16:12:03 +05:30
|
|
|
context 'metadata file exists' do
|
|
|
|
describe '#find_entries! empty string' do
|
|
|
|
subject { metadata('').find_entries! }
|
|
|
|
|
|
|
|
it 'matches correct paths' do
|
|
|
|
expect(subject.keys).to contain_exactly 'ci_artifacts.txt',
|
|
|
|
'other_artifacts_0.1.2/',
|
|
|
|
'rails_sample.jpg',
|
|
|
|
'tests_encoding/'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'matches metadata for every path' do
|
|
|
|
expect(subject.keys.count).to eq 4
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'return Hashes for each metadata' do
|
|
|
|
expect(subject.values).to all(be_kind_of(Hash))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#find_entries! other_artifacts_0.1.2/' do
|
|
|
|
subject { metadata('other_artifacts_0.1.2/').find_entries! }
|
|
|
|
|
|
|
|
it 'matches correct paths' do
|
2017-09-10 17:25:29 +05:30
|
|
|
expect(subject.keys)
|
|
|
|
.to contain_exactly 'other_artifacts_0.1.2/',
|
2016-01-19 16:12:03 +05:30
|
|
|
'other_artifacts_0.1.2/doc_sample.txt',
|
|
|
|
'other_artifacts_0.1.2/another-subdirectory/'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#find_entries! other_artifacts_0.1.2/another-subdirectory/' do
|
|
|
|
subject { metadata('other_artifacts_0.1.2/another-subdirectory/').find_entries! }
|
|
|
|
|
|
|
|
it 'matches correct paths' do
|
2017-09-10 17:25:29 +05:30
|
|
|
expect(subject.keys)
|
|
|
|
.to contain_exactly 'other_artifacts_0.1.2/another-subdirectory/',
|
2016-01-29 22:53:50 +05:30
|
|
|
'other_artifacts_0.1.2/another-subdirectory/empty_directory/',
|
|
|
|
'other_artifacts_0.1.2/another-subdirectory/banana_sample.gif'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#find_entries! recursively for other_artifacts_0.1.2/' do
|
|
|
|
subject { metadata('other_artifacts_0.1.2/', recursive: true).find_entries! }
|
|
|
|
|
|
|
|
it 'matches correct paths' do
|
2017-09-10 17:25:29 +05:30
|
|
|
expect(subject.keys)
|
|
|
|
.to contain_exactly 'other_artifacts_0.1.2/',
|
2016-01-29 22:53:50 +05:30
|
|
|
'other_artifacts_0.1.2/doc_sample.txt',
|
|
|
|
'other_artifacts_0.1.2/another-subdirectory/',
|
2016-01-19 16:12:03 +05:30
|
|
|
'other_artifacts_0.1.2/another-subdirectory/empty_directory/',
|
|
|
|
'other_artifacts_0.1.2/another-subdirectory/banana_sample.gif'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#to_entry' do
|
|
|
|
subject { metadata('').to_entry }
|
|
|
|
it { is_expected.to be_an_instance_of(Gitlab::Ci::Build::Artifacts::Metadata::Entry) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#full_version' do
|
|
|
|
subject { metadata('').full_version }
|
|
|
|
it { is_expected.to eq 'GitLab Build Artifacts Metadata 0.0.1' }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#version' do
|
|
|
|
subject { metadata('').version }
|
|
|
|
it { is_expected.to eq '0.0.1' }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#errors' do
|
|
|
|
subject { metadata('').errors }
|
|
|
|
it { is_expected.to eq({}) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'metadata file does not exist' do
|
2018-11-18 11:00:15 +05:30
|
|
|
let(:metadata_file_path) { nil }
|
|
|
|
|
|
|
|
describe '#find_entries!' do
|
|
|
|
it 'raises error' do
|
|
|
|
expect { metadata.find_entries! }.to raise_error(described_class::InvalidStreamError, /Invalid stream/)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'metadata file is invalid' do
|
|
|
|
let(:metadata_file_path) { Rails.root + 'spec/fixtures/ci_build_artifacts.zip' }
|
2016-01-19 16:12:03 +05:30
|
|
|
|
|
|
|
describe '#find_entries!' do
|
|
|
|
it 'raises error' do
|
2018-11-18 11:00:15 +05:30
|
|
|
expect { metadata.find_entries! }.to raise_error(described_class::InvalidStreamError, /not in gzip format/)
|
2016-01-19 16:12:03 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
|
|
context 'generated metadata' do
|
|
|
|
let(:tmpfile) { Tempfile.new('test-metadata') }
|
|
|
|
let(:generator) { CiArtifactMetadataGenerator.new(tmpfile) }
|
|
|
|
let(:entry_count) { 5 }
|
|
|
|
|
|
|
|
before do
|
|
|
|
tmpfile.binmode
|
|
|
|
|
|
|
|
(1..entry_count).each do |index|
|
|
|
|
generator.add_entry("public/test-#{index}.txt")
|
|
|
|
end
|
|
|
|
|
|
|
|
generator.write
|
|
|
|
end
|
|
|
|
|
|
|
|
after do
|
|
|
|
File.unlink(tmpfile.path)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#find_entries!' do
|
|
|
|
it 'reads expected number of entries' do
|
|
|
|
stream = File.open(tmpfile.path)
|
|
|
|
|
|
|
|
metadata = described_class.new(stream, 'public', { recursive: true })
|
|
|
|
|
|
|
|
expect(metadata.find_entries!.count).to eq entry_count
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-01-19 16:12:03 +05:30
|
|
|
end
|