Bug 33335: (QA follow-up) Polishing and comments
[koha.git] / t / Context.t
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
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.
9 #
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.
14 #
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>.
17
18 use Modern::Perl;
19
20 use DBI;
21 use Test::More tests => 34;
22 use Test::MockModule;
23 use Test::Warn;
24 use YAML::XS;
25
26 use t::lib::Mocks;
27
28 BEGIN {
29     use_ok('C4::Context');
30 }
31
32 subtest 'yaml_preference() tests' => sub {
33
34     plan tests => 3;
35
36     my $data = [ 'uno', 'dos', { 'tres' => 'cuatro' } ];
37
38     my $context = Test::MockModule->new( 'C4::Context' );
39     $context->mock( 'preference', YAML::XS::Dump($data) );
40
41     my $pref = C4::Context->new->yaml_preference( 'nothing' );
42
43     is_deeply( $pref, $data, 'yaml_preference returns the right structure' );
44
45     $context->mock( 'preference', qq{- uno: dsa\n\t- dos: asd} );
46     warning_like
47         { $pref = C4::Context->new->yaml_preference('nothing') }
48         qr/^Unable to parse nothing syspref/,
49         'Invalid YAML on syspref throws a warning';
50     is( $pref, undef, 'Invalid YAML on syspref makes it return undef' );
51
52     $context->unmock( 'preference' );
53 };
54
55 subtest 'needs_install() tests' => sub {
56
57     plan tests => 2;
58
59     t::lib::Mocks::mock_preference( 'Version', '3.0.0' );
60     is( C4::Context->needs_install, 0, 'Preference is defined, no need to install' );
61
62     t::lib::Mocks::mock_preference( 'Version', undef ); # the behaviour when ->preference fails to fetch
63     is( C4::Context->needs_install, 1, "->preference(Version) is not defined, need to install" );
64 };
65
66 subtest 'csv_delimiter() tests' => sub {
67
68     plan tests => 4;
69
70     t::lib::Mocks::mock_preference( 'CSVDelimiter', undef );
71     is( C4::Context->csv_delimiter, ',', "csv_delimiter returns comma if system preference CSVDelimiter is undefined" );
72
73     t::lib::Mocks::mock_preference( 'CSVDelimiter', '' );
74     is( C4::Context->csv_delimiter, ',', "csv_delimiter returns comma if system preference CSVDelimiter is empty string" );
75
76     t::lib::Mocks::mock_preference( 'CSVDelimiter', ';' );
77     is( C4::Context->csv_delimiter, ';', "csv_delimiter returns semicolon if system preference CSVDelimiter is semicolon" );
78
79     t::lib::Mocks::mock_preference( 'CSVDelimiter', 'tabulation' );
80     is( C4::Context->csv_delimiter, "\t", "csv_delimiter returns '\t' if system preference CSVDelimiter is tabulation" );
81 };
82
83 subtest 'default_catalog_sort_by() tests' => sub {
84
85     plan tests => 5;
86
87     my $context = Test::MockModule->new( 'C4::Context' );
88
89     $context->mock( 'interface', 'intranet' );
90
91     t::lib::Mocks::mock_preference( 'defaultSortField', undef );
92     is( C4::Context->default_catalog_sort_by, undef, "default_catalog_sort_by() returns undef if system preference defaultSortField is undefined" );
93
94     t::lib::Mocks::mock_preference( 'defaultSortField', 'title' );
95     t::lib::Mocks::mock_preference( 'defaultSortOrder', 'az' );
96     is( C4::Context->default_catalog_sort_by, 'title_az', "default_catalog_sort_by() returns concatenation of system preferences defaultSortField and defaultSortOrder" );
97
98     t::lib::Mocks::mock_preference( 'defaultSortField', 'relevance' );
99     is( C4::Context->default_catalog_sort_by, 'relevance', "default_catalog_sort_by() returns only system preference defaultSortField if it is relevance" );
100
101     $context->mock( 'interface', 'opac' );
102
103     t::lib::Mocks::mock_preference( 'OPACdefaultSortField', 'pubdate' );
104     t::lib::Mocks::mock_preference( 'OPACdefaultSortOrder', 'desc' );
105     is( C4::Context->default_catalog_sort_by, 'pubdate_desc', "default_catalog_sort_by() returns concatenation of system preferences OPACdefaultSortField and OPACdefaultSortOrder" );
106
107     t::lib::Mocks::mock_preference( 'OPACdefaultSortField', 'relevance' );
108     is( C4::Context->default_catalog_sort_by, 'relevance', "default_catalog_sort_by() returns only system preference OPACdefaultSortField if it is relevance" );
109
110     $context->unmock( 'interface' );
111 };
112
113 my $context = Test::MockModule->new('C4::Context');
114 my $userenv = {};
115
116 $context->mock('userenv', sub {
117     return $userenv;
118 });
119
120 local $SIG{__WARN__} = sub { die $_[0] };
121
122 eval { C4::Context::IsSuperLibrarian(); };
123 like ( $@, qr/not defined/, "IsSuperLibrarian logs an error if no userenv is defined" );
124
125 $userenv->{flags} = 42;
126 my $is_super_librarian = eval{ C4::Context::IsSuperLibrarian() };
127 is ( $@, q||, "IsSuperLibrarian does not log an error if userenv is defined" );
128 is ( $is_super_librarian, 0, "With flag=42, it is not a super librarian" );
129
130 $userenv->{flags} = 421;
131 $is_super_librarian = eval{ C4::Context::IsSuperLibrarian() };
132 is ( $@, q||, "IsSuperLibrarian does not log an error if userenv is defined" );
133 is ( $is_super_librarian, 1, "With flag=1, it is a super librarian" );
134
135 $userenv->{flags} = undef;
136 $is_super_librarian = eval{ C4::Context::IsSuperLibrarian() };
137 is ( $@, q||, "IsSuperLibrarian does not log an error if \$userenv->{flags} is undefined" );
138 is ( $is_super_librarian, 0, "With flag=undef, it is not a super librarian" );
139
140 $userenv->{flags} = 0;
141 $is_super_librarian = eval{ C4::Context::IsSuperLibrarian() };
142 is ( $@, q||, "IsSuperLibrarian does not log an error if \$userenv->{flags} is equal to 0" );
143 is ( $is_super_librarian, 0, "With flag=0, it is not a super librarian" );
144
145 # C4::Context::interface
146 my $lastwarn;
147 local $SIG{__WARN__} = sub { $lastwarn = $_[0] };
148 is(C4::Context->interface, 'opac','interface defaults to opac');
149 is(C4::Context->interface('foobar'), 'opac', 'interface foobar');
150 like($lastwarn, qr/invalid interface : 'foobar'/, 'interface warn on foobar');
151 is(C4::Context->interface, 'opac', 'interface still opac');
152 is(C4::Context->interface('intranet'), 'intranet', 'interface intranet');
153 is(C4::Context->interface, 'intranet', 'interface still intranet');
154 is(C4::Context->interface('foobar'), 'intranet', 'interface foobar again');
155 is(C4::Context->interface, 'intranet', 'interface still intranet');
156 is(C4::Context->interface('OPAC'), 'opac', 'interface OPAC uc');
157 is(C4::Context->interface, 'opac', 'interface still opac');
158 #Bug 14751
159 is( C4::Context->interface( 'SiP' ), 'sip', 'interface SiP' );
160 is( C4::Context->interface( 'COMMANDLINE' ), 'commandline', 'interface commandline uc' );
161 is( C4::Context->interface( 'CRON' ), 'cron', 'interface cron uc' );
162
163 {
164     local %ENV = %ENV;
165     delete $ENV{HTTPS};
166     is( C4::Context->https_enabled, 0, "Undefined HTTPS env returns 0");
167     $ENV{HTTPS} = '1';
168     is( C4::Context->https_enabled, 0, "Invalid 1 HTTPS env returns 0");
169     $ENV{HTTPS} = 'off';
170     is( C4::Context->https_enabled, 0, "off HTTPS env returns 0");
171     $ENV{HTTPS} = 'OFF';
172     is( C4::Context->https_enabled, 0, "OFF HTTPS env returns 0");
173     $ENV{HTTPS} = 'on';
174     is( C4::Context->https_enabled, 1, "on HTTPS env returns 1");
175     $ENV{HTTPS} = 'ON';
176     is( C4::Context->https_enabled, 1, "ON HTTPS env returns 1");
177 }
178
179 subtest 'psgi_env and is_internal_PSGI_request' => sub {
180
181     plan tests => 11;
182
183     local %ENV = ( no_plack => 1 );
184     ok( !C4::Context->psgi_env, 'no_plack' );
185     $ENV{plackishere} = 1;
186     ok( !C4::Context->psgi_env, 'plackishere is wrong' );
187     $ENV{'plack.ishere'} = 1;
188     ok( C4::Context->psgi_env, 'plack.ishere' );
189     delete $ENV{'plack.ishere'};
190     ok( !C4::Context->psgi_env, 'plack.ishere was here' );
191     $ENV{'plack_env'} = 1;
192     ok( C4::Context->psgi_env, 'plack_env' );
193     delete $ENV{'plack_env'};
194     $ENV{'psgi_whatever'} = 1;
195     ok( !C4::Context->psgi_env, 'psgi_whatever' );
196     delete $ENV{'psgi_whatever'};
197     $ENV{'psgi.whatever'} = 1;
198     ok( C4::Context->psgi_env, 'psgi.whatever' );
199     delete $ENV{'psgi.whatever'};
200     $ENV{'PSGI.UPPERCASE'} = 1;
201     ok( C4::Context->psgi_env, 'PSGI uppercase' );
202
203     $ENV{'REQUEST_URI'} = '/intranet/whatever';
204     ok( !C4::Context->is_internal_PSGI_request, 'intranet not considered internal in regex' );
205     $ENV{'REQUEST_URI'} = '/api/v1/tralala';
206     ok( C4::Context->is_internal_PSGI_request, 'api considered internal in regex' );
207     delete $ENV{'PSGI.UPPERCASE'};
208     ok( !C4::Context->is_internal_PSGI_request, 'api but no longer PSGI' );
209 };