Bugzilla – Attachment 130893 Details for
Bug 30133
Pagination broken on pickup_locations routes when AllowHoldPolicyOverride=1
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 30133: Fix pagination in /biblios/:bibio_id/pickup_locations
Bug-30133-Fix-pagination-in-bibliosbibioidpickuplo.patch (text/plain), 5.88 KB, created by
Andrew Fuerste-Henry
on 2022-02-18 19:21:02 UTC
(
hide
)
Description:
Bug 30133: Fix pagination in /biblios/:bibio_id/pickup_locations
Filename:
MIME Type:
Creator:
Andrew Fuerste-Henry
Created:
2022-02-18 19:21:02 UTC
Size:
5.88 KB
patch
obsolete
>From 1b18aa6628eea24139d9fedc843c0bd9c52d0c15 Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Fri, 18 Feb 2022 16:07:02 -0300 >Subject: [PATCH] Bug 30133: Fix pagination in > /biblios/:bibio_id/pickup_locations > >This patch does the same thing we did for items on the previous patch, >but for biblios. The tests are almost the same as well. > >To test: >1. Apply this patch >2. Run: > $ kshell > k$ prove t/db_dependent/api/v1/biblios.t >=> SUCCESS: Tests pass! >3. Sign off :-D > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> > >Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com> > >https://bugs.koha-community.org/show_bug.cgi?id=30113 >--- > Koha/REST/V1/Biblios.pm | 18 ++++++-------- > t/db_dependent/api/v1/biblios.t | 44 ++++++++++++++++++++++++++++++++- > 2 files changed, 50 insertions(+), 12 deletions(-) > >diff --git a/Koha/REST/V1/Biblios.pm b/Koha/REST/V1/Biblios.pm >index 268969af85..c74f5180c6 100644 >--- a/Koha/REST/V1/Biblios.pm >+++ b/Koha/REST/V1/Biblios.pm >@@ -337,11 +337,9 @@ sub pickup_locations { > > return try { > >- my $ps_set = $biblio->pickup_locations( { patron => $patron } ); >+ my $pl_set = $biblio->pickup_locations( { patron => $patron } ); > >- my $pickup_locations = $c->objects->search( $ps_set ); > my @response = (); >- > if ( C4::Context->preference('AllowHoldPolicyOverride') ) { > > my $libraries_rs = Koha::Libraries->search( { pickup_location => 1 } ); >@@ -350,21 +348,19 @@ sub pickup_locations { > @response = map { > my $library = $_; > $library->{needs_override} = ( >- any { $_->{library_id} eq $library->{library_id} } >- @{$pickup_locations} >+ any { $_->branchcode eq $library->{library_id} } >+ @{$pl_set->as_list} > ) > ? Mojo::JSON->false > : Mojo::JSON->true; > $library; > } @{$libraries}; >- >- return $c->render( >- status => 200, >- openapi => \@response >- ); > } >+ else { > >- @response = map { $_->{needs_override} = Mojo::JSON->false; $_; } @{$pickup_locations}; >+ my $pickup_locations = $c->objects->search($pl_set); >+ @response = map { $_->{needs_override} = Mojo::JSON->false; $_; } @{$pickup_locations}; >+ } > > return $c->render( > status => 200, >diff --git a/t/db_dependent/api/v1/biblios.t b/t/db_dependent/api/v1/biblios.t >index 32f7137555..5c836c39d8 100755 >--- a/t/db_dependent/api/v1/biblios.t >+++ b/t/db_dependent/api/v1/biblios.t >@@ -383,7 +383,7 @@ subtest 'get_public() tests' => sub { > > subtest 'pickup_locations() tests' => sub { > >- plan tests => 15; >+ plan tests => 16; > > $schema->storage->txn_begin; > >@@ -476,6 +476,48 @@ subtest 'pickup_locations() tests' => sub { > . "patron_id=" . $patron->id . "&_order_by=marc_org_code" ) > ->json_is( [ $library_1_api, $library_2_api, $library_3_api, $library_5_api ] ); > >+ subtest 'Pagination and AllowHoldPolicyOverride tests' => sub { >+ >+ plan tests => 27; >+ >+ t::lib::Mocks::mock_preference( 'AllowHoldPolicyOverride', 1 ); >+ >+ $t->get_ok( "//$userid:$password@/api/v1/biblios/" . $biblio->id . "/pickup_locations?" . "patron_id=" . $patron->id . "&_order_by=marc_org_code" . "&_per_page=1" ) >+ ->json_is( [$library_1_api] ) >+ ->header_is( 'X-Total-Count', '4', '4 is the count for libraries with pickup_location=1' ) >+ ->header_is( 'X-Base-Total-Count', '4', '4 is the count for libraries with pickup_location=1' ) >+ ->header_unlike( 'Link', qr|rel="prev"| ) >+ ->header_like( 'Link', qr#(_per_page=1.*\&_page=2.*|_page=2.*\&_per_page=1.*)>\; rel="next"# ) >+ ->header_like( 'Link', qr#(_per_page=1.*\&_page=1.*|_page=1.*\&_per_page=1).*>\; rel="first"# ) >+ ->header_like( 'Link', qr#(_per_page=1.*\&_page=4.*|_page=4.*\&_per_page=1).*>\; rel="last"# ); >+ >+ $t->get_ok( "//$userid:$password@/api/v1/biblios/" >+ . $biblio->id >+ . "/pickup_locations?" >+ . "patron_id=" >+ . $patron->id >+ . "&_order_by=marc_org_code" >+ . "&_per_page=1&_page=3" ) # force the needs_override=1 check >+ ->json_is( [$library_3_api] ) >+ ->header_is( 'X-Total-Count', '4', '4 is the count for libraries with pickup_location=1' ) >+ ->header_is( 'X-Base-Total-Count', '4', '4 is the count for libraries with pickup_location=1' ) >+ ->header_like( 'Link', qr#(_per_page=1.*\&_page=2.*|_page=2.*\&_per_page=1.*)>\; rel="prev"# ) >+ ->header_like( 'Link', qr#(_per_page=1.*\&_page=4.*|_page=4.*\&_per_page=1.*)>\; rel="next"# ) >+ ->header_like( 'Link', qr#(_per_page=1.*\&_page=1.*|_page=1.*\&_per_page=1).*>\; rel="first"# ) >+ ->header_like( 'Link', qr#(_per_page=1.*\&_page=4.*|_page=4.*\&_per_page=1).*>\; rel="last"# ); >+ >+ t::lib::Mocks::mock_preference( 'AllowHoldPolicyOverride', 0 ); >+ >+ $t->get_ok( "//$userid:$password@/api/v1/biblios/" . $biblio->id . "/pickup_locations?" . "patron_id=" . $patron->id . "&_order_by=marc_org_code" . "&_per_page=1" ) >+ ->json_is( [$library_1_api] ) >+ ->header_is( 'X-Total-Count', '2' ) >+ ->header_is( 'X-Base-Total-Count', '2' ) >+ ->header_unlike( 'Link', qr|rel="prev"| ) >+ ->header_like( 'Link', qr#(_per_page=1.*\&_page=2.*|_page=2.*\&_per_page=1.*)>\; rel="next"# ) >+ ->header_like( 'Link', qr#(_per_page=1.*\&_page=1.*|_page=1.*\&_per_page=1).*>\; rel="first"# ) >+ ->header_like( 'Link', qr#(_per_page=1.*\&_page=2.*|_page=2.*\&_per_page=1).*>\; rel="last"# ); >+ }; >+ > my $deleted_patron = $builder->build_object({ class => 'Koha::Patrons' }); > my $deleted_patron_id = $deleted_patron->id; > $deleted_patron->delete; >-- >2.30.2
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 30133
:
130853
|
130854
|
130855
|
130883
|
130884
|
130885
|
130886
|
130887
|
130888
|
130889
|
130890
|
130891
|
130892
|
130893
|
130953
|
130954
|
130955
|
130956
|
130957