diff --git a/lemonldap-ng-manager/t/80-attributes.t b/lemonldap-ng-manager/t/80-attributes.t index b31ac5521..da73fe1f3 100644 --- a/lemonldap-ng-manager/t/80-attributes.t +++ b/lemonldap-ng-manager/t/80-attributes.t @@ -1,6 +1,8 @@ use strict; use Test::More; +my $knownExceptions = qr/^(?:remoteCookieName)$/; + ok( open( F, 'lib/Lemonldap/NG/Manager/Build/Attributes.pm' ), 'open attributes file' ); my $count = 1; @@ -48,12 +50,12 @@ sub scanTree { ), "Node $name has leafs" ); - $count += 3; + $count += 4; foreach my $n (qw(nodes nodes_cond group)) { scanTree( $leaf->{$n} ) if ( exists $leaf->{$n} ); } } - else { + elsif ( $leaf !~ $knownExceptions ) { ok( $leaf =~ /^\*?\w+/, "Leaf is an attribute name ($leaf)" ); $h2{$leaf}++; ok( $h2{$leaf} == 1, "$leaf is uniq" ); diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthProxy.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthProxy.pm index 610242982..e407d9eeb 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthProxy.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthProxy.pm @@ -68,7 +68,7 @@ Lemonldap::NG::Portal::AuthProxy - Authentication module for Lemonldap::NG that delegates authentication to a remote Lemonldap::NG portal. The difference with Remote authentication module is that the client will never -be redirect to the main Lemonldap::NG portal. This configuration is usable if +be redirected to the main Lemonldap::NG portal. This configuration is usable if you want to expose your internal SSO to another network (DMZ). =head1 SYNOPSIS