Bug 16686: Add test for Koha::Item::Transfer[s] and Koha::Item->get_transfer
[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 my $dbh = C4::Context->dbh;
30
31 # Start transaction
32 $dbh->{RaiseError} = 1;
33
34 my $builder = t::lib::TestBuilder->new;
35 my $nb_of_currencies = Koha::Acquisition::Currencies->search->count;
36 my $new_currency_1 = Koha::Acquisition::Currency->new({
37     currency => 'my_cur_1',
38     symbol => 'symb1',
39     isocode => 'isoc1',
40     rate => 1,
41     active => 1,
42 })->store;
43
44 my $retrieved_currency_1 = Koha::Acquisition::Currencies->find( $new_currency_1->currency );
45 is( $retrieved_currency_1->active, 1, 'Active should have been set to 1' );
46
47 my $new_currency_2 = Koha::Acquisition::Currency->new({
48     currency => 'my_cur_2',
49     symbol => 'symb2',
50     isocode => 'isoc2',
51     rate => 2,
52     active => 1,
53 })->store;
54
55 is( Koha::Acquisition::Currencies->search->count, $nb_of_currencies + 2, 'The 2 currencies should have been added' );
56 my $retrieved_currency_2 = Koha::Acquisition::Currencies->find( $new_currency_2->currency );
57 is( $retrieved_currency_2->active, 1, 'Active should have been set to 1' );
58
59 $retrieved_currency_2->store;
60 $retrieved_currency_2 = Koha::Acquisition::Currencies->find( $new_currency_2->currency );
61 is( $retrieved_currency_2->active, 1, 'Editing the existing active currency should not remove its active flag' );
62
63 my $active_currency = Koha::Acquisition::Currencies->get_active;
64 is ( $active_currency->currency, $retrieved_currency_2->currency, 'The active currency should be the last one marked as active' );
65
66 my $nb_of_active_currencies = Koha::Acquisition::Currencies->search({active => 1})->count;
67 is ( $nb_of_active_currencies, 1, 'Only 1 currency should be marked as active' );
68
69 $retrieved_currency_1->delete;
70 is( Koha::Acquisition::Currencies->search->count, $nb_of_currencies + 1, 'Delete should have deleted the currency' );