improve diagnostics in yaml test
[p5sagit/Config-Any.git] / t / 53-perl.t
index 5e51b41..4e59ae7 100644 (file)
@@ -1,17 +1,60 @@
-use Test::More tests => 3;
+use strict;
+use warnings;
 
+use Test::More tests => 12;
+use Config::Any;
 use Config::Any::Perl;
 
-my $file = 't/conf/conf.pl';
-my $config = eval { Config::Any::Perl->load( $file ) };
-
-SKIP: {
-    skip "Couldn't Load Perl plugin", 3 if $@;
+{
+    my $file   = 't/conf/conf.pl';
+    my $config = Config::Any::Perl->load( $file );
 
     ok( $config );
     is( $config->{ name }, 'TestApp' );
 
-    my $config_2 = eval { Config::Any::Perl->load( $file ) };
+    my $config_load2 = Config::Any::Perl->load( $file );
+    is_deeply( $config_load2, $config, 'multiple loads of the same file' );
+}
+
+# test invalid config
+{
+    my $file = 't/invalid/conf.pl';
+    my $config;
+    my $loaded = eval {
+        $config = Config::Any::Perl->load( $file );
+        1;
+    };
+
+    ok !$loaded, 'config load failed';
+    is $config, undef, 'config load failed';
+    like $@, qr/syntax error/, 'error thrown';
+}
+
+# parse error generated on invalid config
+{
+    my $file = 't/invalid/conf.pl';
+    my $config;
+    my $loaded = eval {
+        $config = Config::Any::Perl->load( $file );
+        Config::Any->load_files( { files => [$file], use_ext => 1} );
+        1;
+    };
+
+    ok !$loaded, 'config load failed';
+    is $config, undef, 'config load failed';
+    like $@, qr/syntax error/, 'error thrown';
+}
+
+# test missing config
+{
+    my $file = 't/invalid/missing.pl';
+    my $config;
+    my $loaded = eval {
+        $config = Config::Any::Perl->load( $file );
+        1;
+    };
 
-    is_deeply( $config_2, $config, 'multiple loads of perl configs' );
+    ok !$loaded, 'config load failed';
+    is $config, undef, 'config load failed';
+    isnt $@, '', 'error thrown';
 }