Bug 19893: Support for joined subfields in mappings
[koha.git] / t / db_dependent / Auth.t
blob1610b805ca8b4cba407f92d3fc6966c0d8e85b56
1 #!/usr/bin/perl
3 # This Koha test module is a stub!
4 # Add more tests here!!!
6 use Modern::Perl;
8 use CGI qw ( -utf8 );
10 use Test::MockObject;
11 use Test::MockModule;
12 use List::MoreUtils qw/all any none/;
13 use Test::More tests => 22;
14 use Test::Warn;
15 use t::lib::Mocks;
16 use t::lib::TestBuilder;
18 use C4::Auth qw(checkpw);
19 use C4::Members;
20 use Koha::AuthUtils qw/hash_password/;
21 use Koha::Database;
22 use Koha::Patrons;
24 BEGIN {
25 use_ok('C4::Auth');
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
33 # handling
34 t::lib::Mocks::mock_preference( 'SessionStorage', 'tmp' );
36 $schema->storage->txn_begin;
38 subtest 'checkauth() tests' => sub {
40 plan tests => 3;
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; }
62 else { return; }
63 });
64 ( $userid, $cookie, $sessionID, $flags ) = C4::Auth::checkauth( $cgi, $authnotrequired );
65 is ( $userid, undef, 'If DB user is used, it should not be logged in' );
67 my $is_allowed = C4::Auth::haspermission( $db_user_id, { can_do => 'everything' } );
69 # FIXME This belongs to t/db_dependent/Auth/haspermission.t but we do not want to c/p the pervious mock statements
70 ok( !$is_allowed, 'DB user should not have any permissions');
72 C4::Context->_new_userenv; # For next tests
76 subtest 'track_login_daily tests' => sub {
78 plan tests => 5;
80 my $patron = $builder->build_object({ class => 'Koha::Patrons' });
81 my $userid = $patron->userid;
83 $patron->lastseen( undef );
84 $patron->store();
86 my $cache = Koha::Caches->get_instance();
87 my $cache_key = "track_login_" . $patron->userid;
88 $cache->clear_from_cache($cache_key);
90 t::lib::Mocks::mock_preference( 'TrackLastPatronActivity', '1' );
92 is( $patron->lastseen, undef, 'Patron should have not last seen when newly created' );
94 C4::Auth::track_login_daily( $userid );
95 $patron->_result()->discard_changes();
96 isnt( $patron->lastseen, undef, 'Patron should have last seen set when TrackLastPatronActivity = 1' );
98 sleep(1); # We need to wait a tiny bit to make sure the timestamp will be different
99 my $last_seen = $patron->lastseen;
100 C4::Auth::track_login_daily( $userid );
101 $patron->_result()->discard_changes();
102 is( $patron->lastseen, $last_seen, 'Patron last seen should still be unchanged' );
104 $cache->clear_from_cache($cache_key);
105 C4::Auth::track_login_daily( $userid );
106 $patron->_result()->discard_changes();
107 isnt( $patron->lastseen, $last_seen, 'Patron last seen should be changed if we cleared the cache' );
109 t::lib::Mocks::mock_preference( 'TrackLastPatronActivity', '0' );
110 $patron->lastseen( undef )->store;
111 $cache->clear_from_cache($cache_key);
112 C4::Auth::track_login_daily( $userid );
113 $patron->_result()->discard_changes();
114 is( $patron->lastseen, undef, 'Patron should still have last seen unchanged when TrackLastPatronActivity = 0' );
118 my $hash1 = hash_password('password');
119 my $hash2 = hash_password('password');
121 { # tests no_set_userenv parameter
122 my $patron = $builder->build( { source => 'Borrower' } );
123 Koha::Patrons->find( $patron->{borrowernumber} )->update_password( $patron->{userid}, 'password' );
124 my $library = $builder->build(
126 source => 'Branch',
130 ok( checkpw( $dbh, $patron->{userid}, 'password', undef, undef, 1 ), 'checkpw returns true' );
131 is( C4::Context->userenv, undef, 'Userenv should be undef as required' );
132 C4::Context->_new_userenv('DUMMY SESSION');
133 C4::Context->set_userenv(0,0,0,'firstname','surname', $library->{branchcode}, 'Library 1', 0, '', '');
134 is( C4::Context->userenv->{branch}, $library->{branchcode}, 'Userenv gives correct branch' );
135 ok( checkpw( $dbh, $patron->{userid}, 'password', undef, undef, 1 ), 'checkpw returns true' );
136 is( C4::Context->userenv->{branch}, $library->{branchcode}, 'Userenv branch is preserved if no_set_userenv is true' );
137 ok( checkpw( $dbh, $patron->{userid}, 'password', undef, undef, 0 ), 'checkpw still returns true' );
138 isnt( C4::Context->userenv->{branch}, $library->{branchcode}, 'Userenv branch is overwritten if no_set_userenv is false' );
141 # get_template_and_user tests
143 { # Tests for the language URL parameter
145 sub MockedCheckauth {
146 my ($query,$authnotrequired,$flagsrequired,$type) = @_;
147 # return vars
148 my $userid = 'cobain';
149 my $sessionID = 234;
150 # we don't need to bother about permissions for this test
151 my $flags = {
152 superlibrarian => 1, acquisition => 0,
153 borrowers => 0,
154 catalogue => 1, circulate => 0,
155 coursereserves => 0, editauthorities => 0,
156 editcatalogue => 0,
157 parameters => 0, permissions => 0,
158 plugins => 0, reports => 0,
159 reserveforothers => 0, serials => 0,
160 staffaccess => 0, tools => 0,
161 updatecharges => 0
164 my $session_cookie = $query->cookie(
165 -name => 'CGISESSID',
166 -value => 'nirvana',
167 -HttpOnly => 1
170 return ( $userid, $session_cookie, $sessionID, $flags );
173 # Mock checkauth, build the scenario
174 my $auth = new Test::MockModule( 'C4::Auth' );
175 $auth->mock( 'checkauth', \&MockedCheckauth );
177 # Make sure 'EnableOpacSearchHistory' is set
178 t::lib::Mocks::mock_preference('EnableOpacSearchHistory',1);
179 # Enable es-ES for the OPAC and staff interfaces
180 t::lib::Mocks::mock_preference('opaclanguages','en,es-ES');
181 t::lib::Mocks::mock_preference('language','en,es-ES');
183 # we need a session cookie
184 $ENV{"SERVER_PORT"} = 80;
185 $ENV{"HTTP_COOKIE"} = 'CGISESSID=nirvana';
187 my $query = new CGI;
188 $query->param('language','es-ES');
190 my ( $template, $loggedinuser, $cookies ) = get_template_and_user(
192 template_name => "about.tt",
193 query => $query,
194 type => "opac",
195 authnotrequired => 1,
196 flagsrequired => { catalogue => 1 },
197 debug => 1
201 ok ( ( all { ref($_) eq 'CGI::Cookie' } @$cookies ),
202 'BZ9735: the cookies array is flat' );
204 # new query, with non-existent language (we only have en and es-ES)
205 $query->param('language','tomas');
207 ( $template, $loggedinuser, $cookies ) = get_template_and_user(
209 template_name => "about.tt",
210 query => $query,
211 type => "opac",
212 authnotrequired => 1,
213 flagsrequired => { catalogue => 1 },
214 debug => 1
218 ok( ( none { $_->name eq 'KohaOpacLanguage' and $_->value eq 'tomas' } @$cookies ),
219 'BZ9735: invalid language, it is not set');
221 ok( ( any { $_->name eq 'KohaOpacLanguage' and $_->value eq 'en' } @$cookies ),
222 'BZ9735: invalid language, then default to en');
224 for my $template_name (
226 ../../../../../../../../../../../../../../../etc/passwd
227 test/../../../../../../../../../../../../../../etc/passwd
228 /etc/passwd
229 test/does_not_finished_by_tt_t
232 eval {
233 ( $template, $loggedinuser, $cookies ) = get_template_and_user(
235 template_name => $template_name,
236 query => $query,
237 type => "intranet",
238 authnotrequired => 1,
239 flagsrequired => { catalogue => 1 },
243 like ( $@, qr(^bad template path), "The file $template_name should not be accessible" );
245 ( $template, $loggedinuser, $cookies ) = get_template_and_user(
247 template_name => 'errors/errorpage.tt',
248 query => $query,
249 type => "intranet",
250 authnotrequired => 1,
251 flagsrequired => { catalogue => 1 },
254 my $file_exists = ( -f $template->{filename} ) ? 1 : 0;
255 is ( $file_exists, 1, 'The file errors/errorpage.tt should be accessible (contains integers)' );
258 # Check that there is always an OPACBaseURL set.
259 my $input = CGI->new();
260 my ( $template1, $borrowernumber, $cookie );
261 ( $template1, $borrowernumber, $cookie ) = get_template_and_user(
263 template_name => "opac-detail.tt",
264 type => "opac",
265 query => $input,
266 authnotrequired => 1,
270 ok( ( any { 'OPACBaseURL' eq $_ } keys %{$template1->{VARS}} ),
271 'OPACBaseURL is in OPAC template' );
273 my ( $template2 );
274 ( $template2, $borrowernumber, $cookie ) = get_template_and_user(
276 template_name => "catalogue/detail.tt",
277 type => "intranet",
278 query => $input,
279 authnotrequired => 1,
283 ok( ( any { 'OPACBaseURL' eq $_ } keys %{$template2->{VARS}} ),
284 'OPACBaseURL is in Staff template' );
286 ok(C4::Auth::checkpw_hash('password', $hash1), 'password validates with first hash');
287 ok(C4::Auth::checkpw_hash('password', $hash2), 'password validates with second hash');