Replace ARGV#flags_only with Homebrew.args.flags_only

Take two on https://github.com/Homebrew/brew/pull/7490
This commit is contained in:
Mike McQuaid 2020-05-10 15:12:25 +01:00
parent af278b15de
commit fa0d454817
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70
5 changed files with 19 additions and 23 deletions

View File

@ -5,6 +5,8 @@ require "ostruct"
module Homebrew module Homebrew
module CLI module CLI
class Args < OpenStruct class Args < OpenStruct
attr_reader :options_only, :flags_only
# undefine tap to allow --tap argument # undefine tap to allow --tap argument
undef tap undef tap
@ -12,6 +14,8 @@ module Homebrew
super() super()
@processed_options = [] @processed_options = []
@options_only = args_options_only(argv)
@flags_only = args_flags_only(argv)
# Can set these because they will be overwritten by freeze_named_args! # Can set these because they will be overwritten by freeze_named_args!
# (whereas other values below will only be overwritten if passed). # (whereas other values below will only be overwritten if passed).
@ -46,16 +50,9 @@ module Homebrew
@processed_options += processed_options @processed_options += processed_options
@processed_options.freeze @processed_options.freeze
end
def options_only @options_only = args_options_only(cli_args)
@options_only ||= cli_args.select { |arg| arg.start_with?("-") } @flags_only = args_flags_only(cli_args)
.freeze
end
def flags_only
@flags_only ||= cli_args.select { |arg| arg.start_with?("--") }
.freeze
end end
def passthrough def passthrough
@ -204,6 +201,16 @@ module Homebrew
@cli_args.freeze @cli_args.freeze
end end
def args_options_only(args)
args.select { |arg| arg.start_with?("-") }
.freeze
end
def args_flags_only(args)
args.select { |arg| arg.start_with?("--") }
.freeze
end
def downcased_unique_named def downcased_unique_named
# Only lowercase names, not paths, bottle filenames or URLs # Only lowercase names, not paths, bottle filenames or URLs
named.map do |arg| named.map do |arg|

View File

@ -1,10 +1,6 @@
# frozen_string_literal: true # frozen_string_literal: true
module HomebrewArgvExtension module HomebrewArgvExtension
def flags_only
select { |arg| arg.start_with?("--") }
end
def value(name) def value(name)
arg_prefix = "--#{name}=" arg_prefix = "--#{name}="
flag_with_value = find { |arg| arg.start_with?(arg_prefix) } flag_with_value = find { |arg| arg.start_with?(arg_prefix) }

View File

@ -41,7 +41,7 @@ class SoftwareSpec
@bottle_specification = BottleSpecification.new @bottle_specification = BottleSpecification.new
@patches = [] @patches = []
@options = Options.new @options = Options.new
@flags = ARGV.flags_only @flags = Homebrew.args.flags_only
@deprecated_flags = [] @deprecated_flags = []
@deprecated_options = [] @deprecated_options = []
@build = BuildOptions.new(Options.create(@flags), options) @build = BuildOptions.new(Options.create(@flags), options)

View File

@ -31,14 +31,6 @@ describe HomebrewArgvExtension do
end end
end end
describe "#flags_only" do
let(:argv) { ["--foo", "-vds", "a", "b", "cdefg"] }
it "returns an array of flags" do
expect(subject.flags_only).to eq ["--foo"]
end
end
describe "#empty?" do describe "#empty?" do
let(:argv) { [] } let(:argv) { [] }

View File

@ -76,7 +76,8 @@ describe Messages do
# rubocop:disable RSpec/VerifiedDoubles # rubocop:disable RSpec/VerifiedDoubles
context "when the --display-times argument is present" do context "when the --display-times argument is present" do
before do before do
allow(Homebrew).to receive(:args).and_return(double(display_times?: true)) allow(Homebrew).to receive(:args).and_return \
double(display_times?: true, flags_only: ["--display-times"])
end end
context "when install_times is empty" do context "when install_times is empty" do