brew/Library/Homebrew/cask/test/cask/depends_on_test.rb
AnastasiaSulyagina e81f4ab7de init
2016-08-19 14:50:14 +03:00

122 lines
3.3 KiB
Ruby

require "test_helper"
# TODO: this test should be named after the corresponding class, once
# that class is abstracted from installer.rb
describe "Satisfy Dependencies and Requirements" do
# TODO: test that depends_on formula invokes Homebrew
#
# describe "depends_on formula" do
# it "" do
# end
# end
#
describe "depends_on cask" do
it "raises an exception when depends_on cask is cyclic" do
dep_cask = Hbc.load("with-depends-on-cask-cyclic")
lambda {
shutup do
Hbc::Installer.new(dep_cask).install
end
}.must_raise(Hbc::CaskCyclicCaskDependencyError)
end
it "installs the dependency of a Cask and the Cask itself" do
csk = Hbc.load("with-depends-on-cask")
dependency = Hbc.load(csk.depends_on.cask.first)
shutup do
Hbc::Installer.new(csk).install
end
csk.must_be :installed?
dependency.must_be :installed?
end
end
describe "depends_on macos" do
it "understands depends_on macos: <array>" do
macos_cask = Hbc.load("with-depends-on-macos-array")
shutup do
Hbc::Installer.new(macos_cask).install
end
end
it "understands depends_on macos: <comparison>" do
macos_cask = Hbc.load("with-depends-on-macos-comparison")
shutup do
Hbc::Installer.new(macos_cask).install
end
end
it "understands depends_on macos: <string>" do
macos_cask = Hbc.load("with-depends-on-macos-string")
shutup do
Hbc::Installer.new(macos_cask).install
end
end
it "understands depends_on macos: <symbol>" do
macos_cask = Hbc.load("with-depends-on-macos-symbol")
shutup do
Hbc::Installer.new(macos_cask).install
end
end
it "raises an exception when depends_on macos is not satisfied" do
macos_cask = Hbc.load("with-depends-on-macos-failure")
lambda {
shutup do
Hbc::Installer.new(macos_cask).install
end
}.must_raise(Hbc::CaskError)
end
end
describe "depends_on arch" do
it "succeeds when depends_on arch is satisfied" do
arch_cask = Hbc.load("with-depends-on-arch")
shutup do
Hbc::Installer.new(arch_cask).install
end
end
it "raises an exception when depends_on arch is not satisfied" do
arch_cask = Hbc.load("with-depends-on-arch-failure")
lambda {
shutup do
Hbc::Installer.new(arch_cask).install
end
}.must_raise(Hbc::CaskError)
end
end
describe "depends_on x11" do
it "succeeds when depends_on x11 is satisfied" do
x11_cask = Hbc.load("with-depends-on-x11")
shutup do
Hbc::Installer.new(x11_cask).install
end
end
it "raises an exception when depends_on x11 is not satisfied" do
x11_cask = Hbc.load("with-depends-on-x11")
Hbc.stubs(:x11_libpng).returns([Pathname.new("/usr/path/does/not/exist")])
lambda {
shutup do
Hbc::Installer.new(x11_cask).install
end
}.must_raise(Hbc::CaskX11DependencyError)
end
it "never raises when depends_on x11: false" do
x11_cask = Hbc.load("with-depends-on-x11-false")
Hbc.stubs(:x11_executable).returns(Pathname.new("/usr/path/does/not/exist"))
lambda do
shutup do
Hbc::Installer.new(x11_cask).install
end
end # won't raise
end
end
end