mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-16 22:06:43 -06:00
* convert existing Cask:: namespace to Hbc:: * move Homebrew-fork code under Hbc:: * move freestanding classes such as Tty and TopologicalHash under Hbc:: * recast HOMEBREW_CASK_ constants as HBC_ * modify our Homebrew Formula for backward compatibility * devscripts and dev docs
76 lines
2.8 KiB
Ruby
76 lines
2.8 KiB
Ruby
require 'test_helper'
|
|
|
|
describe Hbc::CLI::Zap do
|
|
it "shows an error when a bad Cask is provided" do
|
|
lambda {
|
|
Hbc::CLI::Zap.run('notacask')
|
|
}.must_raise Hbc::CaskUnavailableError
|
|
end
|
|
|
|
it "can zap and unlink multiple Casks at once" do
|
|
caffeine = Hbc.load('local-caffeine')
|
|
transmission = Hbc.load('local-transmission')
|
|
|
|
shutup do
|
|
Hbc::Installer.new(caffeine).install
|
|
Hbc::Installer.new(transmission).install
|
|
end
|
|
|
|
caffeine.must_be :installed?
|
|
transmission.must_be :installed?
|
|
|
|
shutup do
|
|
Hbc::CLI::Zap.run('--notavalidoption',
|
|
'local-caffeine', 'local-transmission')
|
|
end
|
|
|
|
caffeine.wont_be :installed?
|
|
Hbc.appdir.join('Transmission.app').wont_be :symlink?
|
|
transmission.wont_be :installed?
|
|
Hbc.appdir.join('Caffeine.app').wont_be :symlink?
|
|
end
|
|
|
|
# todo
|
|
# Explicit test that both zap and uninstall directives get dispatched.
|
|
# The above tests that implicitly.
|
|
#
|
|
# it "dispatches both uninstall and zap stanzas" do
|
|
# with_zap = Hbc.load('with-zap')
|
|
#
|
|
# shutup do
|
|
# Hbc::Installer.new(with_zap).install
|
|
# end
|
|
#
|
|
# with_zap.must_be :installed?
|
|
#
|
|
# Hbc::FakeSystemCommand.stubs_command(['/usr/bin/sudo', '-E', '--', '/usr/bin/osascript', '-e', 'tell application "System Events" to count processes whose bundle identifier is "my.fancy.package.app"'], '1')
|
|
# Hbc::FakeSystemCommand.stubs_command(['/usr/bin/sudo', '-E', '--', '/usr/bin/osascript', '-e', 'tell application id "my.fancy.package.app" to quit'])
|
|
# Hbc::FakeSystemCommand.stubs_command(['/usr/bin/sudo', '-E', '--', '/usr/bin/osascript', '-e', 'tell application "System Events" to count processes whose bundle identifier is "my.fancy.package.app.from.uninstall"'], '1')
|
|
# Hbc::FakeSystemCommand.stubs_command(['/usr/bin/sudo', '-E', '--', '/usr/bin/osascript', '-e', 'tell application id "my.fancy.package.app.from.uninstall" to quit'])
|
|
#
|
|
# Hbc::FakeSystemCommand.expects_command(['/usr/bin/sudo', '-E', '--', with_zap.staged_path.join('MyFancyPkg','FancyUninstaller.tool'), '--please'])
|
|
# Hbc::FakeSystemCommand.expects_command(['/usr/bin/sudo', '-E', '--', '/bin/rm', '-rf', '--',
|
|
# Pathname.new('~/Library/Preferences/my.fancy.app.plist').expand_path])
|
|
#
|
|
# shutup do
|
|
# Hbc::CLI::Zap.run('with-zap')
|
|
# end
|
|
# with_zap.wont_be :installed?
|
|
# end
|
|
|
|
describe "when no Cask is specified" do
|
|
it "raises an exception" do
|
|
lambda {
|
|
Hbc::CLI::Zap.run()
|
|
}.must_raise Hbc::CaskUnspecifiedError
|
|
end
|
|
end
|
|
|
|
describe "when no Cask is specified, but an invalid option" do
|
|
it "raises an exception" do
|
|
lambda {
|
|
Hbc::CLI::Zap.run('--notavalidoption')
|
|
}.must_raise Hbc::CaskUnspecifiedError
|
|
end
|
|
end
|
|
end
|