Browse Source

Bug 27330: (QA follow-up) Return 409 instead

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
21.05.x
Tomás Cohen Arazi 3 years ago
committed by Jonathan Druart
parent
commit
fd27224415
  1. 2
      Koha/REST/V1/Clubs/Holds.pm
  2. 6
      api/v1/swagger/paths/clubs.json
  3. 2
      t/db_dependent/api/v1/clubs_holds.t

2
Koha/REST/V1/Clubs/Holds.pm

@ -132,7 +132,7 @@ sub add {
if ( blessed $_ ) {
if ($_->isa('Koha::Exceptions::ClubHold::NoPatrons')) {
return $c->render(
status => 403,
status => 409,
openapi => { error => $_->description }
);
}

6
api/v1/swagger/paths/clubs.json

@ -81,6 +81,12 @@
"$ref": "../definitions.json#/error"
}
},
"409": {
"description": "Hold not allowed",
"schema": {
"$ref": "../definitions.json#/error"
}
},
"500": {
"description": "Internal server error",
"schema": {

2
t/db_dependent/api/v1/clubs_holds.t

@ -86,7 +86,7 @@ subtest 'add() tests' => sub {
$t->post_ok( "//$userid:$password@/api/v1/clubs/"
. $club_without_enrollments->id
. "/holds" => json => $data )
->status_is(403)
->status_is(409)
->json_is( '/error' => "Cannot place a hold on a club without patrons." );
$t->post_ok( "//$userid:$password@/api/v1/clubs/"

Loading…
Cancel
Save