3 # This Koha test module is a stub!
4 # Add more tests here!!!
12 use List
::MoreUtils qw
/all any none/;
13 use Test
::More tests
=> 21;
16 use t
::lib
::TestBuilder
;
18 use C4
::Auth
qw(checkpw);
20 use Koha
::AuthUtils qw
/hash_password/;
28 my $schema = Koha
::Database
->schema;
29 my $builder = t
::lib
::TestBuilder
->new;
30 my $dbh = C4
::Context
->dbh;
32 # FIXME: SessionStorage defaults to mysql, but it seems to break transaction
34 t
::lib
::Mocks
::mock_preference
( 'SessionStorage', 'tmp' );
36 $schema->storage->txn_begin;
38 subtest
'checkauth() tests' => sub {
42 my $patron = $builder->build({ source
=> 'Borrower', value
=> { flags
=> undef } })->{userid
};
44 # Mock a CGI object with real userid param
45 my $cgi = Test
::MockObject
->new();
46 $cgi->mock( 'param', sub { return $patron; } );
47 $cgi->mock( 'cookie', sub { return; } );
49 my $authnotrequired = 1;
50 my ( $userid, $cookie, $sessionID, $flags ) = C4
::Auth
::checkauth
( $cgi, $authnotrequired );
52 is
( $userid, undef, 'checkauth() returns undef for userid if no logged in user (Bug 18275)' );
54 my $db_user_id = C4
::Context
->config('user');
55 my $db_user_pass = C4
::Context
->config('pass');
56 $cgi = Test
::MockObject
->new();
57 $cgi->mock( 'cookie', sub { return; } );
58 $cgi->mock( 'param', sub {
59 my ( $self, $param ) = @_;
60 if ( $param eq 'userid' ) { return $db_user_id; }
61 elsif ( $param eq 'password' ) { return $db_user_pass; }
64 ( $userid, $cookie, $sessionID, $flags ) = C4
::Auth
::checkauth
( $cgi, $authnotrequired );
65 is
( $userid, $db_user_id, 'If DB user is logging in, it should be considered as logged in, i.e. checkauth return the relevant userid' );
66 C4
::Context
->_new_userenv; # For next tests
70 my $hash1 = hash_password
('password');
71 my $hash2 = hash_password
('password');
73 { # tests no_set_userenv parameter
74 my $patron = $builder->build( { source
=> 'Borrower' } );
75 Koha
::Patrons
->find( $patron->{borrowernumber
} )->update_password( $patron->{userid
}, $hash1 );
76 my $library = $builder->build(
82 ok
( checkpw
( $dbh, $patron->{userid
}, 'password', undef, undef, 1 ), 'checkpw returns true' );
83 is
( C4
::Context
->userenv, undef, 'Userenv should be undef as required' );
84 C4
::Context
->_new_userenv('DUMMY SESSION');
85 C4
::Context
->set_userenv(0,0,0,'firstname','surname', $library->{branchcode
}, 'Library 1', 0, '', '');
86 is
( C4
::Context
->userenv->{branch
}, $library->{branchcode
}, 'Userenv gives correct branch' );
87 ok
( checkpw
( $dbh, $patron->{userid
}, 'password', undef, undef, 1 ), 'checkpw returns true' );
88 is
( C4
::Context
->userenv->{branch
}, $library->{branchcode
}, 'Userenv branch is preserved if no_set_userenv is true' );
89 ok
( checkpw
( $dbh, $patron->{userid
}, 'password', undef, undef, 0 ), 'checkpw still returns true' );
90 isnt
( C4
::Context
->userenv->{branch
}, $library->{branchcode
}, 'Userenv branch is overwritten if no_set_userenv is false' );
93 # get_template_and_user tests
95 { # Tests for the language URL parameter
98 my ($query,$authnotrequired,$flagsrequired,$type) = @_;
100 my $userid = 'cobain';
102 # we don't need to bother about permissions for this test
104 superlibrarian
=> 1, acquisition
=> 0,
106 catalogue
=> 1, circulate
=> 0,
107 coursereserves
=> 0, editauthorities
=> 0,
108 editcatalogue
=> 0, management
=> 0,
109 parameters
=> 0, permissions
=> 0,
110 plugins
=> 0, reports
=> 0,
111 reserveforothers
=> 0, serials
=> 0,
112 staffaccess
=> 0, tools
=> 0,
116 my $session_cookie = $query->cookie(
117 -name
=> 'CGISESSID',
122 return ( $userid, $session_cookie, $sessionID, $flags );
125 # Mock checkauth, build the scenario
126 my $auth = new Test
::MockModule
( 'C4::Auth' );
127 $auth->mock( 'checkauth', \
&MockedCheckauth
);
129 # Make sure 'EnableOpacSearchHistory' is set
130 t
::lib
::Mocks
::mock_preference
('EnableOpacSearchHistory',1);
131 # Enable es-ES for the OPAC and staff interfaces
132 t
::lib
::Mocks
::mock_preference
('opaclanguages','en,es-ES');
133 t
::lib
::Mocks
::mock_preference
('language','en,es-ES');
135 # we need a session cookie
136 $ENV{"SERVER_PORT"} = 80;
137 $ENV{"HTTP_COOKIE"} = 'CGISESSID=nirvana';
140 $query->param('language','es-ES');
142 my ( $template, $loggedinuser, $cookies ) = get_template_and_user
(
144 template_name
=> "about.tt",
147 authnotrequired
=> 1,
148 flagsrequired
=> { catalogue
=> 1 },
153 ok
( ( all
{ ref($_) eq 'CGI::Cookie' } @
$cookies ),
154 'BZ9735: the cookies array is flat' );
156 # new query, with non-existent language (we only have en and es-ES)
157 $query->param('language','tomas');
159 ( $template, $loggedinuser, $cookies ) = get_template_and_user
(
161 template_name
=> "about.tt",
164 authnotrequired
=> 1,
165 flagsrequired
=> { catalogue
=> 1 },
170 ok
( ( none
{ $_->name eq 'KohaOpacLanguage' and $_->value eq 'tomas' } @
$cookies ),
171 'BZ9735: invalid language, it is not set');
173 ok
( ( any
{ $_->name eq 'KohaOpacLanguage' and $_->value eq 'en' } @
$cookies ),
174 'BZ9735: invalid language, then default to en');
176 for my $template_name (
178 ../../../../../../../../../../../../../../../etc/passwd
179 test/../../../../../../../../../../../../../../etc/passwd
181 test/does_not_finished_by_tt_t
185 ( $template, $loggedinuser, $cookies ) = get_template_and_user
(
187 template_name
=> $template_name,
190 authnotrequired
=> 1,
191 flagsrequired
=> { catalogue
=> 1 },
195 like
( $@
, qr
(^bad template path
), 'The file $template_name should not be accessible' );
197 ( $template, $loggedinuser, $cookies ) = get_template_and_user
(
199 template_name
=> 'errors/errorpage.tt',
202 authnotrequired
=> 1,
203 flagsrequired
=> { catalogue
=> 1 },
206 my $file_exists = ( -f
$template->{filename
} ) ?
1 : 0;
207 is
( $file_exists, 1, 'The file errors/errorpage.tt should be accessible (contains integers)' );
210 # Check that there is always an OPACBaseURL set.
211 my $input = CGI
->new();
212 my ( $template1, $borrowernumber, $cookie );
213 ( $template1, $borrowernumber, $cookie ) = get_template_and_user
(
215 template_name
=> "opac-detail.tt",
218 authnotrequired
=> 1,
222 ok
( ( any
{ 'OPACBaseURL' eq $_ } keys %{$template1->{VARS
}} ),
223 'OPACBaseURL is in OPAC template' );
226 ( $template2, $borrowernumber, $cookie ) = get_template_and_user
(
228 template_name
=> "catalogue/detail.tt",
231 authnotrequired
=> 1,
235 ok
( ( any
{ 'OPACBaseURL' eq $_ } keys %{$template2->{VARS
}} ),
236 'OPACBaseURL is in Staff template' );
238 ok
(C4
::Auth
::checkpw_hash
('password', $hash1), 'password validates with first hash');
239 ok
(C4
::Auth
::checkpw_hash
('password', $hash2), 'password validates with second hash');