084a8b6101
Whenever a git push takes more than 50 seconds the user will receive a trace from each check performed along with their timings
23 lines
770 B
Ruby
23 lines
770 B
Ruby
require 'spec_helper'
|
|
|
|
describe Gitlab::Git::LfsChanges do
|
|
set(:project) { create(:project, :repository) }
|
|
let(:newrev) { '54fcc214b94e78d7a41a9a8fe6d87a5e59500e51' }
|
|
let(:blob_object_id) { '0c304a93cb8430108629bbbcaa27db3343299bc0' }
|
|
|
|
subject { described_class.new(project.repository, newrev) }
|
|
|
|
describe '#new_pointers' do
|
|
it 'filters new objects to find lfs pointers' do
|
|
expect(subject.new_pointers(not_in: []).first.id).to eq(blob_object_id)
|
|
end
|
|
|
|
it 'limits new_objects using object_limit' do
|
|
expect(subject.new_pointers(object_limit: 1)).to eq([])
|
|
end
|
|
|
|
it 'times out if given a small dynamic timeout' do
|
|
expect { subject.new_pointers(dynamic_timeout: 0.001) }.to raise_error(GRPC::DeadlineExceeded)
|
|
end
|
|
end
|
|
end
|