2017-02-24 10:53:44 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-07-18 03:59:36 -04:00
|
|
|
describe Gitlab::GitalyClient::CommitService do
|
2017-05-05 10:55:12 -04:00
|
|
|
let(:project) { create(:project, :repository) }
|
|
|
|
let(:repository) { project.repository }
|
|
|
|
let(:repository_message) { repository.gitaly_repository }
|
|
|
|
let(:commit) { project.commit('913c66a37b4a45b9769037c55c2d238bd0942d2e') }
|
2017-02-24 10:53:44 -05:00
|
|
|
|
2017-05-05 10:55:12 -04:00
|
|
|
describe '#diff_from_parent' do
|
2017-02-24 10:53:44 -05:00
|
|
|
context 'when a commit has a parent' do
|
|
|
|
it 'sends an RPC request with the parent ID as left commit' do
|
|
|
|
request = Gitaly::CommitDiffRequest.new(
|
|
|
|
repository: repository_message,
|
|
|
|
left_commit_id: 'cfe32cf61b73a0d5e9f13e774abde7ff789b1660',
|
2017-05-03 07:27:17 -04:00
|
|
|
right_commit_id: commit.id
|
2017-02-24 10:53:44 -05:00
|
|
|
)
|
|
|
|
|
2017-07-18 03:59:36 -04:00
|
|
|
expect_any_instance_of(Gitaly::DiffService::Stub).to receive(:commit_diff).with(request, kind_of(Hash))
|
2017-02-24 10:53:44 -05:00
|
|
|
|
2017-05-05 10:55:12 -04:00
|
|
|
described_class.new(repository).diff_from_parent(commit)
|
2017-02-24 10:53:44 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when a commit does not have a parent' do
|
|
|
|
it 'sends an RPC request with empty tree ref as left commit' do
|
|
|
|
initial_commit = project.commit('1a0b36b3cdad1d2ee32457c102a8c0b7056fa863')
|
|
|
|
request = Gitaly::CommitDiffRequest.new(
|
|
|
|
repository: repository_message,
|
|
|
|
left_commit_id: '4b825dc642cb6eb9a060e54bf8d69288fbee4904',
|
2017-05-03 07:27:17 -04:00
|
|
|
right_commit_id: initial_commit.id
|
2017-02-24 10:53:44 -05:00
|
|
|
)
|
|
|
|
|
2017-07-18 03:59:36 -04:00
|
|
|
expect_any_instance_of(Gitaly::DiffService::Stub).to receive(:commit_diff).with(request, kind_of(Hash))
|
2017-02-24 10:53:44 -05:00
|
|
|
|
2017-05-05 10:55:12 -04:00
|
|
|
described_class.new(repository).diff_from_parent(initial_commit)
|
2017-02-24 10:53:44 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns a Gitlab::Git::DiffCollection' do
|
2017-05-05 10:55:12 -04:00
|
|
|
ret = described_class.new(repository).diff_from_parent(commit)
|
2017-02-24 10:53:44 -05:00
|
|
|
|
|
|
|
expect(ret).to be_kind_of(Gitlab::Git::DiffCollection)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'passes options to Gitlab::Git::DiffCollection' do
|
|
|
|
options = { max_files: 31, max_lines: 13 }
|
|
|
|
|
2017-05-02 07:01:28 -04:00
|
|
|
expect(Gitlab::Git::DiffCollection).to receive(:new).with(kind_of(Enumerable), options)
|
2017-02-24 10:53:44 -05:00
|
|
|
|
2017-05-05 10:55:12 -04:00
|
|
|
described_class.new(repository).diff_from_parent(commit, options)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#commit_deltas' do
|
|
|
|
context 'when a commit has a parent' do
|
|
|
|
it 'sends an RPC request with the parent ID as left commit' do
|
|
|
|
request = Gitaly::CommitDeltaRequest.new(
|
|
|
|
repository: repository_message,
|
|
|
|
left_commit_id: 'cfe32cf61b73a0d5e9f13e774abde7ff789b1660',
|
|
|
|
right_commit_id: commit.id
|
|
|
|
)
|
|
|
|
|
2017-07-18 03:59:36 -04:00
|
|
|
expect_any_instance_of(Gitaly::DiffService::Stub).to receive(:commit_delta).with(request, kind_of(Hash)).and_return([])
|
2017-05-05 10:55:12 -04:00
|
|
|
|
|
|
|
described_class.new(repository).commit_deltas(commit)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when a commit does not have a parent' do
|
|
|
|
it 'sends an RPC request with empty tree ref as left commit' do
|
|
|
|
initial_commit = project.commit('1a0b36b3cdad1d2ee32457c102a8c0b7056fa863')
|
|
|
|
request = Gitaly::CommitDeltaRequest.new(
|
|
|
|
repository: repository_message,
|
|
|
|
left_commit_id: '4b825dc642cb6eb9a060e54bf8d69288fbee4904',
|
|
|
|
right_commit_id: initial_commit.id
|
|
|
|
)
|
|
|
|
|
2017-07-18 03:59:36 -04:00
|
|
|
expect_any_instance_of(Gitaly::DiffService::Stub).to receive(:commit_delta).with(request, kind_of(Hash)).and_return([])
|
2017-05-05 10:55:12 -04:00
|
|
|
|
|
|
|
described_class.new(repository).commit_deltas(initial_commit)
|
|
|
|
end
|
2017-02-24 10:53:44 -05:00
|
|
|
end
|
|
|
|
end
|
2017-06-23 17:52:51 -04:00
|
|
|
|
|
|
|
describe '#between' do
|
|
|
|
let(:from) { 'master' }
|
|
|
|
let(:to) { '4b825dc642cb6eb9a060e54bf8d69288fbee4904' }
|
|
|
|
it 'sends an RPC request' do
|
|
|
|
request = Gitaly::CommitsBetweenRequest.new(
|
|
|
|
repository: repository_message, from: from, to: to
|
|
|
|
)
|
|
|
|
|
|
|
|
expect_any_instance_of(Gitaly::CommitService::Stub).to receive(:commits_between)
|
|
|
|
.with(request, kind_of(Hash)).and_return([])
|
|
|
|
|
|
|
|
described_class.new(repository).between(from, to)
|
|
|
|
end
|
|
|
|
end
|
2017-02-24 10:53:44 -05:00
|
|
|
end
|