brew/Library/Homebrew/test/ARGV_spec.rb

90 lines
2.2 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-02-11 03:07:23 +01:00
require "extend/ARGV"
describe HomebrewArgvExtension do
2017-02-25 10:09:26 +01:00
subject { argv.extend(described_class) }
2017-02-11 03:07:23 +01:00
let(:argv) { ["mxcl"] }
describe "#named" do
let(:argv) { ["foo", "--debug", "-v"] }
it "returns an array of non-option arguments" do
expect(subject.send(:named)).to eq ["foo"]
2017-02-11 03:07:23 +01:00
end
context "when there are no named arguments" do
let(:argv) { [] }
it "returns an empty array" do
expect(subject.send(:named)).to be_empty
2017-02-11 03:07:23 +01:00
end
end
end
describe "#options_only" do
let(:argv) { ["--foo", "-vds", "a", "b", "cdefg"] }
it "returns an array of option arguments" do
expect(subject.send("options_only")).to eq ["--foo", "-vds"]
2017-02-11 03:07:23 +01:00
end
end
describe "#empty?" do
let(:argv) { [] }
it "returns true if it is empty" do
expect(subject).to be_empty
end
end
describe "#switch?" do
let(:argv) { ["-ns", "-i", "--bar", "-a-bad-arg"] }
it "returns true if the given string is a switch" do
%w[n s i].each do |s|
2019-04-17 17:34:57 +09:00
expect(subject.send("switch?", s)).to be true
2017-02-11 03:07:23 +01:00
end
end
it "returns false if the given string is not a switch" do
%w[b ns bar --bar -n a bad arg].each do |s|
2019-04-17 17:34:57 +09:00
expect(subject.send("switch?", s)).to be false
2017-02-11 03:07:23 +01:00
end
end
end
describe "#flag?" do
let(:argv) { ["--foo", "-bq", "--bar"] }
it "returns true if the given string is a flag" do
expect(subject.send("flag?", "--foo")).to eq true
expect(subject.send("flag?", "--bar")).to eq true
2017-02-11 03:07:23 +01:00
end
it "returns true if there is a switch with the same initial character" do
expect(subject.send("flag?", "--baz")).to eq true
expect(subject.send("flag?", "--qux")).to eq true
2017-02-11 03:07:23 +01:00
end
it "returns false if there is no matching flag" do
expect(subject.send("flag?", "--frotz")).to eq false
expect(subject.send("flag?", "--debug")).to eq false
2017-02-11 03:07:23 +01:00
end
end
describe "#value" do
let(:argv) { ["--foo=", "--bar=ab"] }
it "returns the value for a given string" do
expect(subject.value("foo")).to eq ""
expect(subject.value("bar")).to eq "ab"
end
it "returns nil if there is no matching argument" do
expect(subject.value("baz")).to be nil
end
end
end