BUG 8010: Correct a few syntax errors, and moved tests
[koha.git] / t / db_dependent / Auth2.t
blob7a92d03a27400029bcb77f832aa6aa391372edf0
1 #!/usr/bin/perl
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18 use Modern::Perl;
20 use CGI qw ( -utf8 );
21 use Test::MockModule;
22 use List::MoreUtils qw/all any none/;
23 use Test::More tests => 2;
24 use t::lib::Mocks;
25 use t::lib::TestBuilder;
27 use C4::Auth;
28 use Koha::AuthUtils qw/hash_password/;
29 use Koha::Database;
31 my $query = new CGI;
33 my $schema = Koha::Database->schema;
34 $schema->storage->txn_begin;
35 my $builder = t::lib::TestBuilder->new;
37 # Borrower Creation
38 my $hash = hash_password('password');
39 my $patron = $builder->build( { source => 'Borrower' } );
40 Koha::Patrons->find( $patron->{borrowernumber} )->update_password( $patron->{userid}, $hash );
42 my $session = C4::Auth::get_session("");
43 $session->flush;
45 sub myMockedget_from_session {
46 my $expected_recent_searches = [
48 'time' => 1374978877,
49 'query_cgi' => 'cgi_test',
50 'total' => 2,
51 'query_desc' => 'kw,wrdl: history, '
54 return @{$expected_recent_searches};
58 my $getfrom = new Test::MockModule( 'C4::Search::History' );
59 $getfrom->mock( 'get_from_session', \&myMockedget_from_session );
61 my $cgi = new Test::MockModule( 'CGI');
62 $cgi->mock('cookie', sub {
63 my ($self, $key) = @_;
64 if (!ref($key) && $key eq 'CGISESSID'){
65 return 'ID';
67 });
69 sub MockedCheckauth {
70 my ($query,$authnotrequired,$flagsrequired,$type) = @_;
71 my $userid = $patron->{userid};
72 my $sessionID = 234;
73 my $flags = {
74 superlibrarian => 1, acquisition => 0,
75 borrowers => 0,
76 catalogue => 1, circulate => 0,
77 coursereserves => 0, editauthorities => 0,
78 editcatalogue => 0, management => 0,
79 parameters => 0, permissions => 0,
80 plugins => 0, reports => 0,
81 reserveforothers => 0, serials => 0,
82 staffaccess => 0, tools => 0,
83 updatecharges => 0
86 my $session_cookie = $query->cookie(
87 -name => 'CGISESSID',
88 -value => '9884013ae2c441d12e0bc9376242d2a8',
89 -HttpOnly => 1
91 return ( $userid, $session_cookie, $sessionID, $flags );
94 # Mock checkauth
95 my $auth = new Test::MockModule( 'C4::Auth' );
96 $auth->mock( 'checkauth', \&MockedCheckauth );
98 $query->param('koha_login_context', 'opac');
99 $query->param('userid', $patron->{userid});
100 $query->param('password', 'password');
102 # Test when the syspref is disabled
103 t::lib::Mocks::mock_preference('addSearchHistoryToTheFirstLoggedUser', 0);
104 my $result = $schema->resultset('SearchHistory')->search()->count;
106 my ( $template, $loggedinuser, $cookies ) = get_template_and_user(
108 template_name => "opac-user.tt",
109 query => $query,
110 type => "opac",
111 authnotrequired => 0,
112 debug => 1
116 my $result2 = $schema->resultset('SearchHistory')->search()->count;
117 is($result2, $result, 'no new search added to borrower');
119 # Test when the syspref is enabled
120 t::lib::Mocks::mock_preference('addSearchHistoryToTheFirstLoggedUser', 1);
121 $query->param('koha_login_context', 'opac');
122 $query->param('userid', $patron->{userid});
123 $query->param('password', 'password');
124 $query->cookie(
125 -name => 'CGISESSID',
126 -value => $session->id,
127 -HttpOnly => 1
130 $result = $schema->resultset('SearchHistory')->search()->count;
132 ( $template, $loggedinuser, $cookies ) = get_template_and_user(
134 template_name => "opac-user.tt",
135 query => $query,
136 type => "opac",
137 authnotrequired => 0,
138 debug => 1
142 $result2 = $schema->resultset('SearchHistory')->search()->count;
143 is($result2, $result+1, 'new search added to borrower');
145 # Delete the inserts
146 $result = $schema->resultset('SearchHistory')->search(undef, { query_cgi => 'cgi_test'});
147 $result->delete_all();