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
|
#!/usr/bin/env perl
use strict;
use warnings;
use Test::Exception;
use Test::More;
use File::Spec;
if ( !eval { require MouseX::ConfigFromFile } )
{
plan skip_all => 'Test requires MouseX::ConfigFromFile';
}
else
{
plan tests => 37;
}
{
package App;
use Mouse;
with 'MouseX::Getopt';
with 'MouseX::ConfigFromFile';
has 'config_from_override' => (
is => 'ro',
isa => 'Bool',
default => 0,
);
has 'optional_from_config' => (
is => 'ro',
isa => 'Str',
required => 0,
);
has 'required_from_config' => (
is => 'ro',
isa => 'Str',
required => 1,
);
has 'required_from_argv' => (
is => 'ro',
isa => 'Str',
required => 1,
);
sub get_config_from_file
{
my ( $class, $file ) = @_;
my %config = (
required_from_config => 'from_config_1',
optional_from_config => 'from_config_2',
);
my $cpath = File::Spec->canonpath('/notused/default');
if ( $file ne $cpath ) {
$config{config_from_override} = 1;
}
return \%config;
}
}
{
package App::DefaultConfigFile;
use Mouse;
extends 'App';
has '+configfile' => (
default => File::Spec->canonpath('/notused/default'),
);
}
{
package App::DefaultConfigFileCodeRef;
use Mouse;
extends 'App';
has '+configfile' => (
default => sub { return File::Spec->canonpath('/notused/default') },
);
}
# No config specified
{
local @ARGV = qw( --required_from_argv 1 );
throws_ok { App->new_with_options } qr/Mandatory parameter 'required_from_config' missing/;
{
my $app = App::DefaultConfigFile->new_with_options;
isa_ok( $app, 'App::DefaultConfigFile' );
app_ok( $app );
ok( !$app->config_from_override,
'... config_from_override false as expected' );
is( $app->configfile, File::Spec->canonpath('/notused/default'),
'... configfile is /notused/default as expected' );
}
}
# No config specified
{
local @ARGV = qw( --required_from_argv 1 );
{
my $app = App::DefaultConfigFileCodeRef->new_with_options;
isa_ok( $app, 'App::DefaultConfigFileCodeRef' );
app_ok( $app );
ok( !$app->config_from_override,
'... config_from_override false as expected' );
is( $app->configfile, File::Spec->canonpath('/notused/default'),
'... configfile is /notused/default as expected' );
}
}
# Config specified
{
local @ARGV = qw( --configfile /notused --required_from_argv 1 );
{
my $app = App->new_with_options;
isa_ok( $app, 'App' );
app_ok( $app );
}
{
my $app = App::DefaultConfigFile->new_with_options;
isa_ok( $app, 'App::DefaultConfigFile' );
app_ok( $app );
ok( $app->config_from_override,
'... config_from_override true as expected' );
is( $app->configfile, File::Spec->canonpath('/notused'),
'... configfile is /notused as expected' );
}
{
my $app = App::DefaultConfigFileCodeRef->new_with_options;
isa_ok( $app, 'App::DefaultConfigFileCodeRef' );
app_ok( $app );
ok( $app->config_from_override,
'... config_from_override true as expected' );
is( $app->configfile, File::Spec->canonpath('/notused'),
'... configfile is /notused as expected' );
}
}
# Required arg not supplied from cmdline
{
local @ARGV = qw( --configfile /notused );
throws_ok { App->new_with_options } qr/Mandatory parameter 'required_from_argv' missing/;
}
# Config file value overriden from cmdline
{
local @ARGV = qw( --configfile /notused --required_from_argv 1 --required_from_config override );
my $app = App->new_with_options;
isa_ok( $app, 'App' );
is( $app->required_from_config, 'override',
'... required_from_config is override as expected' );
is( $app->optional_from_config, 'from_config_2',
'... optional_from_config is from_config_2 as expected' );
}
# No config file
{
local @ARGV = qw( --required_from_argv 1 --required_from_config noconfig );
my $app = App->new_with_options;
isa_ok( $app, 'App' );
is( $app->required_from_config, 'noconfig',
'... required_from_config is noconfig as expected' );
ok( !defined $app->optional_from_config,
'... optional_from_config is undef as expected' );
}
{
package BaseApp::WithConfig;
use Mouse;
with 'MouseX::ConfigFromFile';
sub get_config_from_file { return {}; }
}
{
package DerivedApp::Getopt;
use Mouse;
extends 'BaseApp::WithConfig';
with 'MouseX::Getopt';
}
# With DerivedApp, the Getopt role was applied at a different level
# than the ConfigFromFile role
{
lives_ok { DerivedApp::Getopt->new_with_options } 'Can create DerivedApp';
}
sub app_ok {
my $app = shift;
is( $app->required_from_config, 'from_config_1',
'... required_from_config is from_config_1 as expected' );
is( $app->optional_from_config, 'from_config_2',
'... optional_from_config is from_config_2 as expected' );
is( $app->required_from_argv, '1',
'... required_from_argv is 1 as expected' );
}
|