Config-INI
view release on metacpan or search on metacpan
t/reader-err.t view on Meta::CPAN
eval { Config::INI::Reader->read_file($filename); };
like(
$@,
qr/file '$filename' does not exist/i,
'read_file with non-existent file'
);
}
{
my $filename = 'lib';
eval { Config::INI::Reader->read_file($filename); };
like($@, qr/not readable/i, 'read_file on non-readable thing');
}
SKIP: {
eval "require File::Temp;" or skip "File::Temp not available", 1;
# This could probably be limited to being required for Cygwin.
eval "require filetest;" or skip "filetest.pm not available", 1;
filetest->import('access');
my ($fh, $fn) = File::Temp::tempfile('tempXXXXX', UNLINK => 1);
close $fh;
chmod 0222, $fn;
if (-r $fn) {
chmod 0666, $fh;
skip "chmoding file 0222 left it -r", 1;
}
eval { Config::INI::Reader->read_file($fn); };
like($@, qr/not readable/, "can't read an unreadable file");
chmod 0666, $fh;
}
eval { Config::INI::Reader->read_string; };
like($@, qr/no string provided/i, 'read_string without args');
{
my $input = 'foo bar moo';
eval { Config::INI::Reader->read_string($input); };
like($@, qr/Syntax error at line 1: '$input'/i, 'syntax error');
}
{
# looks like a comment
my $input = "[foo ; bar]\nvalue = 1\n";
my $data = eval { Config::INI::Reader->read_string($input); };
like($@, qr/Syntax error at line 1:/i, 'syntax error');
}
{
my $ok = eval {
my $hashref = Config::INI::Reader->read_file( 'examples/utf8-bom.ini' );
1;
};
my $error = $@;
ok( ! $ok, "we can't read a UTF-8 file that starts with a BOM");
like($error, qr/BOM/, "the error message mentions a BOM");
}
done_testing;
( run in 0.482 second using v1.01-cache-2.11-cpan-39bf76dae61 )