brew/Library/Homebrew/test/cask/cli/search_spec.rb

76 lines
2.1 KiB
Ruby
Raw Normal View History

2017-03-05 19:26:56 +01:00
describe Hbc::CLI::Search, :cask do
before(:each) do
2017-07-08 00:57:08 +02:00
allow(Tty).to receive(:width).and_return(0)
end
2017-02-08 13:34:26 +01:00
it "lists the available Casks that match the search term" do
expect {
Hbc::CLI::Search.run("local")
2017-07-08 00:57:08 +02:00
}.to output(<<-EOS.undent).to_stdout.as_tty
==> Partial Matches
local-caffeine
local-transmission
2017-02-08 13:34:26 +01:00
EOS
end
it "shows that there are no Casks matching a search term that did not result in anything" do
expect {
Hbc::CLI::Search.run("foo-bar-baz")
2017-07-08 00:57:08 +02:00
}.to output("No Cask found for \"foo-bar-baz\".\n").to_stdout.as_tty
2017-02-08 13:34:26 +01:00
end
it "lists all available Casks with no search term" do
expect {
Hbc::CLI::Search.run
2017-07-08 00:57:08 +02:00
}.to output(/local-caffeine/).to_stdout.as_tty
2017-02-08 13:34:26 +01:00
end
it "ignores hyphens in search terms" do
expect {
Hbc::CLI::Search.run("lo-cal-caffeine")
2017-07-08 00:57:08 +02:00
}.to output(/local-caffeine/).to_stdout.as_tty
2017-02-08 13:34:26 +01:00
end
it "ignores hyphens in Cask tokens" do
expect {
Hbc::CLI::Search.run("localcaffeine")
2017-07-08 00:57:08 +02:00
}.to output(/local-caffeine/).to_stdout.as_tty
2017-02-08 13:34:26 +01:00
end
it "accepts multiple arguments" do
expect {
Hbc::CLI::Search.run("local caffeine")
2017-07-08 00:57:08 +02:00
}.to output(/local-caffeine/).to_stdout.as_tty
2017-02-08 13:34:26 +01:00
end
it "accepts a regexp argument" do
expect {
Hbc::CLI::Search.run("/^local-c[a-z]ffeine$/")
2017-07-08 00:57:08 +02:00
}.to output("==> Regexp Matches\nlocal-caffeine\n").to_stdout.as_tty
2017-02-08 13:34:26 +01:00
end
it "Returns both exact and partial matches" do
expect {
Hbc::CLI::Search.run("test-opera")
2017-07-08 00:57:08 +02:00
}.to output(/^==> Exact Match\ntest-opera\n==> Partial Matches\ntest-opera-mail/).to_stdout.as_tty
2017-02-08 13:34:26 +01:00
end
it "does not search the Tap name" do
expect {
Hbc::CLI::Search.run("caskroom")
2017-07-08 00:57:08 +02:00
}.to output(/^No Cask found for "caskroom"\.\n/).to_stdout.as_tty
2017-02-08 13:34:26 +01:00
end
2017-03-13 19:43:08 -05:00
it "doesn't highlight packages that aren't installed" do
2017-03-13 19:15:41 -05:00
expect(Hbc::CLI::Search.highlight_installed("local-caffeine")).to eq("local-caffeine")
end
it "highlights installed packages" do
shutup do
2017-03-13 19:15:41 -05:00
Hbc::CLI::Install.run("local-caffeine")
end
2017-03-13 19:15:41 -05:00
expect(Hbc::CLI::Search.highlight_installed("local-caffeine")).to eq(pretty_installed("local-caffeine"))
end
2017-02-08 13:34:26 +01:00
end