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
|
#!/usr/bin/env perl
use strict;
use warnings;
use Test::Exception;
use Test::More;
if ( !eval { require MooseX::ConfigFromFile } )
{
plan skip_all => 'Test requires MooseX::ConfigFromFile';
}
else
{
plan tests => 25;
}
{
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 '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 '/notused/default' ) {
$config{config_from_override} = 1;
}
return \%config;
}
}
{
package App::DefaultConfigFile;
use Moose;
extends 'App';
has '+configfile' => (
default => '/notused/default',
);
}
# No config specified
{
local @ARGV = qw( --required_from_argv 1 );
throws_ok { App->new_with_options } 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( $app->configfile, '/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, '/notused',
'... configfile is /notused as expected' );
}
}
# Required arg not supplied from cmdline
{
local @ARGV = qw( --configfile /notused );
throws_ok { App->new_with_options } qr/Required option missing: required_from_argv/;
}
# 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 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
{
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' );
}
|