Bug 34932: Patron.t - Pass borrowernumber of manager to userenv
[koha.git] / t / db_dependent / Koha / Acquisition / Currencies.t
1 #!/usr/bin/perl
2
3 # Copyright 2015 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 use Test::More tests => 7;
22 use Koha::Database;
23 use Koha::Acquisition::Currency;
24 use Koha::Acquisition::Currencies;
25 use t::lib::TestBuilder;
26
27 my $schema = Koha::Database->schema;
28 $schema->storage->txn_begin;
29
30 my $builder = t::lib::TestBuilder->new;
31 my $nb_of_currencies = Koha::Acquisition::Currencies->search->count;
32 my $new_currency_1 = Koha::Acquisition::Currency->new({
33     currency => 'my_cur_1',
34     symbol => 'symb1',
35     isocode => 'isoc1',
36     rate => 1,
37     active => 1,
38 })->store;
39
40 my $retrieved_currency_1 = Koha::Acquisition::Currencies->find( $new_currency_1->currency );
41 is( $retrieved_currency_1->active, 1, 'Active should have been set to 1' );
42
43 my $new_currency_2 = Koha::Acquisition::Currency->new({
44     currency => 'my_cur_2',
45     symbol => 'symb2',
46     isocode => 'isoc2',
47     rate => 2,
48     active => 1,
49 })->store;
50
51 is( Koha::Acquisition::Currencies->search->count, $nb_of_currencies + 2, 'The 2 currencies should have been added' );
52 my $retrieved_currency_2 = Koha::Acquisition::Currencies->find( $new_currency_2->currency );
53 is( $retrieved_currency_2->active, 1, 'Active should have been set to 1' );
54
55 $retrieved_currency_2->store;
56 $retrieved_currency_2 = Koha::Acquisition::Currencies->find( $new_currency_2->currency );
57 is( $retrieved_currency_2->active, 1, 'Editing the existing active currency should not remove its active flag' );
58
59 my $active_currency = Koha::Acquisition::Currencies->get_active;
60 is ( $active_currency->currency, $retrieved_currency_2->currency, 'The active currency should be the last one marked as active' );
61
62 my $nb_of_active_currencies = Koha::Acquisition::Currencies->search({active => 1})->count;
63 is ( $nb_of_active_currencies, 1, 'Only 1 currency should be marked as active' );
64
65 $retrieved_currency_1->delete;
66 is( Koha::Acquisition::Currencies->search->count, $nb_of_currencies + 1, 'Delete should have deleted the currency' );