2019-12-26 22:10:19 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe Gitlab::GitalyClient::BlobService do
|
2018-03-27 19:54:05 +05:30
|
|
|
let(:project) { create(:project, :repository) }
|
|
|
|
let(:storage_name) { project.repository_storage }
|
|
|
|
let(:relative_path) { project.disk_path + '.git' }
|
|
|
|
let(:repository) { project.repository }
|
|
|
|
let(:client) { described_class.new(repository) }
|
|
|
|
|
|
|
|
describe '#get_new_lfs_pointers' do
|
|
|
|
let(:revision) { 'master' }
|
|
|
|
let(:limit) { 5 }
|
2020-03-13 15:44:24 +05:30
|
|
|
let(:not_in) { %w[branch-a branch-b] }
|
2018-03-27 19:54:05 +05:30
|
|
|
let(:expected_params) do
|
2021-04-29 21:17:54 +05:30
|
|
|
{ revisions: ["master", "--not", "branch-a", "branch-b"], limit: limit }
|
2018-03-27 19:54:05 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
subject { client.get_new_lfs_pointers(revision, limit, not_in) }
|
|
|
|
|
|
|
|
it 'sends a get_new_lfs_pointers message' do
|
|
|
|
expect_any_instance_of(Gitaly::BlobService::Stub)
|
2021-04-29 21:17:54 +05:30
|
|
|
.to receive(:list_lfs_pointers)
|
2018-03-27 19:54:05 +05:30
|
|
|
.with(gitaly_request_with_params(expected_params), kind_of(Hash))
|
|
|
|
.and_return([])
|
|
|
|
|
|
|
|
subject
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with not_in = :all' do
|
|
|
|
let(:not_in) { :all }
|
|
|
|
let(:expected_params) do
|
2021-04-29 21:17:54 +05:30
|
|
|
{ revisions: ["master", "--not", "--all"], limit: limit }
|
2018-03-27 19:54:05 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'sends the correct message' do
|
|
|
|
expect_any_instance_of(Gitaly::BlobService::Stub)
|
2021-04-29 21:17:54 +05:30
|
|
|
.to receive(:list_lfs_pointers)
|
|
|
|
.with(gitaly_request_with_params(expected_params), kind_of(Hash))
|
|
|
|
.and_return([])
|
|
|
|
|
|
|
|
subject
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with hook environment' do
|
|
|
|
let(:git_env) do
|
|
|
|
{
|
|
|
|
'GIT_OBJECT_DIRECTORY_RELATIVE' => '.git/objects',
|
|
|
|
'GIT_ALTERNATE_OBJECT_DIRECTORIES_RELATIVE' => ['/dir/one', '/dir/two']
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:expected_params) do
|
|
|
|
expected_repository = repository.gitaly_repository
|
|
|
|
expected_repository.git_alternate_object_directories = Google::Protobuf::RepeatedField.new(:string)
|
|
|
|
|
|
|
|
{ limit: limit, repository: expected_repository }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'sends a list_all_lfs_pointers message' do
|
|
|
|
allow(Gitlab::Git::HookEnv).to receive(:all).with(repository.gl_repository).and_return(git_env)
|
|
|
|
|
|
|
|
expect_any_instance_of(Gitaly::BlobService::Stub)
|
|
|
|
.to receive(:list_all_lfs_pointers)
|
2018-03-27 19:54:05 +05:30
|
|
|
.with(gitaly_request_with_params(expected_params), kind_of(Hash))
|
|
|
|
.and_return([])
|
|
|
|
|
|
|
|
subject
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#get_all_lfs_pointers' do
|
2021-04-29 21:17:54 +05:30
|
|
|
let(:expected_params) do
|
|
|
|
{ revisions: ["--all"], limit: 0 }
|
|
|
|
end
|
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
subject { client.get_all_lfs_pointers }
|
2018-03-27 19:54:05 +05:30
|
|
|
|
|
|
|
it 'sends a get_all_lfs_pointers message' do
|
|
|
|
expect_any_instance_of(Gitaly::BlobService::Stub)
|
2021-04-29 21:17:54 +05:30
|
|
|
.to receive(:list_lfs_pointers)
|
|
|
|
.with(gitaly_request_with_params(expected_params), kind_of(Hash))
|
2018-03-27 19:54:05 +05:30
|
|
|
.and_return([])
|
|
|
|
|
|
|
|
subject
|
|
|
|
end
|
|
|
|
end
|
2021-09-30 23:02:18 +05:30
|
|
|
|
|
|
|
describe '#list_blobs' do
|
|
|
|
let(:limit) { 0 }
|
|
|
|
let(:bytes_limit) { 0 }
|
2021-11-11 11:23:49 +05:30
|
|
|
let(:with_paths) { false }
|
|
|
|
let(:expected_params) { { revisions: revisions, limit: limit, bytes_limit: bytes_limit, with_paths: with_paths } }
|
2021-09-30 23:02:18 +05:30
|
|
|
|
|
|
|
before do
|
|
|
|
::Gitlab::GitalyClient.clear_stubs!
|
|
|
|
end
|
|
|
|
|
2021-11-11 11:23:49 +05:30
|
|
|
subject { client.list_blobs(revisions, limit: limit, bytes_limit: bytes_limit, with_paths: with_paths) }
|
2021-09-30 23:02:18 +05:30
|
|
|
|
|
|
|
context 'with a single revision' do
|
|
|
|
let(:revisions) { ['master'] }
|
|
|
|
|
|
|
|
it 'sends a list_blobs message' do
|
|
|
|
expect_next_instance_of(Gitaly::BlobService::Stub) do |service|
|
|
|
|
expect(service)
|
|
|
|
.to receive(:list_blobs)
|
|
|
|
.with(gitaly_request_with_params(expected_params), kind_of(Hash))
|
|
|
|
.and_return([])
|
|
|
|
end
|
|
|
|
|
|
|
|
subject
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with multiple revisions' do
|
|
|
|
let(:revisions) { ['master', '--not', '--all'] }
|
|
|
|
|
|
|
|
it 'sends a list_blobs message' do
|
|
|
|
expect_next_instance_of(Gitaly::BlobService::Stub) do |service|
|
|
|
|
expect(service)
|
|
|
|
.to receive(:list_blobs)
|
|
|
|
.with(gitaly_request_with_params(expected_params), kind_of(Hash))
|
|
|
|
.and_return([])
|
|
|
|
end
|
|
|
|
|
|
|
|
subject
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with multiple revisions and limits' do
|
|
|
|
let(:revisions) { ['master', '--not', '--all'] }
|
|
|
|
let(:limit) { 10 }
|
|
|
|
let(:bytes_lmit) { 1024 }
|
|
|
|
|
|
|
|
it 'sends a list_blobs message' do
|
|
|
|
expect_next_instance_of(Gitaly::BlobService::Stub) do |service|
|
|
|
|
expect(service)
|
|
|
|
.to receive(:list_blobs)
|
|
|
|
.with(gitaly_request_with_params(expected_params), kind_of(Hash))
|
|
|
|
.and_return([])
|
|
|
|
end
|
|
|
|
|
|
|
|
subject
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-11-11 11:23:49 +05:30
|
|
|
context 'with paths' do
|
|
|
|
let(:revisions) { ['master'] }
|
|
|
|
let(:limit) { 10 }
|
|
|
|
let(:bytes_lmit) { 1024 }
|
|
|
|
let(:with_paths) { true }
|
|
|
|
|
|
|
|
it 'sends a list_blobs message' do
|
|
|
|
expect_next_instance_of(Gitaly::BlobService::Stub) do |service|
|
|
|
|
expect(service)
|
|
|
|
.to receive(:list_blobs)
|
|
|
|
.with(gitaly_request_with_params(expected_params), kind_of(Hash))
|
|
|
|
.and_return([])
|
|
|
|
end
|
|
|
|
|
|
|
|
subject
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
context 'with split contents' do
|
|
|
|
let(:revisions) { ['master'] }
|
|
|
|
|
|
|
|
it 'sends a list_blobs message', :aggregate_failures do
|
|
|
|
expect_next_instance_of(Gitaly::BlobService::Stub) do |service|
|
|
|
|
expect(service)
|
|
|
|
.to receive(:list_blobs)
|
|
|
|
.with(gitaly_request_with_params(expected_params), kind_of(Hash))
|
|
|
|
.and_return([
|
|
|
|
Gitaly::ListBlobsResponse.new(blobs: [
|
|
|
|
Gitaly::ListBlobsResponse::Blob.new(oid: "012345", size: 8, data: "0x01"),
|
|
|
|
Gitaly::ListBlobsResponse::Blob.new(data: "23")
|
|
|
|
]),
|
|
|
|
Gitaly::ListBlobsResponse.new(blobs: [
|
|
|
|
Gitaly::ListBlobsResponse::Blob.new(data: "45"),
|
|
|
|
Gitaly::ListBlobsResponse::Blob.new(oid: "56", size: 4, data: "0x5"),
|
|
|
|
Gitaly::ListBlobsResponse::Blob.new(data: "6")
|
|
|
|
]),
|
|
|
|
Gitaly::ListBlobsResponse.new(blobs: [
|
|
|
|
Gitaly::ListBlobsResponse::Blob.new(oid: "78", size: 4, data: "0x78")
|
|
|
|
])
|
|
|
|
])
|
|
|
|
end
|
|
|
|
|
|
|
|
blobs = subject.to_a
|
|
|
|
expect(blobs.size).to be(3)
|
|
|
|
|
|
|
|
expect(blobs[0].id).to eq('012345')
|
|
|
|
expect(blobs[0].size).to eq(8)
|
|
|
|
expect(blobs[0].data).to eq('0x012345')
|
|
|
|
|
|
|
|
expect(blobs[1].id).to eq('56')
|
|
|
|
expect(blobs[1].size).to eq(4)
|
|
|
|
expect(blobs[1].data).to eq('0x56')
|
|
|
|
|
|
|
|
expect(blobs[2].id).to eq('78')
|
|
|
|
expect(blobs[2].size).to eq(4)
|
|
|
|
expect(blobs[2].data).to eq('0x78')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-03-27 19:54:05 +05:30
|
|
|
end
|