#!/usr/bin/perl # This file is part of Koha. # # Koha is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # Koha is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with Koha; if not, see . use Modern::Perl; use C4::Context; use utf8; use Test::More tests => 1; use Test::MockModule; use C4::Context; use Koha::AuthUtils; use t::lib::Mocks; use t::lib::Selenium; use t::lib::TestBuilder; eval { require Selenium::Remote::Driver; }; skip "Selenium::Remote::Driver is needed for selenium tests.", 1 if $@; my $s = t::lib::Selenium->new; my $driver = $s->driver; my $opac_base_url = $s->opac_base_url; my $base_url = $s->base_url; my $builder = t::lib::TestBuilder->new; our @cleanup; subtest 'Search patrons' => sub { plan tests => 6; my @patrons; my $borrowernotes = q|just 'a" note \123 ❤|; my $borrowernotes_displayed = q|just 'a" note \123 ❤|; my $branchname = q|just 'another" library \123 ❤|; my $firstname = q|fir's"tname \123 ❤|; my $address = q|add'res"s \123 ❤|; my $email = q|abad_email@example\123 ❤.com|; my $patron_category = $builder->build_object( { class => 'Koha::Patron::Categories', value => { category_type => 'A' } } ); my $library = $builder->build_object( { class => 'Koha::Libraries', value => { branchname => $branchname } } ); for my $i ( 1 .. 25 ) { push @patrons, $builder->build_object( { class => 'Koha::Patrons', value => { surname => "test_patron_" . $i++, firstname => $firstname, categorycode => $patron_category->categorycode, branchcode => $library->branchcode, borrowernotes => $borrowernotes, address => $address, email => $email, } } ); } $s->auth; $driver->get( $base_url . "/members/members-home.pl" ); $s->fill_form( { searchmember_filter => 'test_patron' } ); $s->submit_form; my $first_patron = $patrons[0]; my @td = $driver->find_elements('//table[@id="memberresultst"]/tbody/tr/td'); like ($td[2]->get_text, qr[\Q$firstname\E], 'Column "Name" should be the 3rd and contain the firstname correctly filtered' ); like ($td[2]->get_text, qr[\Q$address\E], 'Column "Name" should be the 3rd and contain the address correctly filtered' ); like ($td[2]->get_text, qr[\Q$email\E], 'Column "Name" should be the 3rd and contain the email address correctly filtered' ); is( $td[5]->get_text, $branchname, 'Column "Library" should be the 6th and contain the html tags - they have been html filtered' ); is( $td[9]->get_text, $borrowernotes_displayed, 'Column "Circ note" should be the 10th and not contain the html tags - they have not been html filtered' ); $driver->find_element( '//a[@href="/cgi-bin/koha/members/memberentry.pl?op=modify&destination=circ&borrowernumber=' . $first_patron->borrowernumber . '"]' )->click; is( $driver->get_title, sprintf( "Koha › Patrons › Modify patron %s %s (%s)", $first_patron->firstname, $first_patron->surname, $first_patron->category->description, ) ); push @cleanup, $_ for @patrons; push @cleanup, $library; push @cleanup, $patron_category; }; END { $_->delete for @cleanup; }