From 9a95f11d03515bdcc80a5b3f886b20c67f2b1072 Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Tue, 11 Feb 2025 13:21:51 +0000 Subject: [PATCH] Bug 39091: Add tests Test plan: prove t/db_dependent/api/v1/cash_registers.t --- t/db_dependent/api/v1/cash_registers.t | 87 ++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100755 t/db_dependent/api/v1/cash_registers.t diff --git a/t/db_dependent/api/v1/cash_registers.t b/t/db_dependent/api/v1/cash_registers.t new file mode 100755 index 00000000000..7dc378a533c --- /dev/null +++ b/t/db_dependent/api/v1/cash_registers.t @@ -0,0 +1,87 @@ +#!/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 t::lib::TestBuilder; +use t::lib::Mocks; + +use Koha::Cash::Registers; +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 => 8; + + $schema->storage->txn_begin; + + Koha::Cash::Registers->search->delete; + + my $librarian = $builder->build_object( + { + class => 'Koha::Patrons', + value => { flags => 25**2 } # cash_management flag = 25 + } + ); + 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; + + $t->get_ok("//$userid:$password@/api/v1/cash_registers")->status_is(200) + ->json_is( [ ] ); + + my $register = $builder->build_object( + { + class => 'Koha::Cash::Registers' + } + ); + + my $new_register = $builder->build_object( { class => 'Koha::Cash::Registers' } ); + + # One more register created, both should be returned + $t->get_ok( + "//$userid:$password@/api/v1/cash_registers") + ->status_is(200) + ->json_is( [ $register->to_api, $new_register->to_api, ] ); + + # Unauthorized access + $t->get_ok( + "//$unauth_userid:$password@/api/v1/cash_registers" + )->status_is(403); + + $schema->storage->txn_rollback; +}; + -- 2.39.5