respect-validation/tests/integration/rules/size.phpt
Henrique Moody 3145426472
Update version of "respect/coding-standard"
With that update, we will be fully following PSR-12.

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2020-07-21 22:54:41 +02:00

99 lines
3.1 KiB
PHP

--CREDITS--
Danilo Correa <danilosilva87@gmail.com>
--FILE--
<?php
declare(strict_types=1);
require 'vendor/autoload.php';
use Respect\Validation\Exceptions\NestedValidationException;
use Respect\Validation\Exceptions\SizeException;
use Respect\Validation\Validator as v;
try {
v::size('1kb', '2kb')->check('tests/fixtures/valid-image.gif');
} catch (SizeException $exception) {
echo $exception->getMessage() . PHP_EOL;
}
try {
v::size('700kb', null)->check('tests/fixtures/valid-image.gif');
} catch (SizeException $exception) {
echo $exception->getMessage() . PHP_EOL;
}
try {
v::size(null, '1kb')->check('tests/fixtures/valid-image.gif');
} catch (SizeException $exception) {
echo $exception->getMessage() . PHP_EOL;
}
try {
v::not(v::size('500kb', '600kb'))->check('tests/fixtures/valid-image.gif');
} catch (SizeException $exception) {
echo $exception->getMessage() . PHP_EOL;
}
try {
v::not(v::size('500kb', null))->check('tests/fixtures/valid-image.gif');
} catch (SizeException $exception) {
echo $exception->getMessage() . PHP_EOL;
}
try {
v::not(v::size(null, '600kb'))->check('tests/fixtures/valid-image.gif');
} catch (SizeException $exception) {
echo $exception->getMessage() . PHP_EOL;
}
try {
v::size('1kb', '2kb')->assert('tests/fixtures/valid-image.gif');
} catch (NestedValidationException $exception) {
echo $exception->getFullMessage() . PHP_EOL;
}
try {
v::size('700kb', null)->assert('tests/fixtures/valid-image.gif');
} catch (NestedValidationException $exception) {
echo $exception->getFullMessage() . PHP_EOL;
}
try {
v::size(null, '1kb')->assert('tests/fixtures/valid-image.gif');
} catch (NestedValidationException $exception) {
echo $exception->getFullMessage() . PHP_EOL;
}
try {
v::not(v::size('500kb', '600kb'))->assert('tests/fixtures/valid-image.gif');
} catch (NestedValidationException $exception) {
echo $exception->getFullMessage() . PHP_EOL;
}
try {
v::not(v::size('500kb', null))->assert('tests/fixtures/valid-image.gif');
} catch (NestedValidationException $exception) {
echo $exception->getFullMessage() . PHP_EOL;
}
try {
v::not(v::size(null, '600kb'))->assert('tests/fixtures/valid-image.gif');
} catch (NestedValidationException $exception) {
echo $exception->getFullMessage() . PHP_EOL;
}
?>
--EXPECT--
"tests/fixtures/valid-image.gif" must be between "1kb" and "2kb"
"tests/fixtures/valid-image.gif" must be greater than "700kb"
"tests/fixtures/valid-image.gif" must be lower than "1kb"
"tests/fixtures/valid-image.gif" must not be between "500kb" and "600kb"
"tests/fixtures/valid-image.gif" must not be greater than "500kb"
"tests/fixtures/valid-image.gif" must not be lower than "600kb"
- "tests/fixtures/valid-image.gif" must be between "1kb" and "2kb"
- "tests/fixtures/valid-image.gif" must be greater than "700kb"
- "tests/fixtures/valid-image.gif" must be lower than "1kb"
- "tests/fixtures/valid-image.gif" must not be between "500kb" and "600kb"
- "tests/fixtures/valid-image.gif" must not be greater than "500kb"
- "tests/fixtures/valid-image.gif" must not be lower than "600kb"