Bug 23051: (QA follow-up) Missing curly and tabs and fix test
[koha.git] / t / db_dependent / Koha / ApiKeys.t
blob154f69c018c7f581b8fcedcf3da2e7e13160f0bb
1 #!/usr/bin/perl
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18 use Modern::Perl;
20 use Test::More tests => 2;
21 use Test::MockModule;
22 use Test::Exception;
24 use t::lib::TestBuilder;
26 BEGIN {
27 use_ok('Koha::ApiKeys');
30 my $schema = Koha::Database->new->schema;
31 my $builder = t::lib::TestBuilder->new;
33 my $uuid_gen_client_id_counter = 0;
34 my $uuid_gen_secret_counter = 0;
36 subtest 'store() tests' => sub {
38 plan tests => 13;
40 $schema->storage->txn_begin;
42 my $print_error = $schema->storage->dbh->{PrintError};
43 $schema->storage->dbh->{PrintError} = 0;
45 Koha::ApiKeys->search->delete;
47 my $patron_1 = $builder->build_object( { class => 'Koha::Patrons' } );
48 my $description = 'Coral API key';
49 my $api_key = Koha::ApiKey->new({ patron_id => $patron_1->id, description => $description })->store;
51 # re-read from DB
52 $api_key->discard_changes;
54 is( ref($api_key), 'Koha::ApiKey' );
55 is( $api_key->patron_id, $patron_1->id, 'FK is matched' );
56 ok( defined $api_key->client_id
57 && $api_key->client_id ne ''
58 && length( $api_key->client_id ) > 1,
59 'API client_id is generated'
61 ok( defined $api_key->secret
62 && $api_key->secret ne ''
63 && length( $api_key->secret ) > 1,
64 'API secret is generated' );
65 is( $api_key->description, $description, 'Description is correctly stored' );
66 is( $api_key->active, 1, 'Key is active by default' );
68 # revoke, to call store
69 my $original_api_key = $api_key->unblessed;
70 $api_key->active(0)->store;
71 $api_key->discard_changes;
73 is( $api_key->client_id, $original_api_key->{client_id}, '->store() preserves the client_id' );
74 is( $api_key->secret, $original_api_key->{secret}, '->store() preserves the secret' );
75 is( $api_key->patron_id, $original_api_key->{patron_id}, '->store() preserves the patron_id' );
76 is( $api_key->active, 0, '->store() preserves the active value' );
78 my $patron_to_delete = $builder->build_object( { class => 'Koha::Patrons' } );
79 my $deleted_id = $patron_to_delete->id;
80 $patron_to_delete->delete;
82 throws_ok
83 { Koha::ApiKey->new({ patron_id => $deleted_id, description => 'a description' })->store }
84 'Koha::Exceptions::Object::FKConstraint',
85 'Invalid patron ID raises exception';
86 is( $@->message, 'Broken FK constraint', 'Exception message is correct' );
87 is( $@->broken_fk, 'patron_id', 'Exception field is correct' );
89 $schema->storage->txn_rollback;