From c29f2b286752f844a7659ec38fc22aeb02f0ff45 Mon Sep 17 00:00:00 2001 From: Evgeni Golov Date: Fri, 3 Oct 2014 20:41:51 +0200 Subject: GetOpt::Long optional arguments using a colon instead of an equal sign Instead of writing `foo|f=s` you can also write `foo|f:s` for a GetOpt::Long option spec [1], thus making the argument optional. The current implementation of `_spec_to_help` will wrongly render this as two long options: --dirport, --d:9030 directory port instead of a short and a long one: -d, --dirport=INTEGER directory port This commit fixes the the parsing of the spec, detection of the type and adds tests for a few common cases this could be used in. [1] http://perldoc.perl.org/Getopt/Long.html#Summary-of-Option-Specifications --- t/Monitoring-Plugin-Getopt-04.t | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) (limited to 't') diff --git a/t/Monitoring-Plugin-Getopt-04.t b/t/Monitoring-Plugin-Getopt-04.t index b6345d0..9b51883 100644 --- a/t/Monitoring-Plugin-Getopt-04.t +++ b/t/Monitoring-Plugin-Getopt-04.t @@ -2,7 +2,7 @@ use strict; -use Test::More tests => 11; +use Test::More tests => 15; BEGIN { use_ok('Monitoring::Plugin::Getopt') }; # Needed to get evals to work in testing @@ -78,6 +78,30 @@ sub setup [ undef, 'PERCENT%' ], ); + # Named args with *optional* but pre-set value + $ng->arg( + spec => 'dirport|d:9030', + help => 'dirport', + ); + + # Named args with *optional* string value + $ng->arg( + spec => 'enablesomething|s:s', + help => 'something', + ); + + # Named args with *optional* integer value (same as ":0") + $ng->arg( + spec => 'testtimeout|T:i', + help => 'testtimeout', + ); + + # Named args with *optional* but increasing integer value + $ng->arg( + spec => 'verbosity|v:+', + help => 'verbosity', + ); + return $ng; } @@ -94,4 +118,8 @@ like($@, qr/\n -H, --hostname=ADDRESS\n Hostname\n/, 'hostname ok'); like($@, qr/\n --avatar=AVATAR\n Avatar\n/, 'avatar ok'); like($@, qr/\n --disk=BYTES\n Disk limit in BYTES\n --disk=PERCENT%\n Disk limit in PERCENT\n --disk=STRING\n Disk limit in FOOBARS \(Default: 1024\)\n/, 'disk multiline ok'); like($@, qr/\n --limit=STRING\n Limit in BYTES\n --limit=PERCENT%\n Limit in PERCENT\n/, 'limit multiline ok'); +like($@, qr/\n -d, --dirport=INTEGER/, 'dirport ok'); +like($@, qr/\n -s, --enablesomething=STRING/, 'enablesomething ok'); +like($@, qr/\n -T, --testtimeout=INTEGER/, 'testtimeout ok'); +like($@, qr/\n -v, --verbosity=INTEGER/, 'verbosity ok'); #print $@; -- cgit v1.2.3-74-g34f1