Bug 14097 : Changing AddReserve prototype call
[koha.git] / t / Languages.t
1 #!/usr/bin/perl
2
3 # Copyright 2013 Equinox Software, Inc.
4 # Copyright 2014 BibLibre
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 3 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21 use Test::More tests => 4;
22 use Test::MockModule;
23 use CGI qw ( -utf8 );
24
25 BEGIN {
26     use_ok('C4::Languages');
27 }
28
29 my @languages = (); # stores the list of active languages
30                     # for the syspref mock
31 my $return_undef = 0;
32
33 my $module_context = new Test::MockModule('C4::Context');
34
35 $module_context->mock(
36     preference => sub {
37         my ($self, $pref) = @_;
38         if ($return_undef) {
39             return undef;
40         } elsif ($pref =~ /language/) {
41             return join ',', @languages;
42         } else {
43             return 'XXX';
44         }
45   },
46 );
47
48 delete $ENV{HTTP_ACCEPT_LANGUAGE};
49
50 my $query = CGI->new();
51 @languages = ('de-DE', 'fr-FR');
52 is(C4::Languages::getlanguage($query), 'de-DE', 'default to first language specified in syspref (bug 10560)');
53
54 @languages = ();
55 is(C4::Languages::getlanguage($query), 'en', 'default to English if no language specified in syspref (bug 10560)');
56
57 $return_undef = 1;
58 is(C4::Languages::getlanguage($query), 'en', 'default to English if no database');