Bug 17600: Standardize our EXPORT_OK
[srvgit] / t / db_dependent / Auth_with_cas.t
index 5b87605..be33224 100755 (executable)
 
 use Modern::Perl;
 
-use Test::More tests => 4;
+use Test::More tests => 5;
+use Test::MockModule;
+use Test::MockObject;
+
 use CGI;
 
 use t::lib::Mocks;
@@ -25,7 +28,7 @@ use C4::Context;
 use Koha::Database;
 
 BEGIN {
-    use_ok('C4::Auth_with_cas');
+    use_ok('C4::Auth_with_cas', qw( check_api_auth_cas checkpw_cas login_cas logout_cas login_cas_url ));
     can_ok('C4::Auth_with_cas', qw/
             check_api_auth_cas
             checkpw_cas
@@ -49,7 +52,7 @@ my $query_string = 'ticket=foo&bar=baz';
 $ENV{QUERY_STRING} = $query_string;
 $ENV{SCRIPT_NAME} = '/cgi-bin/koha/opac-user.pl';
 
-my $cgi = new CGI($query_string);
+my $cgi = CGI->new($query_string);
 $cgi->delete('ticket');
 
 # _url_with_get_params tests
@@ -62,3 +65,57 @@ $ENV{SCRIPT_NAME} = '/cgi-bin/koha/circ/circulation-home.pl';
 is(C4::Auth_with_cas::_url_with_get_params($cgi, 'intranet'),
     "$staff_base_url/cgi-bin/koha/circ/circulation-home.pl?bar=baz",
    "Intranet URL should be returned when using intranet login (Bug 13507)");
+
+subtest 'logout_cas() tests' => sub {
+
+    plan tests => 4;
+
+    my $cas_url = "https://mycasserver.url";
+
+    my $auth_with_cas_mock = Test::MockModule->new('C4::Auth_with_cas');
+    $auth_with_cas_mock->mock( '_get_cas_and_service', sub
+        {
+            my $cas = Test::MockObject->new();
+            $cas->mock( 'logout_url', sub {
+                return "$cas_url/logout/?url=https://mykoha.url";
+            });
+            return ( $cas, "$cas_url?logout.x=1" );
+        }
+    );
+
+    my $cas_version;
+    my $expected_logout_url;
+
+    # Yeah, this gets funky
+    my $cgi_mock = Test::MockModule->new('CGI');
+    $cgi_mock->mock( 'redirect', sub {
+        my ( $self, $url ) = @_;
+        return $url;
+    });
+
+    # Test CAS 2.0 behavior
+    $cas_version = 2;
+    $expected_logout_url = "$cas_url/logout/?url=https://mykoha.url";
+
+    my $redirect_output = '';
+    close(STDOUT);
+    open(STDOUT, ">", \$redirect_output) or die "Error opening STDOUT";
+
+    t::lib::Mocks::mock_preference( 'casServerVersion', $cas_version );
+    C4::Auth_with_cas::logout_cas( CGI->new, 'anything' );
+    is( $redirect_output, $expected_logout_url, "The generated URL is correct (v$cas_version\.0)" );
+    unlike( $redirect_output, qr/logout\.x\=1/, 'logout.x=1 gets removed' );
+
+    # Test CAS 3.0 behavior
+    $redirect_output = '';
+    close(STDOUT);
+    open(STDOUT, ">", \$redirect_output) or die "Error opening STDOUT";
+
+    $cas_version = 3;
+    $expected_logout_url = "$cas_url/logout/?service=https://mykoha.url";
+
+    t::lib::Mocks::mock_preference( 'casServerVersion', $cas_version );
+    C4::Auth_with_cas::logout_cas( CGI->new, 'anything' );
+    is( $redirect_output, $expected_logout_url, "The generated URL is correct (v$cas_version\.0)" );
+    unlike( $redirect_output, qr/logout\.x\=1/, 'logout.x=1 gets removed' );
+};