You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
965 B
37 lines
965 B
use strict;
|
|
use Test::More tests => 6;
|
|
|
|
use_ok( 'Lemonldap::NG::Portal::Simple' );
|
|
|
|
ok(open(F, 'lemonldap-ng-portal/blib/lib/Lemonldap/NG/Portal/Simple.pm'));
|
|
|
|
my (%h1,%h2,@missingInStatus,@differentValues);
|
|
|
|
# Load constants
|
|
while(<F>){
|
|
$h1{$1} = $2 if(/^\s*PE_(\w+)\s*=>\s*(-?\d+),$/);
|
|
last if(/^sub/);
|
|
}
|
|
close F;
|
|
ok(open(F, 'lemonldap-ng-handler/blib/lib/Lemonldap/NG/Handler/Status.pm'));
|
|
while(<F>){
|
|
$h2{$2} = $1 if(/^\s*(-?\d+)\s*=>\s*'PORTAL_(\w+)',$/);
|
|
}
|
|
|
|
foreach my $k(sort keys %h1) {
|
|
if(defined($h2{$k})){
|
|
unless($h1{$k} == $h2{$k}){
|
|
push @differentValues,$k;
|
|
}
|
|
delete $h2{$k};
|
|
}
|
|
else {
|
|
push @missingInStatus,$k;
|
|
}
|
|
delete $h1{$k};
|
|
}
|
|
|
|
ok(!@differentValues,'Search different constant values between Status.pm and portal');
|
|
ok(!@missingInStatus,join(', ','Search missing constants in Status.pm',@missingInStatus));
|
|
ok(!(keys %h2), 'Constants set in Status.pm and not in portal');
|
|
|
|
|