JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
added unit testing framework
[wfpl.git] / unit_tests / format.php
1 <?php
2
3 #  Copyright (C) 2009 Jason Woofenden
4 #
5 #  This program is free software: you can redistribute it and/or modify
6 #  it under the terms of the GNU General Public License as published by
7 #  the Free Software Foundation, either version 3 of the License, or
8 #  (at your option) any later version.
9 #  
10 #  This program is distributed in the hope that it will be useful,
11 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 #  GNU General Public License for more details.
14 #  
15 #  You should have received a copy of the GNU General Public License
16 #  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18
19 # This file contains tests for functions in code/wfpl/format.php
20 #
21 # See code/wfpl/test.php for details on how to run or create tests
22
23
24 require_once('code/wfpl/format.php');
25
26 function _test_format_money($input, $dollars_correct, $money_correct) {
27         $errors = 0;
28         $dollars = format_dollars($input);
29         $money = format_money($input);
30         if($dollars != $dollars_correct) {
31                 ++$errors;
32                 message("format_dollars(\"$input\") returned \"$dollars\" instead of \"$dollars_correct\"");
33         }
34         if($money != $money_correct) {
35                 ++$errors;
36                 message("format_money(\"$input\") returned \"$money\" instead of \"$money_correct\"");
37         }
38
39         return $errors;
40 }
41
42 function test_format_money() {
43         $errors = 0;
44         $errors += _test_format_money('1', '$1', '$1.00');
45         $errors += _test_format_money('0', '$0', '$0.00');
46         $errors += _test_format_money('0.0', '$0', '$0.00');
47         $errors += _test_format_money('0.00', '$0', '$0.00');
48         $errors += _test_format_money('0.01', '$0', '$0.01');
49         $errors += _test_format_money('0.51', '$1', '$0.51');
50         $errors += _test_format_money('2.05', '$2', '$2.05');
51         $errors += _test_format_money('2.10000500', '$2', '$2.10');
52         $errors += _test_format_money('2.005', '$2', '$2.01');
53         $errors += _test_format_money('2.004', '$2', '$2.00');
54         $errors += _test_format_money('2.1', '$2', '$2.10');
55         $errors += _test_format_money('2.0', '$2', '$2.00');
56         $errors += _test_format_money('1000', '$1,000', '$1,000.00');
57         $errors += _test_format_money('10000000', '$10,000,000', '$10,000,000.00');
58         $errors += _test_format_money('100000000000', '$100,000,000,000', '$100,000,000,000.00');
59         $errors += _test_format_money('1.99', '$2', '$1.99');
60         $errors += _test_format_money('1.555', '$2', '$1.56');
61         $errors += _test_format_money('19.555', '$20', '$19.56');
62         $errors += _test_format_money('9.499', '$9', '$9.50');
63         $errors += _test_format_money('9.989', '$10', '$9.99');
64         $errors += _test_format_money('9.999', '$10', '$10.00');
65         $errors += _test_format_money('19999999999.555', '$20,000,000,000', '$19,999,999,999.56');
66         return $errors;
67 }
68
69 function format_unit_tests_main() {
70         $errors = 0;
71         $errors += test_format_money();
72         return $errors;
73 }