brew/Library/Homebrew/test/cask/quarantine_spec.rb
L. E. Segovia ab31af2b4b
Cask: fixes for quarantining
Gatekeeper's Path Randomization is currently making automated
installation a nightmare. Let's manually toggle the (undocumented) app
translocation bit in the `com.apple.quarantine` extended attribute.

While we're at it, let's also toss in some fixes:

- zip downloads with improper permissions that prevent us from
quarantining
- quarantine/release/skip downloads as requested by the user
2018-09-07 15:37:31 +00:00

238 lines
7.0 KiB
Ruby

describe Cask::Quarantine, :cask do
matcher :be_quarantined do
match do |path|
expect(
described_class.detect(path),
).to be true
end
end
describe "by default" do
it "quarantines a nice fresh Cask" do
Cask::Cmd::Install.run("local-transmission")
expect(
Cask::CaskLoader.load(cask_path("local-transmission")),
).to be_installed
expect(
Cask::Config.global.appdir.join("Transmission.app"),
).to be_quarantined
end
it "quarantines Cask fetches" do
Cask::Cmd::Fetch.run("local-transmission")
local_transmission = Cask::CaskLoader.load(cask_path("local-transmission"))
cached_location = Cask::Download.new(local_transmission).perform
expect(cached_location).to be_quarantined
end
it "quarantines Cask audits" do
Cask::Cmd::Audit.run("local-transmission", "--download")
local_transmission = Cask::CaskLoader.load(cask_path("local-transmission"))
cached_location = Cask::Download.new(local_transmission).perform
expect(cached_location).to be_quarantined
end
it "quarantines Cask installs even if the fetch was not" do
Cask::Cmd::Fetch.run("local-transmission", "--no-quarantine")
Cask::Cmd::Install.run("local-transmission")
expect(
Cask::CaskLoader.load(cask_path("local-transmission")),
).to be_installed
expect(Cask::Config.global.appdir.join("Transmission.app")).to be_quarantined
end
it "quarantines dmg-based Casks" do
Cask::Cmd::Install.run("container-dmg")
expect(
Cask::CaskLoader.load(cask_path("container-dmg")),
).to be_installed
expect(Cask::Config.global.appdir.join("container")).to be_quarantined
end
it "quarantines tar-gz-based Casks" do
Cask::Cmd::Install.run("container-tar-gz")
expect(
Cask::CaskLoader.load(cask_path("container-tar-gz")),
).to be_installed
expect(Cask::Config.global.appdir.join("container")).to be_quarantined
end
it "quarantines xar-based Casks" do
Cask::Cmd::Install.run("container-xar")
expect(
Cask::CaskLoader.load(cask_path("container-xar")),
).to be_installed
expect(Cask::Config.global.appdir.join("container")).to be_quarantined
end
it "quarantines pure bzip2-based Casks" do
Cask::Cmd::Install.run("container-bzip2")
expect(
Cask::CaskLoader.load(cask_path("container-bzip2")),
).to be_installed
expect(Cask::Config.global.appdir.join("container")).to be_quarantined
end
it "quarantines pure gzip-based Casks" do
Cask::Cmd::Install.run("container-gzip")
expect(
Cask::CaskLoader.load(cask_path("container-gzip")),
).to be_installed
expect(Cask::Config.global.appdir.join("container")).to be_quarantined
end
it "quarantines the pkg in naked-pkg-based Casks" do
Cask::Cmd::Install.run("container-pkg")
naked_pkg = Cask::CaskLoader.load(cask_path("container-pkg"))
expect(naked_pkg).to be_installed
expect(
Cask::Caskroom.path.join("container-pkg", naked_pkg.version, "container.pkg"),
).to be_quarantined
end
it "quarantines a nested container" do
Cask::Cmd::Install.run("nested-app")
expect(
Cask::CaskLoader.load(cask_path("nested-app")),
).to be_installed
expect(Cask::Config.global.appdir.join("MyNestedApp.app")).to be_quarantined
end
end
describe "when disabled" do
it "does not quarantine even a nice, fresh Cask" do
Cask::Cmd::Install.run("local-transmission", "--no-quarantine")
expect(
Cask::CaskLoader.load(cask_path("local-transmission")),
).to be_installed
expect(Cask::Config.global.appdir.join("Transmission.app")).to_not be_quarantined
end
it "does not quarantine Cask fetches" do
Cask::Cmd::Fetch.run("local-transmission", "--no-quarantine")
local_transmission = Cask::CaskLoader.load(cask_path("local-transmission"))
cached_location = Cask::Download.new(local_transmission).perform
expect(cached_location).to_not be_quarantined
end
it "does not quarantine Cask audits" do
Cask::Cmd::Audit.run("local-transmission", "--download", "--no-quarantine")
local_transmission = Cask::CaskLoader.load(cask_path("local-transmission"))
cached_location = Cask::Download.new(local_transmission).perform
expect(cached_location).to_not be_quarantined
end
it "does not quarantine Cask installs even if the fetch was" do
Cask::Cmd::Fetch.run("local-transmission")
Cask::Cmd::Install.run("local-transmission", "--no-quarantine")
expect(
Cask::CaskLoader.load(cask_path("local-transmission")),
).to be_installed
expect(Cask::Config.global.appdir.join("Transmission.app")).to_not be_quarantined
end
it "does not quarantine dmg-based Casks" do
Cask::Cmd::Install.run("container-dmg", "--no-quarantine")
expect(
Cask::CaskLoader.load(cask_path("container-dmg")),
).to be_installed
expect(Cask::Config.global.appdir.join("container")).to_not be_quarantined
end
it "does not quarantine tar-gz-based Casks" do
Cask::Cmd::Install.run("container-tar-gz", "--no-quarantine")
expect(
Cask::CaskLoader.load(cask_path("container-tar-gz")),
).to be_installed
expect(Cask::Config.global.appdir.join("container")).to_not be_quarantined
end
it "does not quarantine xar-based Casks" do
Cask::Cmd::Install.run("container-xar", "--no-quarantine")
expect(
Cask::CaskLoader.load(cask_path("container-xar")),
).to be_installed
expect(Cask::Config.global.appdir.join("container")).to_not be_quarantined
end
it "does not quarantine pure bzip2-based Casks" do
Cask::Cmd::Install.run("container-bzip2", "--no-quarantine")
expect(
Cask::CaskLoader.load(cask_path("container-bzip2")),
).to be_installed
expect(Cask::Config.global.appdir.join("container")).to_not be_quarantined
end
it "does not quarantine pure gzip-based Casks" do
Cask::Cmd::Install.run("container-gzip", "--no-quarantine")
expect(
Cask::CaskLoader.load(cask_path("container-gzip")),
).to be_installed
expect(Cask::Config.global.appdir.join("container")).to_not be_quarantined
end
it "does not quarantine the pkg in naked-pkg-based Casks" do
Cask::Cmd::Install.run("container-pkg", "--no-quarantine")
naked_pkg = Cask::CaskLoader.load(cask_path("container-pkg"))
expect(naked_pkg).to be_installed
expect(
Cask::Caskroom.path.join("container-pkg", naked_pkg.version, "container.pkg"),
).to_not be_quarantined
end
it "does not quarantine a nested container" do
Cask::Cmd::Install.run("nested-app", "--no-quarantine")
expect(
Cask::CaskLoader.load(cask_path("nested-app")),
).to be_installed
expect(Cask::Config.global.appdir.join("MyNestedApp.app")).to_not be_quarantined
end
end
end