2009-10-10 16:07:21 +00:00
|
|
|
#
|
2009-10-10 16:11:25 +00:00
|
|
|
# testscript for Config::General Classes by Thomas Linden
|
|
|
|
|
#
|
2009-10-10 16:07:21 +00:00
|
|
|
# needs to be invoked using the command "make test" from
|
2009-10-10 16:11:25 +00:00
|
|
|
# the Config::General source directory.
|
|
|
|
|
#
|
|
|
|
|
# Under normal circumstances every test should succeed.
|
2009-10-10 16:07:21 +00:00
|
|
|
|
2009-10-10 16:17:24 +00:00
|
|
|
BEGIN { $| = 1; print "1..16\n";}
|
2009-10-10 16:07:21 +00:00
|
|
|
use lib "blib/lib";
|
|
|
|
|
use Config::General;
|
2009-10-10 16:11:25 +00:00
|
|
|
use Config::General::Extended;
|
2009-10-10 16:17:24 +00:00
|
|
|
use Config::General::Interpolated;
|
2009-10-10 16:10:12 +00:00
|
|
|
use Data::Dumper;
|
2009-10-10 16:07:21 +00:00
|
|
|
print "ok\n";
|
2009-10-10 16:17:24 +00:00
|
|
|
print STDERR " .. ok # loading:
|
|
|
|
|
Config::General
|
|
|
|
|
Config::General::Extended
|
|
|
|
|
Config::General::Interpolated\n";
|
2009-10-10 16:07:21 +00:00
|
|
|
|
2009-10-10 16:10:12 +00:00
|
|
|
foreach (2..7) {
|
2009-10-10 16:07:21 +00:00
|
|
|
&p("t/cfg." . $_, $_);
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-10 16:10:12 +00:00
|
|
|
my $conf = new Config::General("t/cfg.8");
|
2009-10-10 16:07:21 +00:00
|
|
|
my %hash = $conf->getall;
|
|
|
|
|
$conf->save("t/cfg.out", %hash);
|
|
|
|
|
|
|
|
|
|
my $copy = new Config::General("t/cfg.out");
|
|
|
|
|
my %copyhash = $copy->getall;
|
|
|
|
|
|
|
|
|
|
my $a = \%hash;
|
|
|
|
|
my $b = \%copyhash;
|
|
|
|
|
|
|
|
|
|
# now see if the saved hash is still the same as the
|
2009-10-10 16:10:12 +00:00
|
|
|
# one we got from cfg.8
|
2009-10-10 16:07:21 +00:00
|
|
|
if (&comp($a,$b)) {
|
|
|
|
|
print "ok\n";
|
2009-10-10 16:17:24 +00:00
|
|
|
print STDERR " .. ok # Writing Config Hash to disk and compare with original\n";
|
2009-10-10 16:07:21 +00:00
|
|
|
}
|
|
|
|
|
else {
|
2009-10-10 16:10:12 +00:00
|
|
|
print "8 not ok\n";
|
|
|
|
|
print STDERR "8 .. not ok\n";
|
2009-10-10 16:07:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2009-10-10 16:11:25 +00:00
|
|
|
############## Extended Tests #################
|
|
|
|
|
|
|
|
|
|
$conf = new Config::General::Extended("t/test.rc");
|
|
|
|
|
print "ok\n";
|
2009-10-10 16:17:24 +00:00
|
|
|
print STDERR " .. ok # Creating a new object from config file\n";
|
2009-10-10 16:11:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# now test the new notation of new()
|
|
|
|
|
my $conf2 = new Config::General::Extended(
|
|
|
|
|
-file => "t/test.rc",
|
|
|
|
|
-AllowMultiOptions => "yes"
|
|
|
|
|
);
|
|
|
|
|
print "ok\n";
|
2009-10-10 16:17:24 +00:00
|
|
|
print STDERR " .. ok # Creating a new object using the hash parameter way\n";
|
2009-10-10 16:11:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
my $domain = $conf->obj("domain");
|
|
|
|
|
print "ok\n";
|
2009-10-10 16:17:24 +00:00
|
|
|
print STDERR " .. ok # Creating a new object from a block\n";
|
2009-10-10 16:11:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
my $addr = $domain->obj("bar.de");
|
|
|
|
|
print "ok\n";
|
2009-10-10 16:17:24 +00:00
|
|
|
print STDERR " .. ok # Creating a new object from a sub block\n";
|
2009-10-10 16:11:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
my @keys = $conf->keys("domain");
|
|
|
|
|
print "ok\n";
|
2009-10-10 16:17:24 +00:00
|
|
|
print STDERR " .. ok # Getting values from the object\n";
|
2009-10-10 16:11:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# test various OO methods
|
|
|
|
|
if ($conf->is_hash("domain")) {
|
|
|
|
|
my $domains = $conf->obj("domain");
|
|
|
|
|
foreach my $domain ($conf->keys("domain")) {
|
|
|
|
|
my $domain_obj = $domains->obj($domain);
|
|
|
|
|
foreach my $address ($domains->keys($domain)) {
|
|
|
|
|
my $blah = $domain_obj->value($address);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
print "ok\n";
|
2009-10-10 16:17:24 +00:00
|
|
|
print STDERR " .. ok # Using keys() and values() \n";
|
2009-10-10 16:11:25 +00:00
|
|
|
|
|
|
|
|
# test AUTOLOAD methods
|
|
|
|
|
my $conf3 = new Config::General::Extended( { name => "Moser", prename => "Hannes"}
|
|
|
|
|
);
|
|
|
|
|
my $n = $conf3->name;
|
|
|
|
|
my $p = $conf3->prename;
|
|
|
|
|
$conf3->name("Meier");
|
|
|
|
|
$conf3->prename("Max");
|
|
|
|
|
$conf3->save("t/test.cfg");
|
|
|
|
|
|
|
|
|
|
print "ok\n";
|
2009-10-10 16:17:24 +00:00
|
|
|
print STDERR " .. ok # Using AUTOLOAD methods\n";
|
2009-10-10 16:11:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-10-10 16:17:24 +00:00
|
|
|
# testing variable interpolation
|
|
|
|
|
my $conf16 = new Config::General::Interpolated("t/cfg.16");
|
|
|
|
|
my %h16 = $conf16->getall();
|
|
|
|
|
|
|
|
|
|
if($h16{etc}->{log} eq "/usr/local/log/logfile") {
|
|
|
|
|
print "ok\n";
|
|
|
|
|
print STDERR " .. ok # Testing variable interpolation\n";
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
print "16 not ok\n";
|
|
|
|
|
print STDERR "16 not ok\n";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-10-10 16:07:21 +00:00
|
|
|
sub p {
|
|
|
|
|
my($cfg, $t) = @_;
|
|
|
|
|
open T, "<$cfg";
|
|
|
|
|
my @file = <T>;
|
|
|
|
|
close T;
|
|
|
|
|
@file = map { chomp($_); $_} @file;
|
|
|
|
|
my $fst = $file[0];
|
|
|
|
|
my $conf = new Config::General($cfg);
|
|
|
|
|
my %hash = $conf->getall;
|
|
|
|
|
print "ok\n";
|
2009-10-10 16:17:24 +00:00
|
|
|
print STDERR " .. ok $fst\n";
|
2009-10-10 16:07:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sub comp {
|
|
|
|
|
my($a, $b) = @_;
|
|
|
|
|
foreach my $key (keys %{$a}) {
|
|
|
|
|
if(ref($a->{$key}) eq "HASH") {
|
|
|
|
|
&comp($a->{$key},$b->{$key});
|
|
|
|
|
next;
|
|
|
|
|
}
|
|
|
|
|
elsif(ref($a->{$key}) eq "ARRAY") {
|
|
|
|
|
# ignore arrays for simplicity
|
|
|
|
|
next;
|
|
|
|
|
}
|
|
|
|
|
return 0 if($a->{$key} ne $b->{$key});
|
|
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|