brew/Library/Homebrew/test/cask/artifact/generic_artifact_spec.rb

42 lines
1.2 KiB
Ruby
Raw Normal View History

2017-03-05 19:26:56 +01:00
describe Hbc::Artifact::Artifact, :cask do
let(:cask) { Hbc::CaskLoader.load_from_file(TEST_FIXTURE_DIR/"cask/Casks/with-generic-artifact.rb") }
let(:install_phase) {
2017-10-04 17:08:35 +02:00
-> { cask.artifacts.select { |a| a.is_a?(described_class) }.each { |artifact| artifact.install_phase(command: Hbc::NeverSudoSystemCommand, force: false) } }
2016-08-18 22:11:42 +03:00
}
let(:source_path) { cask.staged_path.join("Caffeine.app") }
let(:target_path) { Hbc.appdir.join("Caffeine.app") }
before do
2017-02-08 14:25:50 +01:00
InstallHelper.install_without_artifacts(cask)
end
context "without target" do
it "fails to load" do
expect {
Hbc::CaskLoader.load_from_file(TEST_FIXTURE_DIR/"cask/Casks/with-generic-artifact-no-target.rb")
}.to raise_error(Hbc::CaskInvalidError, /target required for Generic Artifact/)
end
2016-08-18 22:11:42 +03:00
end
it "moves the artifact to the proper directory" do
2017-07-29 19:55:05 +02:00
install_phase.call
2016-08-18 22:11:42 +03:00
2017-02-08 14:25:50 +01:00
expect(target_path).to be_a_directory
expect(source_path).not_to exist
2016-08-18 22:11:42 +03:00
end
it "avoids clobbering an existing artifact" do
target_path.mkpath
2016-08-18 22:11:42 +03:00
2017-02-08 14:25:50 +01:00
expect {
2017-07-29 19:55:05 +02:00
install_phase.call
2017-02-08 14:25:50 +01:00
}.to raise_error(Hbc::CaskError)
2016-08-18 22:11:42 +03:00
2017-02-08 14:25:50 +01:00
expect(source_path).to be_a_directory
expect(target_path).to be_a_directory
expect(File.identical?(source_path, target_path)).to be false
2016-08-18 22:11:42 +03:00
end
end