use warnings tester with fewer dependencies, issues
[gitmo/MooseX-Getopt.git] / t / 001_basic.t
1 use strict;
2 use warnings FATAL => 'all';
3
4 use Test::More tests => 70;
5 use Test::Moose;
6 use Test::Warnings;
7
8 BEGIN {
9     use_ok('MooseX::Getopt');
10 }
11
12 {
13     package App;
14     use Moose;
15
16     with 'MooseX::Getopt';
17
18     has 'data' => (
19         metaclass => 'Getopt',
20         is        => 'ro',
21         isa       => 'Str',
22         default   => 'file.dat',
23         cmd_flag  => 'f',
24     );
25
26     has 'cow' => (
27         metaclass   => 'Getopt',
28         is          => 'ro',
29         isa         => 'Str',
30         default     => 'moo',
31         cmd_aliases => [qw/ moocow m c /],
32     );
33
34     has 'horse' => (
35         traits      => ['Getopt'],
36         is          => 'ro',
37         isa         => 'Str',
38         default     => 'bray',
39         cmd_flag    => 'horsey',
40         cmd_aliases => 'x',
41     );
42
43     has 'length' => (
44         is      => 'ro',
45         isa     => 'Int',
46         default => 24
47     );
48
49     has 'verbose' => (
50         is     => 'ro',
51         isa    => 'Bool',
52     );
53
54     has 'libs' => (
55         is      => 'ro',
56         isa     => 'ArrayRef',
57         default => sub { [] },
58     );
59
60     has 'details' => (
61         is      => 'ro',
62         isa     => 'HashRef',
63         default => sub { {} },
64     );
65
66     has '_private_stuff' => (
67         is      => 'ro',
68         isa     => 'Int',
69         default => 713
70     );
71
72     has '_private_stuff_cmdline' => (
73         traits    => ['Getopt'],
74         is        => 'ro',
75         isa       => 'Int',
76         default   => 832,
77         cmd_flag  => 'p',
78     );
79 }
80
81 foreach my $attr_name (qw(data cow horse _private_stuff_cmdline)) {
82     my $attr = App->meta->get_attribute($attr_name);
83     isa_ok($attr, 'Moose::Meta::Attribute');
84     if ($attr_name eq 'data' or $attr_name eq 'cow')
85     {
86         isa_ok($attr, 'MooseX::Getopt::Meta::Attribute');
87     }
88     else
89     {
90         does_ok($attr, 'MooseX::Getopt::Meta::Attribute::Trait');
91     }
92     can_ok($attr, 'cmd_flag');
93     can_ok($attr, 'cmd_aliases');
94 }
95
96 {
97     local @ARGV = ();
98
99     my $app = App->new_with_options;
100     isa_ok($app, 'App');
101
102     ok(!$app->verbose, '... verbosity is off as expected');
103     is($app->length, 24, '... length is 24 as expected');
104     is($app->data, 'file.dat', '... data is file.dat as expected');
105     is_deeply($app->libs, [], '... libs is [] as expected');
106     is_deeply($app->details, {}, '... details is {} as expected');
107 }
108
109 {
110     local @ARGV = ('--verbose', '--length', 50);
111
112     my $app = App->new_with_options;
113     isa_ok($app, 'App');
114
115     ok($app->verbose, '... verbosity is turned on as expected');
116     is($app->length, 50, '... length is 50 as expected');
117     is($app->data, 'file.dat', '... data is file.dat as expected');
118     is_deeply($app->libs, [], '... libs is [] as expected');
119     is_deeply($app->details, {}, '... details is {} as expected');
120 }
121
122 {
123     local @ARGV = ('--verbose', '-f', 'foo.txt');
124
125     my $app = App->new_with_options;
126     isa_ok($app, 'App');
127
128     ok($app->verbose, '... verbosity is turned on as expected');
129     is($app->length, 24, '... length is 24 as expected');
130     is($app->data, 'foo.txt', '... data is foo.txt as expected');
131     is_deeply($app->libs, [], '... libs is [] as expected');
132     is_deeply($app->details, {}, '... details is {} as expected');
133 }
134
135 {
136     local @ARGV = ('--verbose', '--libs', 'libs/', '--libs', 'includes/lib');
137
138     my $app = App->new_with_options;
139     isa_ok($app, 'App');
140
141     ok($app->verbose, '... verbosity is turned on as expected');
142     is($app->length, 24, '... length is 24 as expected');
143     is($app->data, 'file.dat', '... data is foo.txt as expected');
144     is_deeply($app->libs,
145     ['libs/', 'includes/lib'],
146     '... libs is [libs/, includes/lib] as expected');
147     is_deeply($app->details, {}, '... details is {} as expected');
148 }
149
150 {
151     local @ARGV = ('--details', 'os=mac', '--details', 'name=foo');
152
153     my $app = App->new_with_options;
154     isa_ok($app, 'App');
155
156     ok(!$app->verbose, '... verbosity is turned on as expected');
157     is($app->length, 24, '... length is 24 as expected');
158     is($app->data, 'file.dat', '... data is foo.txt as expected');
159     is_deeply($app->libs, [], '... libs is [] as expected');
160     is_deeply($app->details,
161     { os => 'mac', name => 'foo' },
162     '... details is { os => mac, name => foo } as expected');
163 }
164
165 {
166     # Test negation on booleans too ...
167     local @ARGV = ('--noverbose');
168
169     my $app = App->new_with_options;
170     isa_ok($app, 'App');
171
172     ok(!$app->verbose, '... verbosity is turned off as expected');
173     is($app->length, 24, '... length is 24 as expected');
174     is($app->data, 'file.dat', '... file is file.dat as expected');
175     is_deeply($app->libs, [], '... libs is [] as expected');
176     is_deeply($app->details, {}, '... details is {} as expected');
177 }
178
179 # Test cmd_alias without cmd_flag
180 {
181     local @ARGV = ('--cow', '42');
182     my $app = App->new_with_options;
183     isa_ok($app, 'App');
184     is($app->cow, 42, 'cmd_alias, but not using it');
185 }
186 {
187     local @ARGV = ('--moocow', '88');
188     my $app = App->new_with_options;
189     isa_ok($app, 'App');
190     is($app->cow, 88, 'cmd_alias, using long one');
191 }
192 {
193     local @ARGV = ('-c', '99');
194     my $app = App->new_with_options;
195     isa_ok($app, 'App');
196     is($app->cow, 99, 'cmd_alias, using short one');
197 }
198
199 # Test cmd_alias + cmd_flag
200 {
201     local @ARGV = ('--horsey', '123');
202     my $app = App->new_with_options;
203     isa_ok($app, 'App');
204     is($app->horse, 123, 'cmd_alias+cmd_flag, using flag');
205 }
206 {
207     local @ARGV = ('-x', '321');
208     my $app = App->new_with_options;
209     isa_ok($app, 'App');
210     is($app->horse, 321, 'cmd_alias+cmd_flag, using alias');
211 }
212
213 # Test _foo + cmd_flag
214 {
215     local @ARGV = ('-p', '666');
216     my $app = App->new_with_options;
217     isa_ok($app, 'App');
218     is($app->_private_stuff_cmdline, 666, '_foo + cmd_flag');
219 }
220
221 # Test ARGV support
222 {
223     my @args = ('-p', 12345, '-c', 99, '-');
224     local @ARGV = @args;
225     my $app = App->new_with_options;
226     isa_ok($app, 'App');
227     is_deeply($app->ARGV, \@args, 'ARGV accessor');
228     is_deeply(\@ARGV, \@args, '@ARGV unmangled');
229     is_deeply($app->extra_argv, ['-'], 'extra_argv accessor');
230 }