Browse Source

Bug 23019: (follow-up) Fix test permissions and API definition bugs

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
20.11.x
Agustin Moyano 4 years ago
committed by Jonathan Druart
parent
commit
6853a2d7f6
  1. 4
      api/v1/swagger/paths.json
  2. 12
      api/v1/swagger/paths/import_batch_profiles.json
  3. 73
      t/db_dependent/api/v1/import_batch_profiles.t

4
api/v1/swagger/paths.json

@ -113,8 +113,8 @@
"/import_batch_profiles": {
"$ref": "paths/import_batch_profiles.json#/~1import_batch_profiles"
},
"/import_batch_profiles/{profile_id}": {
"$ref": "paths/import_batch_profiles.json#/~1import_batch_profiles~1{profile_id}"
"/import_batch_profiles/{import_batch_profile_id}": {
"$ref": "paths/import_batch_profiles.json#/~1import_batch_profiles~1{import_batch_profile_id}"
},
"/rotas/{rota_id}/stages/{stage_id}/position": {
"$ref": "paths/rotas.json#/~1rotas~1{rota_id}~1stages~1{stage_id}~1position"

12
api/v1/swagger/paths/import_batch_profiles.json

@ -67,7 +67,7 @@
},
"x-koha-authorization": {
"permissions": {
"catalogue": "1"
"tools": "stage_marc_import"
}
}
},
@ -182,12 +182,12 @@
},
"x-koha-authorization": {
"permissions": {
"catalogue": "1"
"tools": "stage_marc_import"
}
}
}
},
"/import_batch_profiles/{profile_id}": {
"/import_batch_profiles/{import_batch_profile_id}": {
"put": {
"x-mojo-to": "ImportBatchProfiles#edit",
"operationId": "editImportBatchProfiles",
@ -196,7 +196,7 @@
],
"parameters": [
{
"$ref": "../parameters.json#/profile_id_pp"
"$ref": "../parameters.json#/import_batch_profile_id_pp"
},
{
"name": "body",
@ -302,7 +302,7 @@
},
"x-koha-authorization": {
"permissions": {
"catalogue": "1"
"tools": "stage_marc_import"
}
}
},
@ -311,7 +311,7 @@
"operationId": "deleteImportBatchProfiles",
"tags": ["ImportBatchProfiles"],
"parameters": [{
"$ref": "../parameters.json#/profile_id_pp"
"$ref": "../parameters.json#/import_batch_profile_id_pp"
}
],
"produces": ["application/json"],

73
t/db_dependent/api/v1/import_batch_profiles.t

@ -17,7 +17,7 @@
use Modern::Perl;
use Test::More tests => 4;
use Test::More tests => 5;
use Test::Mojo;
use t::lib::TestBuilder;
use t::lib::Mocks;
@ -27,11 +27,50 @@ use Koha::ImportBatchProfiles;
my $schema = Koha::Database->new->schema;
my $builder = t::lib::TestBuilder->new();
my $dbh = C4::Context->dbh;
t::lib::Mocks::mock_preference( 'RESTBasicAuth', 1 );
my $t = Test::Mojo->new('Koha::REST::V1');
subtest 'unauth access' => sub {
plan tests => 4;
$schema->storage->txn_begin;
# Patron without specific flag
my $patron1 = $builder->build_object(
{
class => 'Koha::Patrons',
value => {
flags => 4
}
}
);
# Patron with correct flag, but without specific permission
my $patron2 = $builder->build_object(
{
class => 'Koha::Patrons',
value => {
flags => 4096
}
}
);
my $uid = $patron1->userid;
my $pwd = $patron1->password;
$t->get_ok("//$uid:$pwd@/api/v1/import_batch_profiles?_order_by=+name")
->status_is(403);
$uid = $patron1->userid;
$pwd = $patron1->password;
$t->get_ok("//$uid:$pwd@/api/v1/import_batch_profiles?_order_by=+name")
->status_is(403);
$schema->storage->txn_rollback;
};
subtest 'list profiles' => sub {
plan tests => 4;
@ -46,11 +85,17 @@ subtest 'list profiles' => sub {
{
class => 'Koha::Patrons',
value => {
flags => 1
flags => 4096
}
}
);
my $sth = $dbh->prepare("INSERT INTO user_permissions (borrowernumber, module_bit, code)
SELECT ?, bit, ?
FROM userflags
WHERE flag = ?");
$sth->execute($patron->borrowernumber, 'stage_marc_import', 'tools');
my $pwd = 'thePassword123';
$patron->set_password( { password => $pwd, skip_validation => 1 } );
@ -77,11 +122,17 @@ subtest 'add profile' => sub {
{
class => 'Koha::Patrons',
value => {
flags => 1
flags => 4096
}
}
);
my $sth = $dbh->prepare("INSERT INTO user_permissions (borrowernumber, module_bit, code)
SELECT ?, bit, ?
FROM userflags
WHERE flag = ?");
$sth->execute($patron->borrowernumber, 'stage_marc_import', 'tools');
my $pwd = 'thePassword123';
$patron->set_password( { password => $pwd, skip_validation => 1 } );
@ -112,11 +163,17 @@ subtest 'edit profile' => sub {
{
class => 'Koha::Patrons',
value => {
flags => 1
flags => 4096
}
}
);
my $sth = $dbh->prepare("INSERT INTO user_permissions (borrowernumber, module_bit, code)
SELECT ?, bit, ?
FROM userflags
WHERE flag = ?");
$sth->execute($patron->borrowernumber, 'stage_marc_import', 'tools');
my $pwd = 'thePassword123';
$patron->set_password( { password => $pwd, skip_validation => 1 } );
@ -153,11 +210,17 @@ subtest 'delete profile' => sub {
{
class => 'Koha::Patrons',
value => {
flags => 1
flags => 4096
}
}
);
my $sth = $dbh->prepare("INSERT INTO user_permissions (borrowernumber, module_bit, code)
SELECT ?, bit, ?
FROM userflags
WHERE flag = ?");
$sth->execute($patron->borrowernumber, 'stage_marc_import', 'tools');
my $pwd = 'thePassword123';
$patron->set_password( { password => $pwd, skip_validation => 1 } );

Loading…
Cancel
Save