2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-09-06 08:29:14 +02:00
|
|
|
describe Cask::Artifact::App, :cask do
|
2016-10-19 16:42:31 -04:00
|
|
|
describe "activate to alternate target" do
|
2018-09-06 08:29:14 +02:00
|
|
|
let(:cask) { Cask::CaskLoader.load(cask_path("with-alt-target")) }
|
2016-10-19 16:42:31 -04:00
|
|
|
|
2023-03-08 23:14:46 +00:00
|
|
|
let(:install_phase) do
|
2019-10-03 08:50:45 +02:00
|
|
|
cask.artifacts.select { |a| a.is_a?(described_class) }.each do |artifact|
|
|
|
|
artifact.install_phase(command: NeverSudoSystemCommand, force: false)
|
2017-10-04 17:54:52 +02:00
|
|
|
end
|
2023-03-08 23:14:46 +00:00
|
|
|
end
|
2016-10-19 16:42:31 -04:00
|
|
|
|
|
|
|
let(:source_path) { cask.staged_path.join("Caffeine.app") }
|
2019-02-02 17:11:37 +01:00
|
|
|
let(:target_path) { cask.config.appdir.join("AnotherName.app") }
|
2016-10-19 16:42:31 -04:00
|
|
|
|
|
|
|
before do
|
2017-02-08 13:57:11 +01:00
|
|
|
InstallHelper.install_without_artifacts(cask)
|
2016-08-18 22:11:42 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
it "installs the given apps using the proper target directory" do
|
2017-02-08 13:57:11 +01:00
|
|
|
expect(source_path).to be_a_directory
|
|
|
|
expect(target_path).not_to exist
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2019-10-03 08:50:45 +02:00
|
|
|
install_phase
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2017-02-08 13:57:11 +01:00
|
|
|
expect(target_path).to be_a_directory
|
2019-10-24 15:15:40 +02:00
|
|
|
expect(source_path).to be_a_symlink
|
2016-08-18 22:11:42 +03:00
|
|
|
end
|
|
|
|
|
2016-10-19 16:42:31 -04:00
|
|
|
describe "when app is in a subdirectory" do
|
2023-03-08 23:14:46 +00:00
|
|
|
let(:cask) do
|
2018-09-06 08:29:14 +02:00
|
|
|
Cask::Cask.new("subdir") do
|
2016-10-22 00:48:30 +02:00
|
|
|
url "file://#{TEST_FIXTURE_DIR}/cask/caffeine.zip"
|
2018-11-28 20:51:55 +01:00
|
|
|
homepage "https://brew.sh/local-caffeine"
|
2016-10-19 16:42:31 -04:00
|
|
|
version "1.2.3"
|
|
|
|
sha256 "67cdb8a02803ef37fdbf7e0be205863172e41a561ca446cd84f0d7ab35a99d94"
|
|
|
|
app "subdir/Caffeine.app", target: "AnotherName.app"
|
|
|
|
end
|
2023-03-08 23:14:46 +00:00
|
|
|
end
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2016-10-19 16:42:31 -04:00
|
|
|
it "installs the given apps using the proper target directory" do
|
|
|
|
appsubdir = cask.staged_path.join("subdir").tap(&:mkpath)
|
|
|
|
FileUtils.mv(source_path, appsubdir)
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2019-10-03 08:50:45 +02:00
|
|
|
install_phase
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2017-02-08 13:57:11 +01:00
|
|
|
expect(target_path).to be_a_directory
|
2019-10-24 15:15:40 +02:00
|
|
|
expect(appsubdir.join("Caffeine.app")).to be_a_symlink
|
2016-08-18 22:11:42 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it "only uses apps when they are specified" do
|
2016-10-19 16:42:31 -04:00
|
|
|
staged_app_copy = source_path.sub("Caffeine.app", "Caffeine Deluxe.app")
|
|
|
|
FileUtils.cp_r source_path, staged_app_copy
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2019-10-03 08:50:45 +02:00
|
|
|
install_phase
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2017-02-08 13:57:11 +01:00
|
|
|
expect(target_path).to be_a_directory
|
2019-10-24 15:15:40 +02:00
|
|
|
expect(source_path).to be_a_symlink
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2019-02-02 17:11:37 +01:00
|
|
|
expect(cask.config.appdir.join("Caffeine Deluxe.app")).not_to exist
|
2017-02-08 13:57:11 +01:00
|
|
|
expect(cask.staged_path.join("Caffeine Deluxe.app")).to be_a_directory
|
2016-08-18 22:11:42 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
it "avoids clobbering an existing app by moving over it" do
|
2016-10-19 16:42:31 -04:00
|
|
|
target_path.mkpath
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2019-10-03 08:50:45 +02:00
|
|
|
expect { install_phase }
|
|
|
|
.to raise_error(Cask::CaskError, "It seems there is already an App at '#{target_path}'.")
|
2016-11-29 11:04:45 +01:00
|
|
|
|
2017-02-08 13:57:11 +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
|
|
|
|
end
|