X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=t%2Fform%2Fformat_amount.t;h=8de39a2e33e2ac7543610db1691d8dc249f6a03c;hb=713de5ed35a8a1faea940354254c4e781631c495;hp=a88238ee892f908be1d22c57c47300fb64d071ba;hpb=72858259ef9bad485f7b37ee97f6bc799d433dfd;p=kivitendo-erp.git diff --git a/t/form/format_amount.t b/t/form/format_amount.t index a88238ee8..8de39a2e3 100644 --- a/t/form/format_amount.t +++ b/t/form/format_amount.t @@ -25,6 +25,42 @@ is($::form->format_amount($config, 1000.1234, 2), '1,000.12', 'format 1000.1234 is($::form->format_amount($config, 1000000000.1234, 2), '1,000,000,000.12', 'format 1000000000.1234 (numberformat: 1,000.00)'); is($::form->format_amount($config, -1000000000.1234, 2), '-1,000,000,000.12', 'format -1000000000.1234 (numberformat: 1,000.00)'); +# negative places + +is($::form->format_amount($config, 1.00045, -2), '1.00045', 'negative places'); +is($::form->format_amount($config, 1.00045, -5), '1.00045', 'negative places 2'); +is($::form->format_amount($config, 1, -2), '1.00', 'negative places 3'); + +# bugs amd edge cases +$config->{numberformat} = '1.000,00'; + +is($::form->format_amount({ numberformat => '1.000,00' }, 0.00005), '0,00005', 'messing with small numbers and no precision'); +is($::form->format_amount({ numberformat => '1.000,00' }, undef), '0', 'undef'); +is($::form->format_amount({ numberformat => '1.000,00' }, ''), '0', 'empty string'); +is($::form->format_amount({ numberformat => '1.000,00' }, undef, 2), '0,00', 'undef with precision'); +is($::form->format_amount({ numberformat => '1.000,00' }, '', 2), '0,00', 'empty string with prcesion'); + +is($::form->format_amount($config, 0.545, 0), '1', 'rounding up with precision 0'); +is($::form->format_amount($config, -0.545, 0), '-1', 'neg rounding up with precision 0'); + +is($::form->format_amount($config, 1.00), '1', 'autotrim to 0 places'); + +is($::form->format_amount($config, 10), '10', 'autotrim does not harm integers'); +is($::form->format_amount($config, 10, 2), '10,00' , 'autotrim does not harm integers 2'); +is($::form->format_amount($config, 10, -2), '10,00' , 'autotrim does not harm integers 3'); +is($::form->format_amount($config, 10, 0), '10', 'autotrim does not harm integers 4'); + +is($::form->format_amount($config, 0, 0), '0' , 'trivial zero'); +is($::form->format_amount($config, -0.002, 2), '0,00' , 'negative zero'); +is($::form->format_amount($config, -0.002, 3), '-0,002' , 'negative zero'); + +# dash stuff + +$config->{numberformat} = '1.000,00'; + +is($::form->format_amount($config, -350, 2, '-'), '(350,00)', 'dash -'); + + done_testing; 1;