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 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
|
use strict;
use warnings;
use Test::Needs 'MooseX::ConfigFromFile';
use Test::More 0.88;
use Test::Fatal;
use Test::Deep '!blessed';
use Path::Tiny 0.009;
use Scalar::Util 'blessed';
use if $ENV{AUTHOR_TESTING}, 'Test::Warnings';
my %constructor_args;
{
package App;
use Moose;
with 'MooseX::Getopt';
with 'MooseX::ConfigFromFile';
has 'config_from_override' => (
is => 'ro',
isa => 'Bool',
default => 0,
);
has 'optional_from_config' => (
is => 'ro',
isa => 'Str',
required => 0,
);
has 'optional_with_init_arg' => (
is => 'ro',
isa => 'Str',
required => 0,
init_arg => 'foo',
);
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',
);
if ( $file ne Path::Tiny::path('/notused/default') ) {
$config{config_from_override} = 1;
}
return \%config;
}
around BUILDARGS => sub
{
my ($orig, $class) = (shift, shift);
my $args = $class->$orig(@_);
$constructor_args{$class} = $args;
};
}
{
package App::DefaultConfigFile;
use Moose;
extends 'App';
has '+configfile' => (
default => Path::Tiny::path('/notused/default')->stringify,
);
}
{
package App::DefaultConfigFileCodeRef;
use Moose;
extends 'App';
has '+configfile' => (
default => sub { return Path::Tiny::path('/notused/default')->stringify },
);
}
{
package App::ConfigFileWrapped;
use Moose;
extends 'App';
sub _get_default_configfile { '/notused/default' }
}
# No config specified
{
local @ARGV = qw( --required_from_argv 1 );
like exception { App->new_with_options },
($Getopt::Long::Descriptive::VERSION >= 0.091
? qr/Mandatory parameter 'required_from_config' missing/
: qr/Required option missing: required_from_config/);
{
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( path($app->configfile), path('/notused/default'),
'... configfile is /notused/default as expected' );
cmp_deeply(
$constructor_args{blessed($app)},
superhashof({
configfile => str(path('/notused/default')),
}),
'correct constructor args passed',
);
}
{
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( path($app->configfile), path('/notused/default'),
'... configfile is /notused/default as expected' );
cmp_deeply(
$constructor_args{blessed $app},
superhashof({
configfile => str(path('/notused/default')),
}),
'correct constructor args passed',
);
}
SKIP: {
eval "use MooseX::ConfigFromFile 0.08 (); 1;";
diag("MooseX::ConfigFromFile 0.08 needed to test this use of configfile defaults"),
skip "MooseX::ConfigFromFile 0.08 needed to test this use of configfile defaults", 7 if $@;
my $app = App::ConfigFileWrapped->new_with_options;
isa_ok( $app, 'App::ConfigFileWrapped' );
app_ok( $app );
ok( !$app->config_from_override,
'... config_from_override false as expected' );
is( $app->configfile, path('/notused/default'),
'... configfile is /notused/default as expected' );
cmp_deeply(
$constructor_args{blessed $app},
superhashof({
configfile => str(path('/notused/default')),
}),
'correct constructor args passed',
);
}
}
# Config specified
{
local @ARGV = qw( --configfile /notused/override --required_from_argv 1 --foo bar);
{
my $app = App->new_with_options;
isa_ok( $app, 'App' );
app_ok( $app );
is( $app->optional_with_init_arg, 'bar', 'attribute set via init_arg' );
}
{
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( path($app->configfile), path('/notused/override'),
'... configfile is /notused/override as expected' );
cmp_deeply(
$constructor_args{blessed $app},
superhashof({
configfile => str(path('/notused/override')),
}),
'correct constructor args passed',
);
}
{
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( path($app->configfile), path('/notused/override'),
'... configfile is /notused/override as expected' );
cmp_deeply(
$constructor_args{blessed $app},
superhashof({
configfile => str(path('/notused/override')),
}),
'correct constructor args passed',
);
}
{
my $app = App::ConfigFileWrapped->new_with_options;
isa_ok( $app, 'App::ConfigFileWrapped' );
app_ok( $app );
ok( $app->config_from_override,
'... config_from_override true as expected' );
is( path($app->configfile), path('/notused/override'),
'... configfile is /notused as expected' );
cmp_deeply(
$constructor_args{blessed $app},
superhashof({
configfile => str(path('/notused/override')),
}),
'correct constructor args passed',
);
}
}
# Required arg not supplied from cmdline
{
local @ARGV = qw( --configfile /notused/override );
like exception { App->new_with_options },
($Getopt::Long::Descriptive::VERSION >= 0.091
? qr/Mandatory parameter 'required_from_argv' missing/
: qr/Required option missing: required_from_argv/);
}
# Config file value overriden from cmdline
{
local @ARGV = qw( --configfile /notused/override --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 Moose;
with 'MooseX::ConfigFromFile';
sub get_config_from_file { return {}; }
}
{
package DerivedApp::Getopt;
use Moose;
extends 'BaseApp::WithConfig';
with 'MooseX::Getopt';
}
# With DerivedApp, the Getopt role was applied at a different level
# than the ConfigFromFile role
{
ok ! exception { 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' );
}
done_testing;
|