Bug 18811: [QA Follow-up] Add tests for Koha::Authority::Subfields/Tags
[koha.git] / t / db_dependent / Authority / Subfields.t
blobdc5e53a1c37645978eb7d8397436c7d114cb1d7c
1 #!/usr/bin/perl
3 # Copyright 2017 Koha Development team
5 # This file is part of Koha
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 use Modern::Perl;
21 use Test::More tests => 1;
23 use t::lib::TestBuilder;
25 use Koha::Authority::Subfields;
26 use Koha::Database;
28 my $schema = Koha::Database->new->schema;
29 $schema->storage->txn_begin;
31 subtest "Some supertrivial tests for Subfield" => sub {
32 plan tests => 3;
33 my $authtype = t::lib::TestBuilder->new->build({
34 source => 'AuthType'
35 });
36 my $cnt = Koha::Authority::Subfields->count;
37 my $rec = Koha::Authority::Subfield->new({
38 authtypecode => $authtype->{authtypecode},
39 tagfield => '100',
40 tagsubfield => 'a',
41 })->store;
42 is( Koha::Authority::Subfields->count, $cnt + 1, 'One record added' );
43 $rec->update({ liblibrarian => 'intelligent text' });
44 is( Koha::Authority::Subfields->find( $authtype->{authtypecode}, '100', 'a' )->liblibrarian, 'intelligent text', 'Found record' );
45 $rec->delete;
46 is( Koha::Authority::Subfields->count, $cnt, 'One record deleted' );
49 $schema->storage->txn_rollback;