Bug 19532: (follow-up) aria-hidden attr on OPAC, and more
[koha.git] / t / db_dependent / Koha / Acquisition / Invoice.t
1 #!/usr/bin/perl
2
3 # Copyright 2020 Koha Development team
4 #
5 # This file is part of Koha
6 #
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.
11 #
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.
16 #
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>.
19
20 use Modern::Perl;
21
22 use Test::More tests => 2;
23 use Test::MockModule;
24
25 use t::lib::TestBuilder;
26
27 use Koha::Database;
28 use Koha::DateUtils qw(dt_from_string);
29
30 use_ok('Koha::Acquisition::Invoice');
31
32 my $schema  = Koha::Database->schema;
33 my $builder = t::lib::TestBuilder->new;
34
35 subtest 'to_api() tests' => sub {
36
37     plan tests => 6;
38
39     $schema->storage->txn_begin;
40
41     my $invoice_class = Test::MockModule->new('Koha::Acquisition::Invoice');
42     $invoice_class->mock(
43         'algo',
44         sub { return 'algo' }
45     );
46
47     my $invoice = $builder->build_object(
48         {
49             class => 'Koha::Acquisition::Invoices',
50             value => {
51                 closedate => undef
52             }
53         }
54     );
55
56     my $closed = $invoice->to_api->{closed};
57     ok( defined $closed, 'closed is defined' );
58     ok( !$closed, 'closedate is undef, closed evaluates to false' );
59
60     $invoice->closedate( dt_from_string )->store->discard_changes;
61     $closed = $invoice->to_api->{closed};
62     ok( defined $closed, 'closed is defined' );
63     ok( $closed, 'closedate is defined, closed evaluates to true' );
64
65     my $invoice_json = $invoice->to_api({ embed => { algo => {} } });
66     ok( exists $invoice_json->{algo} );
67     is_deeply( $invoice_json->{algo}, 'algo' );
68
69     $schema->storage->txn_rollback;
70 };