Bug 13264: Refactor search utf8 tests and add some more
[koha.git] / t / db_dependent / www / auth_values_input_www.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 utf8;
21 use Test::More tests => 15;
22 use Test::WWW::Mechanize;
23 use XML::Simple;
24 use JSON;
25 use File::Basename;
26 use File::Spec;
27 use POSIX;
28 use URI::Escape;
29 use Encode;
30
31 my $testdir = File::Spec->rel2abs( dirname(__FILE__) );
32
33 my $koha_conf = $ENV{KOHA_CONF};
34 my $xml       = XMLin($koha_conf);
35
36 eval{
37     use C4::Context;
38 };
39 if ($@) {
40     plan skip_all => "Tests skip. You must have a working Context\n";
41 }
42
43 my $user     = $ENV{KOHA_USER} || $xml->{config}->{user};
44 my $password = $ENV{KOHA_PASS} || $xml->{config}->{pass};
45 my $intranet = $ENV{KOHA_INTRANET_URL};
46
47 if (not defined $intranet) {
48     plan skip_all => "Tests skip. You must set env. variable KOHA_INTRANET_URL to do tests\n";
49 }
50
51
52 $intranet =~ s#/$##;
53
54 my $agent = Test::WWW::Mechanize->new( autocheck => 1 );
55 my $jsonresponse;
56
57 # -------------------------------------------------- LOAD RECORD
58
59 my $category = '学協会μμ';
60 $agent->get_ok( "$intranet/cgi-bin/koha/mainpage.pl", 'connect to intranet' );
61 $agent->form_name('loginform');
62 $agent->field( 'password', $password );
63 $agent->field( 'userid',   $user );
64 $agent->field( 'branch',   '' );
65 $agent->click_ok( '', 'login to staff client' );
66 $agent->get_ok( "$intranet/cgi-bin/koha/mainpage.pl", 'load main page' );
67
68 $agent->get_ok( "$intranet/cgi-bin/koha/admin/authorised_values.pl", 'Connect to Authorized values page' );
69 $agent->get_ok( "$intranet/cgi-bin/koha/admin/authorised_values.pl?op=add_form", 'Open to create a new category' );
70 $agent->form_name('Aform');
71 $agent->field('authorised_value', 'επιμεq');
72 $agent->field('lib_opac', 'autdesc2');
73 $agent->field('lib', 'desc1');
74 $agent->field('category', $category);
75 $agent->field('branches', '');
76 $agent->click_ok( '', "Create new auth category and value" );
77
78 my $expected_base = q|authorised_values.pl\?searchfield=| . uri_escape_utf8( $category );
79 $agent->base_like(qr|$expected_base|, "check base");
80 my $add_form_link_exists = 0;
81 my $delete_form_link_exists = 0;
82 for my $link ( $agent->links() ) {
83     if ( $link->url =~ m|authorised_values.pl\?op=add_form&category=$category| ) {
84         $add_form_link_exists = 1;
85     }elsif( $link->url =~ m|authorised_values.pl\?op=delete_confirm&searchfield=$category| ) {
86         $delete_form_link_exists = 1;
87     }
88 }
89 is( $add_form_link_exists, 1, );
90 is( $delete_form_link_exists, 1, );
91
92 $agent->get_ok( "$intranet/cgi-bin/koha/admin/authorised_values.pl", 'Return to Authorized values page' );
93 $agent->get_ok( "$intranet/cgi-bin/koha/admin/authorised_values.pl?searchfield=学協会μμ&offset=0", 'Search the values inserted' );
94 my $text = $agent->text() ;
95 #Tests on UTF-8
96 ok ( ( length(Encode::encode('UTF-8', $text)) != length($text) ) , 'UTF-8 are multi-byte. Good') ;
97 ok ($text =~  m/学協会μμ/, 'UTF-8 (Asia) chars are correctly present. Good');
98 ok ($text =~  m/επιμεq/, 'UTF-8 (Greek) chars are correctly present. Good');
99 my @links = $agent->links;
100 my $id_to_del ='';
101 foreach my $dato (@links){
102     my $link = $dato->url;
103     if ($link =~  m/op=delete_confirm\&searchfield=学協会μμ/){
104         $link =~  m/(.*&id=?)(\d{1,})(&.*)/;
105         $id_to_del = $2;
106         last;
107     };
108 }
109 if ($id_to_del) {
110     $agent->get_ok( "$intranet/cgi-bin/koha/admin/authorised_values.pl?op=delete_confirmed&searchfield=学協会μμ&id=$id_to_del", 'UTF_8 auth. value deleted' );
111 }else{
112     ok($id_to_del ne undef, "error, link to delete nor working");
113 }
114
115 1;