aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Wells <brucekwells@gmail.com>2022-04-26 23:14:59 +0300
committerGitHub <noreply@github.com>2022-04-26 23:14:59 +0300
commitc396a882ffa5f7467947a6a19c2435a7b4cbad22 (patch)
treee055b512472eb689b0f20d85653de1020b9dafee
parentef82911187771e56c8987af5bf03d331cc533fde (diff)
Prep for V2.2.0 release (#99)V2.2.0
-rw-r--r--README.md16
-rw-r--r--tests/MathTest.php46
2 files changed, 57 insertions, 5 deletions
diff --git a/README.md b/README.md
index 645a069..0c085c8 100644
--- a/README.md
+++ b/README.md
@@ -9,6 +9,7 @@
* Conditional If logic
* Support for user defined operators
* Support for user defined functions
+* Support for math on user defined objects
* Dynamic variable resolution (delayed computation)
* Unlimited variable name lengths
* String support, as function parameters or as evaluated as a number by PHP
@@ -138,6 +139,21 @@ $executor->setVar('var1', 0.15)->setVar('var2', 0.22);
echo $executor->execute("$var1 + var2");
```
+By default, variables must be scalar values (int, float, bool or string). If you would like to support another type, use **setVarValidationHandler**
+
+```php
+$executor->setVarValidationHandler(function (string $name, $variable) {
+ // allow all scalars and null
+ if (is_scalar($variable) || $variable === null) {
+ return;
+ }
+ // Allow variables of type DateTime, but not others
+ if (! $variable instanceof \DateTime) {
+ throw new MathExecutorException("Invalid variable type");
+ }
+});
+```
+
You can dynamically define variables at run time. If a variable has a high computation cost, but might not be used, then you can define an undefined variable handler. It will only get called when the variable is used, rather than having to always set it initially.
```php
diff --git a/tests/MathTest.php b/tests/MathTest.php
index 14de2bf..07b94fa 100644
--- a/tests/MathTest.php
+++ b/tests/MathTest.php
@@ -573,6 +573,9 @@ class MathTest extends TestCase
$this->assertEquals(null, $calculator->getVar('null'));
$this->assertEquals(1.1, $calculator->getVar('float'));
$this->assertEquals('string', $calculator->getVar('string'));
+
+ $this->expectException(MathExecutorException::class);
+ $calculator->setVar('validVar', new \DateTime());
}
public function testSetVarsDoesNotAcceptObject()
@@ -592,16 +595,49 @@ class MathTest extends TestCase
public function testSetCustomVarValidator()
{
$calculator = new MathExecutor();
- $calculator->setVarValidationHandler(function ($name, $variable) {
- if ($name === 'invalidVar' && $variable === 'invalid') {
- throw new MathExecutorException("Invalid variable");
+ $calculator->setVarValidationHandler(function (string $name, $variable) {
+ // allow all scalars and null
+ if (is_scalar($variable) || $variable === null) {
+ return;
+ }
+ // Allow variables of type DateTime, but not others
+ if (! $variable instanceof \DateTime) {
+ throw new MathExecutorException("Invalid variable type");
+ }
+ });
+
+ $calculator->setVar('validFloat', 0.0);
+ $calculator->setVar('validInt', 0);
+ $calculator->setVar('validTrue', true);
+ $calculator->setVar('validFalse', false);
+ $calculator->setVar('validString', 'string');
+ $calculator->setVar('validNull', null);
+ $calculator->setVar('validDateTime', new \DateTime());
+
+ $this->expectException(MathExecutorException::class);
+ $calculator->setVar('validVar', $this);
+ }
+
+ public function testSetCustomVarNameValidator()
+ {
+ $calculator = new MathExecutor();
+ $calculator->setVarValidationHandler(function (string $name, $variable) {
+ // don't allow variable names with the word invalid in them
+ if (str_contains($name, 'invalid')) {
+ throw new MathExecutorException("Invalid variable name");
}
});
- $calculator->setVar('valid', $this);
+ $calculator->setVar('validFloat', 0.0);
+ $calculator->setVar('validInt', 0);
+ $calculator->setVar('validTrue', true);
+ $calculator->setVar('validFalse', false);
+ $calculator->setVar('validString', 'string');
+ $calculator->setVar('validNull', null);
+ $calculator->setVar('validDateTime', new \DateTime());
$this->expectException(MathExecutorException::class);
- $calculator->setVar('invalidVar', 'invalid');
+ $calculator->setVar('invalidVar', 12);
}
public function testVarExists()