Bugzilla – Attachment 159722 Details for
Bug 26297
Add a route to list patron categories
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 26297: Add tests
Bug-26297-Add-tests.patch (text/plain), 2.69 KB, created by
Pedro Amorim
on 2023-12-12 10:58:03 UTC
(
hide
)
Description:
Bug 26297: Add tests
Filename:
MIME Type:
Creator:
Pedro Amorim
Created:
2023-12-12 10:58:03 UTC
Size:
2.69 KB
patch
obsolete
>From fb365e0f8819ac1798a52eba73d84f2ddf57f311 Mon Sep 17 00:00:00 2001 >From: Pedro Amorim <pedro.amorim@ptfs-europe.com> >Date: Tue, 12 Dec 2023 10:57:50 +0000 >Subject: [PATCH] Bug 26297: Add tests > >--- > t/db_dependent/api/v1/patron_categories.t | 75 +++++++++++++++++++++++ > 1 file changed, 75 insertions(+) > create mode 100755 t/db_dependent/api/v1/patron_categories.t > >diff --git a/t/db_dependent/api/v1/patron_categories.t b/t/db_dependent/api/v1/patron_categories.t >new file mode 100755 >index 0000000000..b19839330b >--- /dev/null >+++ b/t/db_dependent/api/v1/patron_categories.t >@@ -0,0 +1,75 @@ >+#!/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 <http://www.gnu.org/licenses>. >+ >+use Modern::Perl; >+ >+use Test::More tests => 1; >+use Test::Mojo; >+ >+use t::lib::TestBuilder; >+use t::lib::Mocks; >+use t::lib::Dates; >+ >+use C4::Auth; >+use Koha::Database; >+ >+use JSON qw(encode_json); >+ >+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 ); >+ >+subtest 'list() tests' => sub { >+ >+ plan tests => 7; >+ >+ $schema->storage->txn_begin; >+ >+ # delete all patrons >+ Koha::Patrons->search->delete; >+ >+ # delete all categories >+ Koha::Patron::Categories->search->delete; >+ >+ $builder->build_object( >+ { >+ class => 'Koha::Patron::Categories', >+ value => { categorycode => 'TEST', description => 'Test' } >+ } >+ ); >+ >+ my $librarian = $builder->build_object( >+ { >+ class => 'Koha::Patrons', >+ value => { flags => 2**2, categorycode => 'TEST' } # borrowers flag = 2 >+ } >+ ); >+ >+ my $password = 'thePassword123'; >+ $librarian->set_password( { password => $password, skip_validation => 1 } ); >+ my $userid = $librarian->userid; >+ >+ $t->get_ok("//$userid:$password@/api/v1/patron_categories")->status_is(200); >+ >+ $t->get_ok("//$userid:$password@/api/v1/patron_categories")->status_is(200)->json_has('/0/name') >+ ->json_is( '/0/name' => 'Test' )->json_hasnt('/1'); >+ >+ $schema->storage->txn_rollback; >+ >+}; >-- >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 26297
:
159714
|
159715
|
159716
|
159717
|
159722
|
159921
|
159922
|
159923
|
159924
|
159955
|
160412
|
161450
|
161451
|
161484
|
161485
|
161486
|
161487
|
161488
|
161496
|
165390
|
165391
|
165392
|
165393
|
165453
|
165655
|
165827