enable -ForceArray option by default for Config::General
[p5sagit/Config-Any.git] / t / 20-parse.t
1 package MockApp;
2 use strict;
3 use warnings;
4
5 $|++;
6 use Test::More tests => 54;
7 use Scalar::Util qw(blessed reftype);
8 use Config::Any;
9 use Config::Any::General;
10 use Config::Any::INI;
11 use Config::Any::JSON;
12 use Config::Any::Perl;
13 use Config::Any::XML;
14 use Config::Any::YAML;
15
16 our %ext_map = (
17     conf => 'Config::Any::General',
18     ini  => 'Config::Any::INI',
19     json => 'Config::Any::JSON',
20     pl   => 'Config::Any::Perl',
21     xml  => 'Config::Any::XML',
22     yml  => 'Config::Any::YAML'
23 );
24
25 sub load_parser_for {
26     my $f = shift;
27     return unless $f;
28
29     my ( $ext ) = $f =~ m{ \. ( [^\.]+ ) \z }xms;
30     my $mod = $ext_map{ $ext };
31     my $mod_load_result;
32     eval {
33         $mod_load_result = $mod->load( $f );
34         delete $INC{ $f } if $ext eq 'pl';
35     };
36     return $@ ? ( 1, $mod ) : ( 0, $mod );
37 }
38
39 for my $f ( map { "t/conf/conf.$_" } keys %ext_map ) {
40     my ( $skip, $mod ) = load_parser_for( $f );
41 SKIP: {
42         skip "File loading backend for $mod not found", 9 if $skip;
43
44         ok( my $c_arr
45                 = Config::Any->load_files(
46                 { files => [ $f ], use_ext => 1 } ),
47             "load_files with use_ext works [$f]"
48         );
49         ok( my $c = $c_arr->[ 0 ], "load_files returns an arrayref" );
50
51         ok( ref $c, "load_files arrayref contains a ref" );
52         my $ref = blessed $c ? reftype $c : ref $c;
53         is( substr( $ref, 0, 4 ), "HASH", "hashref" );
54
55         my ( $name, $cfg ) = each %$c;
56         is( $name, $f, "filename matches" );
57
58         my $cfgref = blessed $cfg ? reftype $cfg : ref $cfg;
59         is( substr( $cfgref, 0, 4 ), "HASH", "hashref cfg" );
60
61         is( $cfg->{ name }, 'TestApp', "appname parses" );
62         is( $cfg->{ Component }{ "Controller::Foo" }->{ foo },
63             'bar', "component->cntrlr->foo = bar" );
64         is( $cfg->{ Model }{ "Model::Baz" }->{ qux },
65             'xyzzy', "model->model::baz->qux = xyzzy" );
66     }
67 }
68