Bug 15770: Do not format numbers if too big
[koha.git] / t / Number / Price.t
1 use Modern::Perl;
2
3 use Test::More tests => 31;
4
5 use Test::MockModule;
6 use t::lib::Mocks;
7
8 # Number formating depends by default on system environement
9 # See http://search.cpan.org/~wrw/Number-Format/Format.pm
10 use POSIX qw(setlocale LC_NUMERIC);
11
12 use Koha::Acquisition::Currencies;
13 my $budget_module = Test::MockModule->new('Koha::Acquisition::Currencies');
14 my $currency;
15 $budget_module->mock( 'get_active', sub { return $currency; } );
16 use_ok('Koha::Number::Price');
17
18 my $orig_locale = setlocale(LC_NUMERIC);
19 my $format = {
20     p_cs_precedes => 1, # Force to place the symbol at the beginning
21     p_sep_by_space => 0, # Force to not add a space between the symbol and the number
22 };
23 t::lib::Mocks::mock_preference( 'CurrencyFormat', 'US' );
24 $currency = Koha::Acquisition::Currency->new({
25     currency => 'USD',
26     symbol   => '$',
27     rate     => 1,
28     active   => 1,
29 });
30
31 is( Koha::Number::Price->new->format( $format ),    '0.00', 'US: format 0' );
32 is( Koha::Number::Price->new(3)->format( $format ), '3.00', 'US: format 3' );
33 is( Koha::Number::Price->new(1234567890)->format( $format ),
34     '1,234,567,890.00', 'US: format 1234567890' );
35
36 is( Koha::Number::Price->new(100000000000000)->format, '100000000000000', 'Numbers too big are not formatted');
37
38 # FIXME This should be display symbol, but it was the case before the creation of this module
39 is( Koha::Number::Price->new->format( { %$format, with_symbol => 1 } ),
40     '0.00', 'US: format 0 with symbol' );
41 is( Koha::Number::Price->new(3)->format( { %$format, with_symbol => 1 } ),
42     '3.00', 'US: format 3 with symbol' );
43 is(
44     Koha::Number::Price->new(1234567890)
45       ->format( { %$format, with_symbol => 1 }, 'US: format 1234567890 with symbol' ),
46     '1,234,567,890.00'
47 );
48
49 is( Koha::Number::Price->new->unformat,    '0', 'US: unformat 0' );
50 is( Koha::Number::Price->new(3)->unformat, '3', 'US: unformat 3' );
51 is( Koha::Number::Price->new(1234567890)->unformat,
52     '1234567890', 'US: unformat 1234567890' );
53
54 SKIP: {
55     # Bug 18900 - Check params are not from system environement
56     setlocale(LC_NUMERIC, "fr_FR.UTF-8");
57     my $current_locale = setlocale(LC_NUMERIC);
58
59     skip "fr_FR.UTF-8 locale required for tests and missing", 2
60         unless $current_locale eq 'fr_FR.UTF-8';
61
62     is( Koha::Number::Price->new(12345678.9)->format( { %$format, with_symbol => 1 } ),
63         '12,345,678.90', 'US: format 12,345,678.90 with symbol' );
64     is( Koha::Number::Price->new('12,345,678.90')->unformat,
65         '12345678.9', 'US: unformat 12345678.9' );
66     setlocale(LC_NUMERIC, $orig_locale);
67 }
68
69 t::lib::Mocks::mock_preference( 'CurrencyFormat', 'FR' );
70 $currency = Koha::Acquisition::Currency->new({
71     currency => 'EUR',
72     symbol   => '€',
73     rate     => 1,
74     active   => 1,
75 });
76
77 # Actually,the price formating for France is 3,00€
78 # How put the symbol at the end with Number::Format?
79 is( Koha::Number::Price->new->format( $format ),    '0,00', 'FR: format 0' );
80 is( Koha::Number::Price->new(3)->format( $format ), '3,00', 'FR: format 3' );
81 is(
82     Koha::Number::Price->new(1234567890)->format( $format ),
83     '1 234 567 890,00',
84     'FR: format 1234567890'
85 );
86 is( Koha::Number::Price->new->format( { %$format, with_symbol => 1 } ),
87     '€0,00', 'FR: format 0 with symbol' );
88 is( Koha::Number::Price->new(3)->format( { %$format, with_symbol => 1 } ),
89     '€3,00', 'FR: format 3 with symbol' );
90 is(
91     Koha::Number::Price->new(1234567890)
92       ->format( { %$format, with_symbol => 1 }, 'FR: format 123567890 with symbol' ),
93     '€1 234 567 890,00'
94 );
95
96 is( Koha::Number::Price->new->unformat,    '0', 'FR: unformat 0' );
97 is( Koha::Number::Price->new(3)->unformat, '3', 'FR: unformat 3' );
98 is( Koha::Number::Price->new(1234567890)->unformat,
99     '1234567890', 'FR: unformat 1234567890' );
100
101 # Price formatting for Switzerland: 1'234'567.89
102 t::lib::Mocks::mock_preference( 'CurrencyFormat', 'CH' );
103 $currency = Koha::Acquisition::Currency->new({
104     currency => 'nnn',
105     symbol   => 'CHF',
106     rate     => 1,
107     active   => 1,
108 });
109
110 is( Koha::Number::Price->new->format( $format ),    '0.00', 'CH: format 0' );
111 is( Koha::Number::Price->new(3)->format( $format ), '3.00', 'CH: format 3' );
112 is(
113     Koha::Number::Price->new(1234567890)->format( $format ),
114     '1\'234\'567\'890.00',
115     'CHF: format 1234567890'
116 );
117 is( Koha::Number::Price->new->format( { %$format, with_symbol => 1 } ),
118     'CHF0.00', 'CH: format 0 with symbol' );
119 is( Koha::Number::Price->new(3)->format( { %$format, with_symbol => 1 } ),
120     'CHF3.00', 'CH: format 3 with symbol' );
121 is(
122     Koha::Number::Price->new(1234567890)
123       ->format( { %$format, with_symbol => 1 }, 'CH: format 123567890 with symbol' ),
124     'CHF1\'234\'567\'890.00'
125 );
126
127 is( Koha::Number::Price->new->unformat,    '0', 'CHF: unformat 0' );
128 is( Koha::Number::Price->new(3)->unformat, '3', 'CHF: unformat 3' );
129 is( Koha::Number::Price->new(1234567890)->unformat,
130     '1234567890', 'CHF: unformat 1234567890' );