revbank/t
Juerd Waalboer ef0039bc33 Handle huge numbers better
A sufficiently big number, i.e. longer than a long long, had interesting
effects. Perl would promote it to a float, and format it as -1 in
sprintf, which RevBank::Amount didn't handle correctly. In extreme cases
the number got rounded to Inf and would no longer round-trip.

As a result, numbers returned by RevBank::Amount are now Math::BigInt
and Math::BigFloat objects. Those should be transparent to all existing
code. It's amazing to see the unit tests pass.

I don't think there is any actual use case in RevBank for numbers this
large and I don't think anyone will have actually encountered the
aforementioned weird effects. Mostly, the input would be parsed with
parse_amount which refuses any number greater than 99900 anyway. Only
where parse_string was used directly, such large numbers could actually
have been used, but in stock RevBank that is only done when reading the
accounts file.

This change also introduces a new global function parse_any_amount that
is like parse_amount but doesn't complain about negative or large
numbers, to further improve the adduser plugin (see previous commit) in
insane edge cases. It differs from RevBank::Amount->parse_string in that
it does support addition and subtraction operators.
2024-08-28 05:19:02 +02:00
..
amount.t Handle huge numbers better 2024-08-28 05:19:02 +02:00
amount2.t ChatGPT wrote some unit tests and found a small bug. 2023-03-16 00:00:26 +01:00
calc.t More tests 2023-12-25 05:02:02 +01:00
cart.t Some more tests by ChatGPT 2023-03-16 00:30:48 +01:00
fileio.t More tests 2023-12-25 05:02:02 +01:00
prompt.t Better cursor position after input syntax error 2023-12-28 20:38:37 +01:00
README tests README 2023-12-28 14:07:19 +01:00

To run all tests, run from the parent directory:

	prove -Ilib t