2019-10-15 05:06:09 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-12-14 05:49:35 -05:00
|
|
|
require 'rake_helper'
|
|
|
|
|
2020-06-24 11:08:50 -04:00
|
|
|
RSpec.describe 'gitlab:git rake tasks' do
|
2018-07-03 18:20:51 -04:00
|
|
|
let(:base_path) { 'tmp/tests/default_storage' }
|
2018-07-24 06:17:29 -04:00
|
|
|
let!(:project) { create(:project, :repository) }
|
2018-03-14 09:42:49 -04:00
|
|
|
|
2017-12-14 05:49:35 -05:00
|
|
|
before do
|
|
|
|
Rake.application.rake_require 'tasks/gitlab/git'
|
|
|
|
|
2018-01-04 05:02:43 -05:00
|
|
|
allow_any_instance_of(String).to receive(:color) { |string, _color| string }
|
|
|
|
|
2017-12-14 08:53:34 -05:00
|
|
|
stub_warn_user_is_not_gitlab
|
2017-12-14 05:49:35 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'fsck' do
|
2018-01-04 05:02:43 -05:00
|
|
|
it 'outputs the integrity check for a repo' do
|
2018-07-24 06:17:29 -04:00
|
|
|
expect { run_rake_task('gitlab:git:fsck') }.to output(/Performed integrity check for/).to_stdout
|
2018-01-03 09:32:16 -05:00
|
|
|
end
|
2017-12-14 05:49:35 -05:00
|
|
|
end
|
2021-01-11 04:10:46 -05:00
|
|
|
|
|
|
|
describe 'checksum_projects' do
|
|
|
|
it 'outputs the checksum for a repo' do
|
|
|
|
expected = /#{project.id},#{project.repository.checksum}/
|
|
|
|
|
|
|
|
expect { run_rake_task('gitlab:git:checksum_projects') }.to output(expected).to_stdout
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'outputs blank checksum for no repo' do
|
|
|
|
no_repo = create(:project)
|
|
|
|
|
|
|
|
expected = /#{no_repo.id},$/
|
|
|
|
|
|
|
|
expect { run_rake_task('gitlab:git:checksum_projects') }.to output(expected).to_stdout
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'outputs zeroes for empty repo' do
|
|
|
|
empty_repo = create(:project, :empty_repo)
|
|
|
|
|
|
|
|
expected = /#{empty_repo.id},0000000000000000000000000000000000000000/
|
|
|
|
|
|
|
|
expect { run_rake_task('gitlab:git:checksum_projects') }.to output(expected).to_stdout
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'outputs errors' do
|
|
|
|
allow_next_found_instance_of(Project) do |project|
|
|
|
|
allow(project).to receive(:repo_exists?).and_raise('foo')
|
|
|
|
end
|
|
|
|
|
|
|
|
expected = /#{project.id},Ignored error: foo/
|
|
|
|
|
|
|
|
expect { run_rake_task('gitlab:git:checksum_projects') }.to output(expected).to_stdout
|
|
|
|
end
|
|
|
|
end
|
2017-12-14 05:49:35 -05:00
|
|
|
end
|