Commit 081d1780 authored by Patrick Steinhardt's avatar Patrick Steinhardt

repository: Let `#new_blobs` accept multiple new revisions

Let `#new_blobs` accept multiple new revisions such that it's possible
to compute new blobs across multiple changes instead of having to load
blobs per changed ref.
parent fb65481d
...@@ -360,12 +360,17 @@ module Gitlab ...@@ -360,12 +360,17 @@ module Gitlab
end end
end end
def new_blobs(newrev, dynamic_timeout: nil) def new_blobs(newrevs, dynamic_timeout: nil)
return [] if newrev.blank? || newrev == ::Gitlab::Git::BLANK_SHA newrevs = Array.wrap(newrevs).reject { |rev| rev.blank? || rev == ::Gitlab::Git::BLANK_SHA }
return [] if newrevs.empty?
strong_memoize("new_blobs_#{newrev}") do newrevs = newrevs.uniq.sort
blobs(['--not', '--all', '--not', newrev], with_paths: true, dynamic_timeout: dynamic_timeout)
@new_blobs ||= Hash.new do |h, revs|
h[revs] = blobs(['--not', '--all', '--not'] + newrevs, with_paths: true, dynamic_timeout: dynamic_timeout)
end end
@new_blobs[newrevs]
end end
# List blobs reachable via a set of revisions. Supports the # List blobs reachable via a set of revisions. Supports the
......
...@@ -939,15 +939,20 @@ RSpec.describe Gitlab::Git::Repository, :seed_helper do ...@@ -939,15 +939,20 @@ RSpec.describe Gitlab::Git::Repository, :seed_helper do
describe '#new_blobs' do describe '#new_blobs' do
let(:repository) { mutable_repository } let(:repository) { mutable_repository }
let(:repository_rugged) { mutable_repository_rugged } let(:repository_rugged) { mutable_repository_rugged }
let(:new_blob) do let(:blob) { create_blob('This is a new blob') }
repository_rugged.write('This is a new blob', :blob) let(:commit) { create_commit('nested/new-blob.txt' => blob) }
def create_blob(content)
repository_rugged.write(content, :blob)
end end
let(:new_commit) do def create_commit(blobs)
author = { name: 'Test User', email: 'mail@example.com', time: Time.now } author = { name: 'Test User', email: 'mail@example.com', time: Time.now }
index = repository_rugged.index index = repository_rugged.index
index.add(path: 'nested/new-blob.txt', oid: new_blob, mode: 0100644) blobs.each do |path, oid|
index.add(path: path, oid: oid, mode: 0100644)
end
Rugged::Commit.create(repository_rugged, Rugged::Commit.create(repository_rugged,
author: author, author: author,
...@@ -957,24 +962,130 @@ RSpec.describe Gitlab::Git::Repository, :seed_helper do ...@@ -957,24 +962,130 @@ RSpec.describe Gitlab::Git::Repository, :seed_helper do
tree: index.write_tree(repository_rugged)) tree: index.write_tree(repository_rugged))
end end
subject { repository.new_blobs(new_commit).to_a } subject { repository.new_blobs(newrevs).to_a }
before do shared_examples '#new_blobs with revisions' do
expect_next_instance_of(Gitlab::GitalyClient::BlobService) do |service| before do
expect(service) expect_next_instance_of(Gitlab::GitalyClient::BlobService) do |service|
.to receive(:list_blobs) expect(service)
.with(['--not', '--all', '--not', new_commit], .to receive(:list_blobs)
limit: Gitlab::Git::Repository::REV_LIST_COMMIT_LIMIT, .with(expected_newrevs,
with_paths: true, limit: Gitlab::Git::Repository::REV_LIST_COMMIT_LIMIT,
dynamic_timeout: nil) with_paths: true,
.and_call_original dynamic_timeout: nil)
.once
.and_call_original
end
end
it 'enumerates new blobs' do
expect(subject).to match_array(expected_blobs)
end
it 'memoizes results' do
expect(subject).to match_array(expected_blobs)
expect(subject).to match_array(expected_blobs)
end end
end end
it 'enumerates new blobs' do context 'with a single revision' do
expect(subject).to match_array( let(:newrevs) { commit }
[have_attributes(class: Gitlab::Git::Blob, id: new_blob, path: 'nested/new-blob.txt', size: 18)] let(:expected_newrevs) { ['--not', '--all', '--not', newrevs] }
) let(:expected_blobs) do
[have_attributes(class: Gitlab::Git::Blob, id: blob, path: 'nested/new-blob.txt', size: 18)]
end
it_behaves_like '#new_blobs with revisions'
end
context 'with a single-entry array' do
let(:newrevs) { [commit] }
let(:expected_newrevs) { ['--not', '--all', '--not'] + newrevs }
let(:expected_blobs) do
[have_attributes(class: Gitlab::Git::Blob, id: blob, path: 'nested/new-blob.txt', size: 18)]
end
it_behaves_like '#new_blobs with revisions'
end
context 'with multiple revisions' do
let(:another_blob) { create_blob('Another blob') }
let(:newrevs) { [commit, create_commit('another_path.txt' => another_blob)] }
let(:expected_newrevs) { ['--not', '--all', '--not'] + newrevs.sort }
let(:expected_blobs) do
[
have_attributes(class: Gitlab::Git::Blob, id: blob, path: 'nested/new-blob.txt', size: 18),
have_attributes(class: Gitlab::Git::Blob, id: another_blob, path: 'another_path.txt', size: 12)
]
end
it_behaves_like '#new_blobs with revisions'
end
context 'with partially blank revisions' do
let(:newrevs) { [nil, commit, Gitlab::Git::BLANK_SHA] }
let(:expected_newrevs) { ['--not', '--all', '--not', commit] }
let(:expected_blobs) do
[
have_attributes(class: Gitlab::Git::Blob, id: blob, path: 'nested/new-blob.txt', size: 18)
]
end
it_behaves_like '#new_blobs with revisions'
end
context 'with repeated revisions' do
let(:newrevs) { [commit, commit, commit] }
let(:expected_newrevs) { ['--not', '--all', '--not', commit] }
let(:expected_blobs) do
[
have_attributes(class: Gitlab::Git::Blob, id: blob, path: 'nested/new-blob.txt', size: 18)
]
end
it_behaves_like '#new_blobs with revisions'
end
context 'with preexisting commits' do
let(:newrevs) { ['refs/heads/master'] }
let(:expected_newrevs) { ['--not', '--all', '--not'] + newrevs }
let(:expected_blobs) { [] }
it_behaves_like '#new_blobs with revisions'
end
shared_examples '#new_blobs without revisions' do
before do
expect(Gitlab::GitalyClient::BlobService).not_to receive(:new)
end
it 'returns an empty array' do
expect(subject).to eq([])
end
end
context 'with a single nil newrev' do
let(:newrevs) { nil }
it_behaves_like '#new_blobs without revisions'
end
context 'with a single zero newrev' do
let(:newrevs) { Gitlab::Git::BLANK_SHA }
it_behaves_like '#new_blobs without revisions'
end
context 'with an empty array' do
let(:newrevs) { [] }
it_behaves_like '#new_blobs without revisions'
end
context 'with array containing only empty refs' do
let(:newrevs) { [nil, Gitlab::Git::BLANK_SHA] }
it_behaves_like '#new_blobs without revisions'
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment