From 0d522b675005a311c2ef5080dbb0bd98dd556386 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Mon, 31 Aug 2020 09:36:56 -0300 Subject: [PATCH] Bug 26322: Regression tests Signed-off-by: Tomas Cohen Arazi --- .../Koha/REST/Plugin/PluginRoutes.t | 38 ++++++++++++++++--- 1 file changed, 32 insertions(+), 6 deletions(-) diff --git a/t/db_dependent/Koha/REST/Plugin/PluginRoutes.t b/t/db_dependent/Koha/REST/Plugin/PluginRoutes.t index a1b3055443..3cac3d7c4c 100644 --- a/t/db_dependent/Koha/REST/Plugin/PluginRoutes.t +++ b/t/db_dependent/Koha/REST/Plugin/PluginRoutes.t @@ -38,6 +38,7 @@ BEGIN { use Koha::Database; use Koha::Plugins; +use t::lib::TestBuilder; my $logger = Test::MockModule->new('Koha::Logger'); $logger->mock('error', sub { @@ -45,7 +46,8 @@ $logger->mock('error', sub { warn @_; }); -my $schema = Koha::Database->new->schema; +my $schema = Koha::Database->new->schema; +my $builder = t::lib::TestBuilder->new; subtest 'Bad plugins tests' => sub { @@ -126,9 +128,9 @@ subtest 'Disabled plugins tests' => sub { $schema->storage->txn_rollback; }; -subtest 'Anonymous access routes plugins tests' => sub { +subtest 'Permissions and access to plugin routes tests' => sub { - plan tests => 9; + plan tests => 16; $schema->storage->txn_begin; @@ -159,9 +161,9 @@ subtest 'Anonymous access routes plugins tests' => sub { C4::Context->set_preference( 'RESTPublicAnonymousRequests', 0 ); - $t->get_ok('/api/v1/contrib/testplugin/public/patrons/bother') - ->status_is(200, 'Plugin routes not affected by RESTPublicAnonymousRequests') - ->json_is( { bothered => Mojo::JSON->true } ); + $t->get_ok('/api/v1/contrib/testplugin/public/patrons/bother') + ->status_is(200, 'Plugin routes not affected by RESTPublicAnonymousRequests') + ->json_is( { bothered => Mojo::JSON->true } ); C4::Context->set_preference( 'RESTPublicAnonymousRequests', 1 ); @@ -169,6 +171,30 @@ subtest 'Anonymous access routes plugins tests' => sub { ->status_is(200, 'Plugin routes not affected by RESTPublicAnonymousRequests') ->json_is( { bothered => Mojo::JSON->true } ); + $t->get_ok('/api/v1/contrib/testplugin/patrons/bother') + ->status_is(401, 'Plugin routes honour permissions, anonymous access denied'); + + # Create a patron with permissions, but the wrong ones: 3 => parameters + my $librarian = $builder->build_object( + { + class => 'Koha::Patrons', + value => { flags => 2**3 } + } + ); + my $password = 'thePassword123'; + $librarian->set_password( { password => $password, skip_validation => 1 } ); + my $userid = $librarian->userid; + + $t->get_ok("//$userid:$password@/api/v1/contrib/testplugin/patrons/bother") + ->status_is(403, 'Plugin routes honour permissions, wrong permissions, access denied'); + + # Set the patron permissions to the right ones: 4 => borrowers + $librarian->set({ flags => 2 ** 4 })->store->discard_changes; + + $t->get_ok("//$userid:$password@/api/v1/contrib/testplugin/patrons/bother") + ->status_is(200, 'Plugin routes honour permissions, right permissions, access granted') + ->json_is( { bothered => Mojo::JSON->true } ); + $schema->storage->txn_rollback; }; -- 2.28.0