2020-10-10 14:16:11 +02:00
|
|
|
# typed: false
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-06-02 02:12:40 +02:00
|
|
|
require "cmd/search"
|
2019-03-28 08:35:36 +00:00
|
|
|
require "cmd/shared_examples/args_parse"
|
2018-06-02 02:12:40 +02:00
|
|
|
|
2021-02-01 16:14:25 -05:00
|
|
|
describe "brew search" do
|
2019-03-28 08:35:36 +00:00
|
|
|
it_behaves_like "parseable arguments"
|
2017-02-23 06:04:59 +01:00
|
|
|
|
2021-02-01 16:14:25 -05:00
|
|
|
it "falls back to a GitHub tap search when no formula is found", :integration_test, :needs_macos, :needs_network do
|
2019-03-28 08:35:36 +00:00
|
|
|
setup_test_formula "testball"
|
2018-05-25 18:03:16 +02:00
|
|
|
setup_remote_tap "homebrew/cask"
|
2018-04-07 20:28:56 +01:00
|
|
|
|
2018-05-25 18:03:16 +02:00
|
|
|
expect { brew "search", "homebrew/cask/firefox" }
|
2017-08-11 15:49:57 -04:00
|
|
|
.to output(/firefox/).to_stdout
|
|
|
|
.and be_a_success
|
|
|
|
end
|
2020-07-01 11:55:25 +01:00
|
|
|
|
|
|
|
# doesn't actually need Linux but only want one integration test per-OS.
|
2021-02-01 16:14:25 -05:00
|
|
|
it "finds formula in search", :integration_test, :need_linux do
|
2020-07-01 11:55:25 +01:00
|
|
|
setup_test_formula "testball"
|
|
|
|
|
|
|
|
expect { brew "search", "testball" }
|
|
|
|
.to output(/testball/).to_stdout
|
|
|
|
.and be_a_success
|
|
|
|
end
|
2017-02-23 06:04:59 +01:00
|
|
|
end
|