1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
|
# encoding: UTF-8
shared_examples_for "things that declare options" do
it "should support options without arguments" do
thing = add_options_to { option "--bar" }
thing.should be_option :bar
end
it "should support options with an empty block" do
thing = add_options_to do
option "--foo" do
# this section deliberately left blank
end
end
thing.should be
thing.should be_option :foo
end
{ "--foo=" => :foo }.each do |input, option|
it "should accept #{name.inspect}" do
thing = add_options_to { option input }
thing.should be_option option
end
end
it "should support option documentation" do
text = "Sturm und Drang (German pronunciation: [ˈʃtʊʁm ʊnt ˈdʁaŋ]) …"
thing = add_options_to do
option "--foo" do
description text
summary text
end
end
thing.get_option(:foo).description.should == text
end
it "should list all the options" do
thing = add_options_to do
option "--foo"
option "--bar", '-b'
option "-q", "--quux"
option "-f"
option "--baz"
end
thing.options.should == [:foo, :bar, :quux, :f, :baz]
end
it "should detect conflicts in long options" do
expect {
add_options_to do
option "--foo"
option "--foo"
end
}.to raise_error ArgumentError, /Option foo conflicts with existing option foo/i
end
it "should detect conflicts in short options" do
expect {
add_options_to do
option "-f"
option "-f"
end
}.to raise_error ArgumentError, /Option f conflicts with existing option f/
end
["-f", "--foo"].each do |option|
["", " FOO", "=FOO", " [FOO]", "=[FOO]"].each do |argument|
input = option + argument
it "should detect conflicts within a single option like #{input.inspect}" do
expect {
add_options_to do
option input, input
end
}.to raise_error ArgumentError, /duplicates existing alias/
end
end
end
# Verify the range of interesting conflicts to check for ordering causing
# the behaviour to change, or anything exciting like that.
[ %w{--foo}, %w{-f}, %w{-f --foo}, %w{--baz -f},
%w{-f --baz}, %w{-b --foo}, %w{--foo -b}
].each do |conflict|
base = %w{--foo -f}
it "should detect conflicts between #{base.inspect} and #{conflict.inspect}" do
expect {
add_options_to do
option *base
option *conflict
end
}.to raise_error ArgumentError, /conflicts with existing option/
end
end
it "should fail if we are not consistent about taking an argument" do
expect { add_options_to do option "--foo=bar", "--bar" end }.
to raise_error ArgumentError, /inconsistent about taking an argument/
end
it "should not accept optional arguments" do
expect do
thing = add_options_to do option "--foo=[baz]", "--bar=[baz]" end
[:foo, :bar].each do |name|
thing.should be_option name
end
end.to raise_error(ArgumentError, /optional arguments are not supported/)
end
describe "#takes_argument?" do
it "should detect an argument being absent" do
thing = add_options_to do option "--foo" end
thing.get_option(:foo).should_not be_takes_argument
end
["=FOO", " FOO"].each do |input|
it "should detect an argument given #{input.inspect}" do
thing = add_options_to do option "--foo#{input}" end
thing.get_option(:foo).should be_takes_argument
end
end
end
describe "#optional_argument?" do
it "should be false if no argument is present" do
option = add_options_to do option "--foo" end.get_option(:foo)
option.should_not be_takes_argument
option.should_not be_optional_argument
end
["=FOO", " FOO"].each do |input|
it "should be false if the argument is mandatory (like #{input.inspect})" do
option = add_options_to do option "--foo#{input}" end.get_option(:foo)
option.should be_takes_argument
option.should_not be_optional_argument
end
end
["=[FOO]", " [FOO]"].each do |input|
it "should fail if the argument is optional (like #{input.inspect})" do
expect do
option = add_options_to do option "--foo#{input}" end.get_option(:foo)
option.should be_takes_argument
option.should be_optional_argument
end.to raise_error(ArgumentError, /optional arguments are not supported/)
end
end
end
describe "#default_to" do
it "should not have a default value by default" do
option = add_options_to do option "--foo" end.get_option(:foo)
option.should_not be_has_default
end
it "should accept a block for the default value" do
option = add_options_to do
option "--foo" do
default_to do
12
end
end
end.get_option(:foo)
option.should be_has_default
end
it "should invoke the block when asked for the default value" do
invoked = false
option = add_options_to do
option "--foo" do
default_to do
invoked = true
end
end
end.get_option(:foo)
option.should be_has_default
option.default.should be_true
invoked.should be_true
end
it "should return the value of the block when asked for the default" do
option = add_options_to do
option "--foo" do
default_to do
12
end
end
end.get_option(:foo)
option.should be_has_default
option.default.should == 12
end
it "should invoke the block every time the default is requested" do
option = add_options_to do
option "--foo" do
default_to do
{}
end
end
end.get_option(:foo)
first = option.default.object_id
second = option.default.object_id
third = option.default.object_id
first.should_not == second
first.should_not == third
second.should_not == third
end
it "should fail if the option has a default and is required" do
expect {
add_options_to do
option "--foo" do
required
default_to do 12 end
end
end
}.to raise_error ArgumentError, /can't be optional and have a default value/
expect {
add_options_to do
option "--foo" do
default_to do 12 end
required
end
end
}.to raise_error ArgumentError, /can't be optional and have a default value/
end
it "should fail if default_to has no block" do
expect { add_options_to do option "--foo" do default_to end end }.
to raise_error ArgumentError, /default_to requires a block/
end
it "should fail if default_to is invoked twice" do
expect {
add_options_to do
option "--foo" do
default_to do 12 end
default_to do "fun" end
end
end
}.to raise_error ArgumentError, /already has a default value/
end
[ "one", "one, two", "one, *two" ].each do |input|
it "should fail if the block has the wrong arity (#{input})" do
expect {
add_options_to do
option "--foo" do
eval "default_to do |#{input}| 12 end"
end
end
}.to raise_error ArgumentError, /should not take any arguments/
end
end
end
end
|