Bugzilla – Attachment 130883 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: Regression tests
Bug-30133-Regression-tests.patch (text/plain), 3.78 KB, created by
Tomás Cohen Arazi (tcohen)
on 2022-02-18 18:59:27 UTC
(
hide
)
Description:
Bug 30133: Regression tests
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2022-02-18 18:59:27 UTC
Size:
3.78 KB
patch
obsolete
>From 1b6e08420e8e8147167470373c51cc824bc8c238 Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Fri, 18 Feb 2022 15:33:42 -0300 >Subject: [PATCH] Bug 30133: Regression tests > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >--- > t/db_dependent/api/v1/items.t | 44 ++++++++++++++++++++++++++++++++++- > 1 file changed, 43 insertions(+), 1 deletion(-) > >diff --git a/t/db_dependent/api/v1/items.t b/t/db_dependent/api/v1/items.t >index 4136c28a08..0d4f4c0ea4 100755 >--- a/t/db_dependent/api/v1/items.t >+++ b/t/db_dependent/api/v1/items.t >@@ -144,7 +144,7 @@ subtest 'get() tests' => sub { > > subtest 'pickup_locations() tests' => sub { > >- plan tests => 15; >+ plan tests => 16; > > $schema->storage->txn_begin; > >@@ -237,6 +237,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/items/" . $item->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/items/" >+ . $item->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/items/" . $item->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.35.1
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