brew/Library/Homebrew/test/cask/download_spec.rb

61 lines
1.9 KiB
Ruby
Raw Normal View History

2020-10-10 14:16:11 +02:00
# typed: false
# frozen_string_literal: true
2018-09-06 08:29:14 +02:00
module Cask
2020-11-19 18:12:16 +01:00
describe Download, :cask do
describe "#verify_download_integrity" do
subject(:verification) { described_class.new(cask).verify_download_integrity(downloaded_path) }
2018-09-20 09:07:56 +01:00
2018-09-05 01:39:30 +02:00
let(:cask) { instance_double(Cask, token: "cask", sha256: expected_sha256) }
let(:cafebabe) { "cafebabecafebabecafebabecafebabecafebabecafebabecafebabecafebabe" }
let(:deadbeef) { "deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef" }
let(:computed_sha256) { cafebabe }
2020-11-19 18:12:16 +01:00
let(:downloaded_path) { Pathname.new("cask.zip") }
before do
allow(downloaded_path).to receive(:sha256).and_return(computed_sha256)
end
2018-09-05 01:39:30 +02:00
context "when the expected checksum is :no_check" do
let(:expected_sha256) { :no_check }
it "skips the check" do
2020-11-19 18:12:16 +01:00
expect { verification }.to output(/skipping verification/).to_stderr
2018-09-05 01:39:30 +02:00
end
end
2016-08-18 22:11:42 +03:00
2018-09-05 01:39:30 +02:00
context "when expected and computed checksums match" do
2020-11-19 18:12:16 +01:00
let(:expected_sha256) { Checksum.new(:sha256, cafebabe) }
2016-08-18 22:11:42 +03:00
2018-09-05 01:39:30 +02:00
it "does not raise an error" do
expect { verification }.not_to raise_error
end
2016-08-18 22:11:42 +03:00
end
2018-09-05 01:39:30 +02:00
context "when the expected checksum is nil" do
let(:expected_sha256) { nil }
2016-08-18 22:11:42 +03:00
2020-11-19 19:44:23 +01:00
it "outputs an error" do
expect { verification }.to output(/sha256 "#{computed_sha256}"/).to_stderr
2018-09-05 01:39:30 +02:00
end
end
2016-08-18 22:11:42 +03:00
2018-09-05 01:39:30 +02:00
context "when the expected checksum is empty" do
2020-11-19 18:12:16 +01:00
let(:expected_sha256) { Checksum.new(:sha256, "") }
2020-11-19 19:44:23 +01:00
it "outputs an error" do
expect { verification }.to output(/sha256 "#{computed_sha256}"/).to_stderr
2018-09-05 01:39:30 +02:00
end
end
2016-08-18 22:11:42 +03:00
2018-09-05 01:39:30 +02:00
context "when expected and computed checksums do not match" do
2020-11-19 18:12:16 +01:00
let(:expected_sha256) { Checksum.new(:sha256, deadbeef) }
2016-08-18 22:11:42 +03:00
2018-09-05 01:39:30 +02:00
it "raises an error" do
2020-11-19 19:44:23 +01:00
expect { verification }.to raise_error ChecksumMismatchError
2018-09-05 01:39:30 +02:00
end
end
2016-08-18 22:11:42 +03:00
end
end
end