brew/Library/Homebrew/test/cask/cli_spec.rb

74 lines
2.6 KiB
Ruby
Raw Normal View History

2017-03-05 19:26:56 +01:00
describe Hbc::CLI, :cask do
2016-08-18 22:11:42 +03:00
it "lists the taps for Casks that show up in two taps" do
2017-06-14 13:23:16 +02:00
listing = described_class.nice_listing(%w[
caskroom/cask/adium
caskroom/cask/google-chrome
passcod/homebrew-cask/adium
])
2016-08-18 22:11:42 +03:00
expect(listing).to eq(%w[
caskroom/cask/adium
google-chrome
passcod/cask/adium
])
end
2017-06-14 13:23:16 +02:00
it "ignores the `--language` option, which is handled in `OS::Mac`" do
cli = described_class.new("--language=en")
expect(cli).to receive(:detect_command_and_arguments).with(no_args)
expect(cli).to receive(:exit).with(1)
2017-07-29 19:55:05 +02:00
cli.run
2017-06-14 13:23:16 +02:00
end
context "when no option is specified" do
it "--binaries is true by default" do
command = Hbc::CLI::Install.new("some-cask")
expect(command.binaries?).to be true
end
end
2017-05-21 02:32:46 +02:00
context "::run" do
2016-08-18 22:11:42 +03:00
let(:noop_command) { double("CLI::Noop") }
before do
allow(Hbc).to receive(:init)
allow(described_class).to receive(:lookup_command).with("noop").and_return(noop_command)
allow(noop_command).to receive(:run)
end
it "passes `--version` along to the subcommand" do
version_command = double("CLI::Version")
allow(described_class).to receive(:lookup_command).with("--version").and_return(version_command)
expect(described_class).to receive(:run_command).with(version_command)
2017-05-21 02:32:46 +02:00
described_class.run("--version")
2016-08-18 22:11:42 +03:00
end
it "prints help output when subcommand receives `--help` flag" do
2017-06-14 13:23:16 +02:00
command = described_class.new("noop", "--help")
expect(described_class).to receive(:run_command).with("help", "noop")
2017-05-21 02:32:46 +02:00
command.run
expect(command.help?).to eq(true)
2016-08-18 22:11:42 +03:00
end
it "respects the env variable when choosing what appdir to create" do
allow(ENV).to receive(:[])
allow(ENV).to receive(:[]).with("HOMEBREW_CASK_OPTS").and_return("--appdir=/custom/appdir")
expect(Hbc).to receive(:appdir=).with(Pathname.new("/custom/appdir"))
2017-05-21 02:32:46 +02:00
described_class.run("noop")
2016-08-18 22:11:42 +03:00
end
it "exits with a status of 1 when something goes wrong" do
allow(described_class).to receive(:lookup_command).and_raise(Hbc::CaskError)
2017-06-14 13:23:16 +02:00
command = described_class.new("noop")
2017-05-21 02:32:46 +02:00
expect(command).to receive(:exit).with(1)
command.run
2016-08-18 22:11:42 +03:00
end
end
2017-03-16 09:00:57 +01:00
it "provides a help message for all commands" do
described_class.command_classes.each do |command_class|
expect(command_class.help).to match(/\w+/), command_class.name
end
end
2016-08-18 22:11:42 +03:00
end