]> git.koha-community.org Git - koha.git/commit
Bug 35129: Return 400 if _per_page=0 passed
authorTomas Cohen Arazi <tomascohen@theke.io>
Mon, 18 Mar 2024 15:49:20 +0000 (12:49 -0300)
committerKatrin Fischer <katrin.fischer@bsz-bw.de>
Thu, 4 Apr 2024 13:24:34 +0000 (15:24 +0200)
commit308bb0830cfe69116e442bad4cd206dd402244be
treefb880117d45b07a087d29c0eea47cec4773a588c
parent9a4e3bd49f1a978fbe5d3dc88e36dc5de0fb81f9
Bug 35129: Return 400 if _per_page=0 passed

This patch adds a safe guard for when consumers pass _per_page=0 to
endpoints. This condition is checked for on a centralized place and
avoid reaching the controller in such scenarios that would provoke a
division by zero exception.

To test:
1. Apply the regression tests patch
2. Run:
   $ ktd --shell
  k$ prove t/db_dependent/api/v1/pagination.t
=> FAIL: We expect a 400, but get a 500 instead
3. Apply this patch
4. Repeat 2
=> SUCCESS: Tests pass! No more explosions for this!
5. Sign off :-D

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Laura Escamilla <laura.escamilla@bywatersolutions.com>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
Koha/REST/V1/Auth.pm