Bugzilla – Attachment 158578 Details for
Bug 35197
Expose additional_field definitions through REST API
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 35197: Add tests
Bug-35197-Add-tests.patch (text/plain), 4.41 KB, created by
Lucas Gass (lukeg)
on 2023-11-06 23:18:50 UTC
(
hide
)
Description:
Bug 35197: Add tests
Filename:
MIME Type:
Creator:
Lucas Gass (lukeg)
Created:
2023-11-06 23:18:50 UTC
Size:
4.41 KB
patch
obsolete
>From cf1288220fe3f3f5f1db4ea4ab2cc7bdddb76644 Mon Sep 17 00:00:00 2001 >From: Pedro Amorim <pedro.amorim@ptfs-europe.com> >Date: Mon, 6 Nov 2023 11:33:36 +0000 >Subject: [PATCH] Bug 35197: Add tests > >prove t/db_dependent/api/v1/additional_fields.t > >Signed-off-by: Lucas Gass <lucas@bywatersolutions.com> >--- > t/db_dependent/api/v1/additional_fields.t | 113 ++++++++++++++++++++++ > 1 file changed, 113 insertions(+) > create mode 100755 t/db_dependent/api/v1/additional_fields.t > >diff --git a/t/db_dependent/api/v1/additional_fields.t b/t/db_dependent/api/v1/additional_fields.t >new file mode 100755 >index 00000000000..6c0a9fdb5a2 >--- /dev/null >+++ b/t/db_dependent/api/v1/additional_fields.t >@@ -0,0 +1,113 @@ >+#!/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 Koha::AdditionalFields; >+use Koha::Database; >+ >+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 => 17; >+ >+ $schema->storage->txn_begin; >+ >+ Koha::AdditionalFields->search->delete; >+ >+ my $librarian = $builder->build_object( >+ { >+ class => 'Koha::Patrons', >+ value => { flags => 2**13 } >+ } >+ ); >+ my $password = 'thePassword123'; >+ $librarian->set_password( { password => $password, skip_validation => 1 } ); >+ my $userid = $librarian->userid; >+ >+ my $patron = $builder->build_object( >+ { >+ class => 'Koha::Patrons', >+ value => { flags => 0 } >+ } >+ ); >+ >+ $patron->set_password( { password => $password, skip_validation => 1 } ); >+ my $unauth_userid = $patron->userid; >+ >+ ## Authorized user tests >+ # No additional fields, so empty array should be returned >+ $t->get_ok("//$userid:$password@/api/v1/additional_fields")->status_is(200)->json_is( [] ); >+ >+ my $additional_field = $builder->build_object( >+ { >+ class => 'Koha::AdditionalFields', >+ value => { tablename => 'aqinvoices', name => 'af_name' }, >+ } >+ ); >+ >+ # One additional_field created, should get returned >+ $t->get_ok("//$userid:$password@/api/v1/additional_fields")->status_is(200) >+ ->json_is( [ $additional_field->to_api ] ); >+ >+ my $another_additional_field = $builder->build_object( >+ { >+ class => 'Koha::AdditionalFields', >+ value => { tablename => 'aqinvoices', name => 'second_af_name' }, >+ } >+ ); >+ >+ my $additional_field_different_tablename = $builder->build_object( >+ { >+ class => 'Koha::AdditionalFields', >+ value => { tablename => 'aqbasket', name => 'third_af_name' }, >+ } >+ ); >+ >+ # Three additional fields created, they should both be returned >+ $t->get_ok("//$userid:$password@/api/v1/additional_fields")->status_is(200)->json_is( >+ [ >+ $additional_field->to_api, >+ $another_additional_field->to_api, >+ $additional_field_different_tablename->to_api >+ ] >+ ); >+ >+ # Filtering works, two agreements sharing vendor_id >+ $t->get_ok( "//$userid:$password@/api/v1/additional_fields?tablename=" . $additional_field->tablename ) >+ ->status_is(200)->json_is( [ $additional_field->to_api, $another_additional_field->to_api ] ); >+ >+ # Warn on unsupported query parameter >+ $t->get_ok("//$userid:$password@/api/v1/additional_fields?blah=blah")->status_is(400) >+ ->json_is( [ { path => '/query/blah', message => 'Malformed query string' } ] ); >+ >+ # Unauthorized access >+ $t->get_ok("//$unauth_userid:$password@/api/v1/additional_fields")->status_is(403); >+ >+ $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 35197
:
158112
|
158511
|
158512
|
158514
|
158515
|
158577
|
158578
|
159648
|
159649
|
159650
|
165726
|
165727
|
165728
|
165769
|
165780
|
168057
|
168058
|
168059
|
168060
|
168061
|
168062
|
168063
|
168064
|
168065