Implements feature suggestion RT#58715 by storing the Usage object, fixes
[gitmo/MooseX-Getopt.git] / t / 107_no_auto_help.t
1 # Related information:
2 # https://rt.cpan.org/Public/Bug/Display.html?id=47865
3 # https://rt.cpan.org/Public/Bug/Display.html?id=52474
4 # https://rt.cpan.org/Public/Bug/Display.html?id=57683
5 # http://www.nntp.perl.org/group/perl.moose/2010/06/msg1767.html
6
7 # Summary: If we disable the "auto_help" option in Getopt::Long, then
8 # getoptions() will not call into pod2usage() (causing program termination)
9 # when --help is passed (and MooseX::ConfigFromFile is in use).
10
11
12 my $fail_on_exit = 1;
13 {
14     package Class;
15     use strict; use warnings;
16
17     use Moose;
18     with
19         'MooseX::SimpleConfig',
20         'MooseX::Getopt';
21
22     # this is a hacky way of being able to check that we made it past the
23     # $opt_parser->getoptions() call in new_with_options, because it is
24     # still going to bail out later on, on seeing the --help flag
25     has configfile => (
26         is => 'ro', isa => 'Str',
27         default => sub {
28             $fail_on_exit = 0;
29             'this_value_unimportant',
30         },
31     );
32
33     no Moose;
34     1;
35 }
36
37 use Test::More tests => 3;
38 use Test::Warn;
39 use Test::Exception;
40
41 END {
42     ok(!$fail_on_exit, 'getoptions() lives');
43
44     # cancel the non-zero exit status from _getopt_full_usage()
45     exit 0;
46 }
47
48
49 @ARGV = ('--help');
50
51 warning_like {
52     throws_ok { Class->new_with_options }
53            #usage: 107_no_auto_help.t [-?] [long options...]
54         qr/^usage: [\d\w]+\Q.t [-?] [long options...]\E.\t--configfile\s*.\t\Q-? --usage --help  Prints this usage information.\E/ms,
55         'usage information looks good';
56     }
57     qr/^Specified configfile \'this_value_unimportant\' does not exist, is empty, or is not readable$/,
58     'Our dummy config file doesn\'t exist';
59