Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/gitlab/checks/file_size_check/hook_environment_aware_any_oversized_blobs_spec.rb')
-rw-r--r--spec/lib/gitlab/checks/file_size_check/hook_environment_aware_any_oversized_blobs_spec.rb75
1 files changed, 75 insertions, 0 deletions
diff --git a/spec/lib/gitlab/checks/file_size_check/hook_environment_aware_any_oversized_blobs_spec.rb b/spec/lib/gitlab/checks/file_size_check/hook_environment_aware_any_oversized_blobs_spec.rb
new file mode 100644
index 00000000000..bea0c02cfb8
--- /dev/null
+++ b/spec/lib/gitlab/checks/file_size_check/hook_environment_aware_any_oversized_blobs_spec.rb
@@ -0,0 +1,75 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe Gitlab::Checks::FileSizeCheck::HookEnvironmentAwareAnyOversizedBlobs, feature_category: :source_code_management do
+ let_it_be(:project) { create(:project, :small_repo) }
+ let(:repository) { project.repository }
+ let(:file_size_limit) { 1 }
+ let(:any_quarantined_blobs) do
+ described_class.new(
+ project: project,
+ changes: changes,
+ file_size_limit_megabytes: file_size_limit)
+ end
+
+ let(:changes) { [{ newrev: 'master' }] }
+
+ describe '#find' do
+ subject { any_quarantined_blobs.find }
+
+ let(:stubbed_result) { 'stubbed' }
+
+ it 'returns the result from AnyOversizedBlobs' do
+ expect_next_instance_of(Gitlab::Checks::FileSizeCheck::AnyOversizedBlobs) do |instance|
+ expect(instance).to receive(:find).and_return(stubbed_result)
+ end
+
+ expect(subject).to eq(stubbed_result)
+ end
+
+ context 'with hook env' do
+ context 'with hook environment' do
+ let(:git_env) do
+ {
+ 'GIT_OBJECT_DIRECTORY_RELATIVE' => "objects",
+ 'GIT_ALTERNATE_OBJECT_DIRECTORIES_RELATIVE' => ['/dir/one', '/dir/two']
+ }
+ end
+
+ before do
+ allow(Gitlab::Git::HookEnv).to receive(:all).with(repository.gl_repository).and_return(git_env)
+ end
+
+ it 'returns an emtpy array' do
+ expect(subject).to eq([])
+ end
+
+ context 'when the file is over the limit' do
+ let(:file_size_limit) { 0 }
+
+ context 'when the blob does not exist in the repo' do
+ before do
+ allow(repository.gitaly_commit_client).to receive(:object_existence_map).and_return(Hash.new { false })
+ end
+
+ it 'returns an array with the blobs that are over the limit' do
+ expect(subject.size).to eq(1)
+ expect(subject.first).to be_kind_of(Gitlab::Git::Blob)
+ end
+ end
+
+ context 'when the blob exists in the repo' do
+ before do
+ allow(repository.gitaly_commit_client).to receive(:object_existence_map).and_return(Hash.new { true })
+ end
+
+ it 'filters out the blobs in the repo' do
+ expect(subject).to eq([])
+ end
+ end
+ end
+ end
+ end
+ end
+end