Bugzilla – Attachment 95471 Details for
Bug 23838
Add ability to view item renew history
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 17374: (follow-up) Unit tests and remove warns
Bug-17374-follow-up-Unit-tests-and-remove-warns.patch (text/plain), 5.38 KB, created by
Bouzid Fergani
on 2019-11-15 20:57:03 UTC
(
hide
)
Description:
Bug 17374: (follow-up) Unit tests and remove warns
Filename:
MIME Type:
Creator:
Bouzid Fergani
Created:
2019-11-15 20:57:03 UTC
Size:
5.38 KB
patch
obsolete
>From b3ae1f11469ad1e93a549ad87710b88146814fe8 Mon Sep 17 00:00:00 2001 >From: Nick <nick@bywatersolutions.com> >Date: Wed, 30 Oct 2019 14:07:02 +0000 >Subject: [PATCH] Bug 17374: (follow-up) Unit tests and remove warns > >Signed-off-by: Maxime Dufresne <maxime.dufresne@inlibro.com> >Signed-off-by: Bouzid Fergani <bouzid.fergani@inlibro.com> > >https://bugs.koha-community.org/show_bug.cgi?id=23838 >--- > t/db_dependent/Utils/Datatables_Members.t | 22 ++++++++++++++++++++-- > t/db_dependent/selenium/patrons_search.t | 22 +++++++++++++++++++++- > 2 files changed, 41 insertions(+), 3 deletions(-) > >diff --git a/t/db_dependent/Utils/Datatables_Members.t b/t/db_dependent/Utils/Datatables_Members.t >index d378f8f..feca4f8 100644 >--- a/t/db_dependent/Utils/Datatables_Members.t >+++ b/t/db_dependent/Utils/Datatables_Members.t >@@ -17,7 +17,7 @@ > > use Modern::Perl; > >-use Test::More tests => 50; >+use Test::More tests => 51; > > use C4::Context; > use C4::Members; >@@ -57,7 +57,8 @@ my $john_doe = $builder->build({ > surname => 'Doe', > branchcode => $branchcode, > dateofbirth => '1983-03-01', >- userid => 'john.doe' >+ userid => 'john.doe', >+ initials => 'pacman' > }, > }); > >@@ -113,6 +114,8 @@ my %dt_params = ( > iDisplayStart => 0 > ); > >+t::lib::Mocks::mock_preference('DefaultPatronSearchFields', ''); >+ > # Search "John Doe" > my $search_results = C4::Utils::DataTables::Members::search({ > searchmember => "John Doe", >@@ -461,5 +464,20 @@ subtest 'ExtendedPatronAttributes' => sub { > "'Dupont' is contained in 2 surnames and a patron attribute. Patron attribute one should not be displayed if searching in specific fields (Bug 18094)"); > }; > >+subtest 'Search by any borrowers field (bug 17374)' => sub { >+ plan tests => 2; >+ >+ my $search_results = C4::Utils::DataTables::Members::search({ >+ searchmember => "pacman", >+ searchfieldstype => 'initials', >+ searchtype => 'contain', >+ branchcode => $branchcode, >+ dt_params => \%dt_params >+ }); >+ is( $search_results->{ iTotalDisplayRecords }, 1, "We find only 1 patron when searching for initials 'pacman'" ); >+ >+ is( $search_results->{ patrons }[0]->{ cardnumber }, $john_doe->{cardnumber}, "We find the correct patron when sesrching by initials" ) >+}; >+ > # End > $schema->storage->txn_rollback; >diff --git a/t/db_dependent/selenium/patrons_search.t b/t/db_dependent/selenium/patrons_search.t >index 1d8cd98..c0ec357 100644 >--- a/t/db_dependent/selenium/patrons_search.t >+++ b/t/db_dependent/selenium/patrons_search.t >@@ -40,7 +40,7 @@ my $builder = t::lib::TestBuilder->new; > > our @cleanup; > subtest 'Search patrons' => sub { >- plan tests => 6; >+ plan tests => 12; > > my @patrons; > my $borrowernotes = q|<strong>just 'a" note</strong> \123 â¤|; >@@ -58,6 +58,7 @@ subtest 'Search patrons' => sub { > my $library = $builder->build_object( > { class => 'Koha::Libraries', value => { branchname => $branchname } } > ); >+ my $default_patron_search_fields = C4::Context->preference('DefaultPatronSearchFields'); > for my $i ( 1 .. 25 ) { > push @patrons, > $builder->build_object( >@@ -77,7 +78,25 @@ subtest 'Search patrons' => sub { > } > > $s->auth; >+ C4::Context->set_preference('DefaultPatronSearchFields',""); > $driver->get( $base_url . "/members/members-home.pl" ); >+ my @adv_options = $driver->find_elements('//select[@id="searchfieldstype"]/option'); >+ my @filter_options = $driver->find_elements('//select[@id="searchfieldstype_filter"]/option'); >+ is( scalar @adv_options, 11, 'All standard fields are searchable if DefaultPatronSearchFields not set'); >+ is( scalar @filter_options, 11, 'All standard fields are searchable by filter if DefaultPatronSearchFields not set'); >+ C4::Context->set_preference('DefaultPatronSearchFields',"initials"); >+ $driver->get( $base_url . "/members/members-home.pl" ); >+ @adv_options = $driver->find_elements('//select[@id="searchfieldstype"]/option'); >+ @filter_options = $driver->find_elements('//select[@id="searchfieldstype_filter"]/option'); >+ is( scalar @adv_options, 12, 'New option added when DefaultPatronSearchFields is populated with a field'); >+ is( scalar @filter_options, 12, 'New filter option added when DefaultPatronSearchFields is populated with a field'); >+ C4::Context->set_preference('DefaultPatronSearchFields',"initials,horses"); >+ $driver->get( $base_url . "/members/members-home.pl" ); >+ @adv_options = $driver->find_elements('//select[@id="searchfieldstype"]/option'); >+ @filter_options = $driver->find_elements('//select[@id="searchfieldstype_filter"]/option'); >+ is( scalar @adv_options, 12, 'Invalid option not added when DefaultPatronSearchFields is populated with an invalid field'); >+ is( scalar @filter_options, 12, 'Invalid filter option not added when DefaultPatronSearchFields is populated with an invalid field'); >+ C4::Context->set_preference('DefaultPatronSearchFields',""); > $s->fill_form( { searchmember_filter => 'test_patron' } ); > $s->submit_form; > my $first_patron = $patrons[0]; >@@ -114,6 +133,7 @@ subtest 'Search patrons' => sub { > push @cleanup, $_ for @patrons; > push @cleanup, $library; > push @cleanup, $patron_category; >+ C4::Context->set_preference('DefaultPatronSearchFields',$default_patron_search_fields); > }; > > END { >-- >2.7.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 23838
:
94394
|
94395
|
94635
|
94636
|
94663
|
94664
|
94676
|
94681
|
94682
|
94683
|
94684
|
94685
|
95466
|
95467
|
95468
|
95469
|
95470
|
95471
|
95472
|
96186
|
96187
|
96188
|
96189
|
96190
|
131892
|
131914
|
131915
|
133945
|
133946
|
133966
|
133967
|
133968
|
134890
|
134891
|
134892
|
137167
|
137168
|
137169
|
138007
|
138019
|
138020
|
138021
|
138022
|
138039
|
138040
|
138041
|
138042
|
138043