View | Details | Raw Unified | Return to bug 24459
Collapse All | Expand All

(-)a/t/db_dependent/Koha/Acquisition/Invoice.t (+70 lines)
Line 0 Link Here
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
};
(-)a/t/db_dependent/Koha/Patron.t (-2 / +39 lines)
Lines 19-28 Link Here
19
19
20
use Modern::Perl;
20
use Modern::Perl;
21
21
22
use Test::More tests => 2;
22
use Test::More tests => 3;
23
use Test::Exception;
23
use Test::Exception;
24
24
25
use Koha::Database;
25
use Koha::Database;
26
use Koha::DateUtils qw(dt_from_string);
26
use Koha::Patrons;
27
use Koha::Patrons;
27
use Koha::Patron::Relationships;
28
use Koha::Patron::Relationships;
28
29
Lines 154-156 subtest 'add_enrolment_fee_if_needed() tests' => sub { Link Here
154
        $schema->storage->txn_rollback;
155
        $schema->storage->txn_rollback;
155
    };
156
    };
156
};
157
};
157
- 
158
159
subtest 'to_api() tests' => sub {
160
161
    plan tests => 6;
162
163
    $schema->storage->txn_begin;
164
165
    my $patron_class = Test::MockModule->new('Koha::Patron');
166
    $patron_class->mock(
167
        'algo',
168
        sub { return 'algo' }
169
    );
170
171
    my $patron = $builder->build_object(
172
        {
173
            class => 'Koha::Patrons',
174
            value => {
175
                debarred => undef
176
            }
177
        }
178
    );
179
180
    my $restricted = $patron->to_api->{restricted};
181
    ok( defined $restricted, 'restricted is defined' );
182
    ok( !$restricted, 'debarred is undef, restricted evaluates to false' );
183
184
    $patron->debarred( dt_from_string->add( days => 1 ) )->store->discard_changes;
185
    $restricted = $patron->to_api->{restricted};
186
    ok( defined $restricted, 'restricted is defined' );
187
    ok( $restricted, 'debarred is defined, restricted evaluates to true' );
188
189
    my $patron_json = $patron->to_api({ embed => { algo => {} } });
190
    ok( exists $patron_json->{algo} );
191
    is( $patron_json->{algo}, 'algo' );
192
193
    $schema->storage->txn_rollback;
194
};

Return to bug 24459