[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb: [334] trunk/t/02-number-handling.t
- Subject: SF.net SVN: ledger-smb: [334] trunk/t/02-number-handling.t
- From: ..hidden..
- Date: Fri, 27 Oct 2006 10:04:29 -0700
Revision: 334
http://svn.sourceforge.net/ledger-smb/?rev=334&view=rev
Author: tetragon
Date: 2006-10-27 10:04:26 -0700 (Fri, 27 Oct 2006)
Log Message:
-----------
Add the number handling tests from my test script
Added Paths:
-----------
trunk/t/02-number-handling.t
Added: trunk/t/02-number-handling.t
===================================================================
--- trunk/t/02-number-handling.t (rev 0)
+++ trunk/t/02-number-handling.t 2006-10-27 17:04:26 UTC (rev 334)
@@ -0,0 +1,125 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+use Test::More 'no_plan';
+use Math::BigFloat;
+
+use LedgerSMB::Form;
+
+my $form = new Form;
+my %myconfig;
+ok(defined $form);
+isa_ok($form, 'Form');
+
+my $expected;
+foreach my $value ('0.01', '0.05', '0.015', '0.025', '1.1', '1.5', '1.9',
+ '10.01', '4', '5', '5.1', '5.4', '5.5', '5.6', '6', '0',
+ '0.000', '10.155', '55', '0.001', '14.5', '15.5', '4.5') {
+ foreach my $places ('3', '2', '1', '0') {
+ Math::BigFloat->round_mode('+inf');
+ $expected = Math::BigFloat->new($value)->ffround(-$places);
+ is($form->round_amount($value, $places), $expected,
+ "$value to $places decimal places - $expected");
+
+ Math::BigFloat->round_mode('-inf');
+ $expected = Math::BigFloat->new(-$value)->ffround(-$places);
+ is($form->round_amount(-$value, $places), $expected,
+ "-$value to $places decimal places - $expected");
+ }
+ foreach my $places ('-1', '-2') {
+ Math::BigFloat->round_mode('+inf');
+ $expected = Math::BigFloat->new($value)->ffround(-($places-1));
+ is($form->round_amount($value, $places), $expected,
+ "$value to $places decimal places - $expected");
+
+ Math::BigFloat->round_mode('-inf');
+ $expected = Math::BigFloat->new(-$value)->ffround(-($places-1));
+ is($form->round_amount(-$value, $places), $expected,
+ "-$value to $places decimal places - $expected");
+ }
+}
+
+# TODO Number formatting still needs work for l10n
+my @formats = (['1,000.00', ',', '.'], ["1'000.00", "'", '.'],
+ ['1.000,00', '.', ','], ['1000,00', '', ','],
+ ['1000.00', '', '.'], ['1 000.00', ' ', '.']);
+my %myfooconfig = (numberformat => '1000.00');
+foreach my $format (0 .. 5) {
+ %myconfig = (numberformat => $formats[$format][0]);
+ my $thou = $formats[$format][1];
+ my $dec = $formats[$format][2];
+ foreach my $rawValue ('10t000d00', '9t999d99', '333d33',
+ '7t777t777d77', '-12d34') {
+ $expected = $rawValue;
+ $expected =~ s/t/$thou/gx;
+ $expected =~ s/d/$dec/gx;
+ my $value = $rawValue;
+ $value =~ s/t//gx;
+ $value =~ s/d/\./gx;
+ ##$value = Math::BigFloat->new($value);
+ $value = $form->parse_amount(\%myfooconfig,$value);
+ is($form->format_amount(\%myconfig, $value, 2, 'x'), $expected,
+ "$value formatted as $formats[$format][0] - $expected");
+ }
+}
+
+foreach my $format (0 .. 5) {
+ %myconfig = (numberformat => $formats[$format][0]);
+ my $thou = $formats[$format][1];
+ my $dec = $formats[$format][2];
+ foreach my $rawValue ('10t000d00', '9t999d99', '333d33',
+ '7t777t777d77', '-12d34') {
+ $expected = $rawValue;
+ $expected =~ s/t/$thou/gx;
+ $expected =~ s/d/$dec/gx;
+ my $value = $rawValue;
+ $value =~ s/t//gx;
+ $value =~ s/d/\./gx;
+ #my $ovalue = $value;
+ $value = $form->parse_amount(\%myfooconfig,$value);
+ #$value = $form->parse_amount(\%myconfig,$value);
+ is($form->format_amount(\%myconfig,
+ $form->format_amount(\%myconfig, $value, 2, 'x'),
+ 2, 'x'),
+ $expected, "Double formatting of $value as $formats[$format][0] - $expected");
+ }
+}
+
+foreach my $format (0 .. 5) {
+ %myconfig = ('numberformat' => $formats[$format][0]);
+ my $thou = $formats[$format][1];
+ my $dec = $formats[$format][2];
+ foreach my $rawValue ('10t000d00', '9t999d99', '333d33',
+ '7t777t777d77', '-12d34') {
+ $expected = $rawValue;
+ $expected =~ s/t/$thou/gx;
+ $expected =~ s/d/$dec/gx;
+ my $value = $rawValue;
+ $value =~ s/t//gx;
+ $value =~ s/d/\./gx;
+ $value = sprintf("%.2f", $value);
+ cmp_ok($form->parse_amount(\%myconfig, $expected), '==', $value,
+ "$expected parsed as $formats[$format][0] - $value");
+ }
+}
+
+foreach my $format (0 .. 5) {
+ %myconfig = ('numberformat' => $formats[$format][0]);
+ my $thou = $formats[$format][1];
+ my $dec = $formats[$format][2];
+ foreach my $rawValue ('10t000d00', '9t999d99', '333d33',
+ '7t777t777d77', '-12d34') {
+ $expected = $rawValue;
+ $expected =~ s/t/$thou/gx;
+ $expected =~ s/d/$dec/gx;
+ my $value = $rawValue;
+ $value =~ s/t//gx;
+ $value =~ s/d/\./gx;
+ $value = sprintf("%.2f", $value);
+ cmp_ok($form->parse_amount(\%myconfig,
+ $form->parse_amount(\%myconfig, $expected)),
+ '==', $value,
+ "$expected parsed as $formats[$format][0] - $value");
+ }
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.