diff options
| author | Jens de Nies <j.de.nies@protonmail.com> | 2020-12-27 21:15:06 +0100 |
|---|---|---|
| committer | Nikita Popov <nikita.ppv@gmail.com> | 2021-01-12 09:50:27 +0100 |
| commit | 94a151a018d150ff6470fc35bc509f1bd8e3956a (patch) | |
| tree | 45c84f2996ac798567bfcd5e5b650779b03927f8 /ext/bcmath/tests | |
| parent | 95a13ca989d8b1624eb6439d662723c026ac11e8 (diff) | |
| download | php-git-94a151a018d150ff6470fc35bc509f1bd8e3956a.tar.gz | |
Fixed bug #80545
This converts the remaining "non well-formed" warnings in bcmath
to ValueErrors, in line with the other warning promotions that
have been performed in this extension.
Closes GH-80545.
Diffstat (limited to 'ext/bcmath/tests')
| -rw-r--r-- | ext/bcmath/tests/bug80545.phpt | 25 | ||||
| -rw-r--r-- | ext/bcmath/tests/str2num_formatting.phpt | 106 |
2 files changed, 100 insertions, 31 deletions
diff --git a/ext/bcmath/tests/bug80545.phpt b/ext/bcmath/tests/bug80545.phpt new file mode 100644 index 0000000000..680c4c0631 --- /dev/null +++ b/ext/bcmath/tests/bug80545.phpt @@ -0,0 +1,25 @@ +--TEST-- +Bug #80545 (bcadd('a', 'a') and bcadd('1', 'a') doesn't throw an exception) +--SKIPIF-- +<?php +if (!extension_loaded('bcmath')) die('skip bcmath extension not available'); +?> +--FILE-- +<?php + +try { + bcadd('a', 'a'); +} catch (\ValueError $e) { + echo $e->getMessage() . PHP_EOL; +} + +try { + bcadd('1', 'a'); +} catch (\ValueError $e) { + echo $e->getMessage(); +} + +?> +--EXPECT-- +bcadd(): Argument #1 ($num1) is not well-formed +bcadd(): Argument #2 ($num2) is not well-formed
\ No newline at end of file diff --git a/ext/bcmath/tests/str2num_formatting.phpt b/ext/bcmath/tests/str2num_formatting.phpt index 090dd44d53..83e633bdaf 100644 --- a/ext/bcmath/tests/str2num_formatting.phpt +++ b/ext/bcmath/tests/str2num_formatting.phpt @@ -14,12 +14,39 @@ echo bcadd("", "2", 2),"\n"; echo bcadd("+0", "2"), "\n"; echo bcadd("-0", "2"), "\n"; -echo bcadd(" 0", "2"); -echo bcadd("1e1", "2"); -echo bcadd("1,1", "2"); -echo bcadd("Hello", "2"); -echo bcadd("1 1", "2"); -echo "\n", "\n"; +echo "\n"; + +try { + echo bcadd(" 0", "2"); +} catch (\ValueError $e) { + echo $e->getMessage() . PHP_EOL; +} + +try { + echo bcadd("1e1", "2"); +} catch (\ValueError $e) { + echo $e->getMessage() . PHP_EOL; +} + +try { + echo bcadd("1,1", "2"); +} catch (\ValueError $e) { + echo $e->getMessage() . PHP_EOL; +} + +try { + echo bcadd("Hello", "2"); +} catch (\ValueError $e) { + echo $e->getMessage() . PHP_EOL; +} + +try { + echo bcadd("1 1", "2"); +} catch (\ValueError $e) { + echo $e->getMessage() . PHP_EOL; +} + +echo "\n"; echo bccomp("1", "2"),"\n"; echo bccomp("1.1", "2", 2),"\n"; @@ -27,11 +54,38 @@ echo bccomp("", "2"),"\n"; echo bccomp("+0", "2"), "\n"; echo bccomp("-0", "2"), "\n"; -echo bccomp(" 0", "2"); -echo bccomp("1e1", "2"); -echo bccomp("1,1", "2"); -echo bccomp("Hello", "2"); -echo bccomp("1 1", "2"); +echo "\n"; + +try { + echo bccomp(" 0", "2"); +} catch (\ValueError $e) { + echo $e->getMessage() . PHP_EOL; +} + +try { + echo bccomp("1e1", "2"); +} catch (\ValueError $e) { + echo $e->getMessage() . PHP_EOL; +} + +try { + echo bccomp("1,1", "2"); +} catch (\ValueError $e) { + echo $e->getMessage() . PHP_EOL; +} + +try { + echo bccomp("Hello", "2"); +} catch (\ValueError $e) { + echo $e->getMessage() . PHP_EOL; +} + +try { + echo bccomp("1 1", "2"); +} catch (\ValueError $e) { + echo $e->getMessage() . PHP_EOL; +} + ?> --EXPECTF-- 3 @@ -40,16 +94,11 @@ echo bccomp("1 1", "2"); 2 2 -Warning: bcadd(): bcmath function argument is not well-formed in %s on line %d -2 -Warning: bcadd(): bcmath function argument is not well-formed in %s on line %d -2 -Warning: bcadd(): bcmath function argument is not well-formed in %s on line %d -2 -Warning: bcadd(): bcmath function argument is not well-formed in %s on line %d -2 -Warning: bcadd(): bcmath function argument is not well-formed in %s on line %d -2 +bcadd(): Argument #1 ($num1) is not well-formed +bcadd(): Argument #1 ($num1) is not well-formed +bcadd(): Argument #1 ($num1) is not well-formed +bcadd(): Argument #1 ($num1) is not well-formed +bcadd(): Argument #1 ($num1) is not well-formed -1 -1 @@ -57,13 +106,8 @@ Warning: bcadd(): bcmath function argument is not well-formed in %s on line %d -1 -1 -Warning: bccomp(): bcmath function argument is not well-formed in %s on line %d --1 -Warning: bccomp(): bcmath function argument is not well-formed in %s on line %d --1 -Warning: bccomp(): bcmath function argument is not well-formed in %s on line %d --1 -Warning: bccomp(): bcmath function argument is not well-formed in %s on line %d --1 -Warning: bccomp(): bcmath function argument is not well-formed in %s on line %d --1
\ No newline at end of file +bccomp(): Argument #1 ($num1) is not well-formed +bccomp(): Argument #1 ($num1) is not well-formed +bccomp(): Argument #1 ($num1) is not well-formed +bccomp(): Argument #1 ($num1) is not well-formed +bccomp(): Argument #1 ($num1) is not well-formed
\ No newline at end of file |
