@@ -, +, @@ --- t/db_dependent/api/v1/patrons_holds.t | 82 +++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 t/db_dependent/api/v1/patrons_holds.t --- a/t/db_dependent/api/v1/patrons_holds.t +++ a/t/db_dependent/api/v1/patrons_holds.t @@ -0,0 +1,82 @@ +#!/usr/bin/env perl + +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# Koha is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . + +use Modern::Perl; + +use Test::More tests => 1; +use Test::Mojo; +use Test::Warn; + +use t::lib::TestBuilder; +use t::lib::Mocks; + +use Koha::Database; +use Koha::Hold; + +my $schema = Koha::Database->new->schema; +my $builder = t::lib::TestBuilder->new; + +my $t = Test::Mojo->new('Koha::REST::V1'); +t::lib::Mocks::mock_preference( 'RESTBasicAuth', 1 ); +t::lib::Mocks::mock_preference( 'RESTPublicAPI', 1 ); + +subtest 'list() tests' => sub { + plan tests => 15; + + $schema->storage->txn_begin; + + my $patron = $builder->build_object({ class => 'Koha::Patrons' }); + my $password = 'thePassword123'; + $patron->set_password({ password => $password, skip_validation => 1 }); + my $userid = $patron->userid; + my $patron_id = $patron->borrowernumber; + + $t->get_ok("//$userid:$password@/api/v1/public/patrons/$patron_id/holds") + ->status_is( 200 ) + ->json_is( [] ); + + my $biblio1 = $builder->build_sample_biblio; + + my $hold = Koha::Hold->new( + { + borrowernumber => $patron->borrowernumber, + biblionumber => $biblio1->biblionumber, + } + )->store; + + $t->get_ok("//$userid:$password@/api/v1/public/patrons/$patron_id/holds") + ->status_is( 200 ) + ->json_is( '/0/hold_id', $hold->reserve_id ); + + $t->get_ok("//$userid:$password@/api/v1/public/patrons/$patron_id/holds?old=true") + ->status_is( 200 ) + ->json_is( [] ); + + $hold->cancel(); + + + + $t->get_ok("//$userid:$password@/api/v1/public/patrons/$patron_id/holds?old=true") + ->status_is( 200 ) + ->json_is( '/0/hold_id', $hold->reserve_id ); + + $t->get_ok("//$userid:$password@/api/v1/public/patrons/$patron_id/holds") + ->status_is( 200 ) + ->json_is( [] ); + + $schema->storage->txn_rollback; +}; --