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
|
our ( $INFILE, $OUTFILE, $LEN, $H, $W, $TIMEOUT );
BEGIN {
$INFILE = $0;
$OUTFILE = $0;
$LEN = 42;
$H = 2;
$W = -10;
$TIMEOUT = 7;
@ARGV = (
# doesn't include the --missing-* options in order to test that the
# corresponding variable is still exported even if not present in @ARGV.
# "--missing-bool",
# "--missing-repopt foo", "--missing-repopt bar",
# "--missing-repval foo bar",
# "--missing-repoptmultpholds a:1", "--missing-repoptmultpholds b:2"
# "--missing-hash ping,pong",
'-i', $INFILE,
"-out=$OUTFILE",
'-lgth', $LEN,
'size', "${H}x${W}",
'-v',
'--skip-some',
'--also', 42,
'--also', 43,
'--timeout', $TIMEOUT,
'-w', 's p a c e s',
7,
);
chmod 0644, $0
}
use Getopt::Euclid qw( :vars<opt_> );
use Test::More 'no_plan';
use strict;
sub got_arg {
my ($key, $val) = @_;
my $var_name = "opt_$key";
no strict 'refs';
is ${$var_name}, $val, "Got expected value for $var_name";
}
sub not_arg {
my ($key, $val) = @_;
my $var_name = "opt_$key";
no strict 'refs';
is ${$var_name}, undef, "$var_name should be undefined";
}
not_arg 'i' => $INFILE;
got_arg 'infile' => $INFILE;
not_arg 'l' => $LEN;
not_arg 'len' => $LEN;
got_arg 'length' => $LEN;
not_arg 'lgth' => $LEN;
got_arg 'girth' => 42;
not_arg 'o' => $OUTFILE;
not_arg 'ofile' => $OUTFILE;
not_arg 'out' => $OUTFILE;
got_arg 'outfile' => $OUTFILE;
not_arg 'v' => 1,
got_arg 'verbose' => 1,
not_arg 'skip_some' => 1,
got_arg 'skip_something' => 1,
is $opt_timeout{min}, $TIMEOUT => 'Got expected value for timeout <min>';
is $opt_timeout{max}, -1 => 'Got default value for timeout <max>';
is $opt_size{h}, $H => 'Got expected value for size <h>';
is $opt_size{w}, $W => 'Got expected value for size <w>';
is_deeply \@opt_also, [ 42, 43 ] => 'Got repeated options as array';
is_deeply \@opt_w, ['s p a c e s'] => 'Handled spaces correctly';
is $opt_step, 7 => 'Handled step size correctly';
# test options that aren't given in @ARGV are still exported
is $opt_missing_bool, undef, 'Got $opt_missing_bool as undef and use strict was happy';
is_deeply \%opt_missing_hash, { }, 'Got %opt_missing_hash with 0 keys and use strict was happy';
is_deeply \@opt_missing_repval, [ ], 'Got @opt_missing_repval with 0 elements and use strict was happy';
is_deeply \@opt_missing_repopt, [ ], 'Got @opt_missing_repopt with 0 elements and use strict was happy';
is_deeply \@opt_missing_repoptmultpholds, [ ], 'Got @opt_missing_repoptmultpholds with 0 elements and use strict was happy';
__END__
=head1 NAME
orchestrate - Convert a file to Melkor's .orc format
=head1 VERSION
This documentation refers to orchestrate version 1.9.4
=head1 USAGE
orchestrate -in source.txt --out dest.orc -verbose -len=24
=head1 REQUIRED ARGUMENTS
=over
=item -i[nfile] [=]<file>
Specify input file
=for Euclid:
file.type: readable
file.default: '-'
=item -o[ut][file]= <file>
Specify output file
=for Euclid:
file.type: writable
file.default: '-'
=back
=head1 OPTIONS
=over
=item size <h>x<w>
Specify height and width
=item -l[[en][gth]] <l>
Display length [default: 24 ]
=for Euclid:
l.type: int > 0
l.default: 24
=item -girth <g>
Display girth [default: 42 ]
=for Euclid:
g.default: 42
=item -v[erbose]
Print all warnings
=item --skip-some[thing]
Don't do something that would normally be done.
=item --also <also>
Also do these things
=for Euclid:
repeatable
=item --timeout [<min>] [<max>]
=for Euclid:
min.type: int
max.type: int
max.default: -1
=item -w <space>
Test something spaced
=for Euclid:
repeatable
=item <step>
Step size
=item --missing-bool
A missing option (boolean)
=item --missing-hash <a>,<b>
A missing option (hash)
=item --missing-repval <a>...
A missing option (repeatable value)
=item --missing-repopt <a>
A missing option (repeatable option)
=for Euclid:
repeatable
=item --missing-repoptmultpholds <a>:<b>
A missing option (repeatable option with multiple placeholders)
=for Euclid:
repeatable
=item --version
=item --usage
=item --help
=item --man
Print the usual program information
=back
=begin remainder of documentation here...
=end
=head1 AUTHOR
Damian Conway (damian@conway.org)
=head1 BUGS
There are undoubtedly serious bugs lurking somewhere in this code.
Bug reports and other feedback are most welcome.
=head1 COPYRIGHT
Copyright (c) 2002, Damian Conway. All Rights Reserved.
This module is free software. It may be used, redistributed
and/or modified under the terms of the Perl Artistic License
(see http://www.perl.com/perl/misc/Artistic.html)
|