summaryrefslogtreecommitdiff
path: root/spec/tasks/gitlab/artifacts/check_rake_spec.rb
blob: d495b08aca076ef8b084899ced06bd0171cb14d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
require 'rake_helper'

describe 'gitlab:artifacts rake tasks' do
  describe 'check' do
    let!(:artifact) { create(:ci_job_artifact, :archive, :correct_checksum) }

    before do
      Rake.application.rake_require('tasks/gitlab/artifacts/check')
      stub_env('VERBOSE' => 'true')
    end

    it 'outputs the integrity check for each batch' do
      expect { run_rake_task('gitlab:artifacts:check') }.to output(/Failures: 0/).to_stdout
    end

    it 'errors out about missing files on the file system' do
      FileUtils.rm_f(artifact.file.path)

      expect { run_rake_task('gitlab:artifacts:check') }.to output(/No such file.*#{Regexp.quote(artifact.file.path)}/).to_stdout
    end

    it 'errors out about invalid checksum' do
      artifact.update_column(:file_sha256, 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855')

      expect { run_rake_task('gitlab:artifacts:check') }.to output(/Checksum mismatch/).to_stdout
    end

    it 'errors out about missing checksum' do
      artifact.update_column(:file_sha256, nil)

      expect { run_rake_task('gitlab:artifacts:check') }.to output(/Checksum missing/).to_stdout
    end
  end
end