Major refactoring cleanup: - Add new controller architecture (class-controller-*.php) - Add new settings-v2 UI (views/settings-v2/) - Add new CSS architecture (agentic-sidebar.css, tokens) - Add esbuild build pipeline (scripts/build.js, package.json) - Add composer dependencies (vendor/) - Add frontend src directory (assets/js/src/index.jsx) - Add documentation files - Remove old/obsolete files (class-settings.php, old CSS) This commits all pending changes from previous refactoring efforts.
3256 lines
104 KiB
PHP
3256 lines
104 KiB
PHP
<?php declare(strict_types=1);
|
|
/*
|
|
* This file is part of PHPUnit.
|
|
*
|
|
* (c) Sebastian Bergmann <sebastian@phpunit.de>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*
|
|
* This file is added for benchmark purposes only!!!
|
|
*/
|
|
namespace PHPUnit\Framework;
|
|
|
|
use ArrayAccess;
|
|
use Countable;
|
|
use DOMDocument;
|
|
use DOMElement;
|
|
use PHPUnit\Framework\Constraint\ArrayHasKey;
|
|
use PHPUnit\Framework\Constraint\ArraySubset;
|
|
use PHPUnit\Framework\Constraint\Attribute;
|
|
use PHPUnit\Framework\Constraint\Callback;
|
|
use PHPUnit\Framework\Constraint\ClassHasAttribute;
|
|
use PHPUnit\Framework\Constraint\ClassHasStaticAttribute;
|
|
use PHPUnit\Framework\Constraint\Constraint;
|
|
use PHPUnit\Framework\Constraint\Count;
|
|
use PHPUnit\Framework\Constraint\DirectoryExists;
|
|
use PHPUnit\Framework\Constraint\FileExists;
|
|
use PHPUnit\Framework\Constraint\GreaterThan;
|
|
use PHPUnit\Framework\Constraint\IsAnything;
|
|
use PHPUnit\Framework\Constraint\IsEmpty;
|
|
use PHPUnit\Framework\Constraint\IsEqual;
|
|
use PHPUnit\Framework\Constraint\IsFalse;
|
|
use PHPUnit\Framework\Constraint\IsFinite;
|
|
use PHPUnit\Framework\Constraint\IsIdentical;
|
|
use PHPUnit\Framework\Constraint\IsInfinite;
|
|
use PHPUnit\Framework\Constraint\IsInstanceOf;
|
|
use PHPUnit\Framework\Constraint\IsJson;
|
|
use PHPUnit\Framework\Constraint\IsNan;
|
|
use PHPUnit\Framework\Constraint\IsNull;
|
|
use PHPUnit\Framework\Constraint\IsReadable;
|
|
use PHPUnit\Framework\Constraint\IsTrue;
|
|
use PHPUnit\Framework\Constraint\IsType;
|
|
use PHPUnit\Framework\Constraint\IsWritable;
|
|
use PHPUnit\Framework\Constraint\JsonMatches;
|
|
use PHPUnit\Framework\Constraint\LessThan;
|
|
use PHPUnit\Framework\Constraint\LogicalAnd;
|
|
use PHPUnit\Framework\Constraint\LogicalNot;
|
|
use PHPUnit\Framework\Constraint\LogicalOr;
|
|
use PHPUnit\Framework\Constraint\LogicalXor;
|
|
use PHPUnit\Framework\Constraint\ObjectHasAttribute;
|
|
use PHPUnit\Framework\Constraint\RegularExpression;
|
|
use PHPUnit\Framework\Constraint\SameSize;
|
|
use PHPUnit\Framework\Constraint\StringContains;
|
|
use PHPUnit\Framework\Constraint\StringEndsWith;
|
|
use PHPUnit\Framework\Constraint\StringMatchesFormatDescription;
|
|
use PHPUnit\Framework\Constraint\StringStartsWith;
|
|
use PHPUnit\Framework\Constraint\TraversableContains;
|
|
use PHPUnit\Framework\Constraint\TraversableContainsOnly;
|
|
use PHPUnit\Util\InvalidArgumentHelper;
|
|
use PHPUnit\Util\Type;
|
|
use PHPUnit\Util\Xml;
|
|
use ReflectionClass;
|
|
use ReflectionException;
|
|
use ReflectionObject;
|
|
use Traversable;
|
|
|
|
/**
|
|
* A set of assertion methods.
|
|
*/
|
|
abstract class Assert
|
|
{
|
|
/**
|
|
* @var int
|
|
*/
|
|
private static $count = 0;
|
|
|
|
/**
|
|
* Asserts that an array has a specified key.
|
|
*
|
|
* @param int|string $key
|
|
* @param array|ArrayAccess $array
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*/
|
|
public static function assertArrayHasKey($key, $array, string $message = ''): void
|
|
{
|
|
if (!(\is_int($key) || \is_string($key))) {
|
|
throw InvalidArgumentHelper::factory(
|
|
1,
|
|
'integer or string'
|
|
);
|
|
}
|
|
|
|
if (!(\is_array($array) || $array instanceof ArrayAccess)) {
|
|
throw InvalidArgumentHelper::factory(
|
|
2,
|
|
'array or ArrayAccess'
|
|
);
|
|
}
|
|
|
|
$constraint = new ArrayHasKey($key);
|
|
|
|
static::assertThat($array, $constraint, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that an array has a specified subset.
|
|
*
|
|
* @param array|ArrayAccess $subset
|
|
* @param array|ArrayAccess $array
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*
|
|
* @codeCoverageIgnore
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3494
|
|
*/
|
|
public static function assertArraySubset($subset, $array, bool $checkForObjectIdentity = false, string $message = ''): void
|
|
{
|
|
self::createWarning('assertArraySubset() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
if (!(\is_array($subset) || $subset instanceof ArrayAccess)) {
|
|
throw InvalidArgumentHelper::factory(
|
|
1,
|
|
'array or ArrayAccess'
|
|
);
|
|
}
|
|
|
|
if (!(\is_array($array) || $array instanceof ArrayAccess)) {
|
|
throw InvalidArgumentHelper::factory(
|
|
2,
|
|
'array or ArrayAccess'
|
|
);
|
|
}
|
|
|
|
$constraint = new ArraySubset($subset, $checkForObjectIdentity);
|
|
|
|
static::assertThat($array, $constraint, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that an array does not have a specified key.
|
|
*
|
|
* @param int|string $key
|
|
* @param array|ArrayAccess $array
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*/
|
|
public static function assertArrayNotHasKey($key, $array, string $message = ''): void
|
|
{
|
|
if (!(\is_int($key) || \is_string($key))) {
|
|
throw InvalidArgumentHelper::factory(
|
|
1,
|
|
'integer or string'
|
|
);
|
|
}
|
|
|
|
if (!(\is_array($array) || $array instanceof ArrayAccess)) {
|
|
throw InvalidArgumentHelper::factory(
|
|
2,
|
|
'array or ArrayAccess'
|
|
);
|
|
}
|
|
|
|
$constraint = new LogicalNot(
|
|
new ArrayHasKey($key)
|
|
);
|
|
|
|
static::assertThat($array, $constraint, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a haystack contains a needle.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*/
|
|
public static function assertContains($needle, $haystack, string $message = '', bool $ignoreCase = false, bool $checkForObjectIdentity = true, bool $checkForNonObjectIdentity = false): void
|
|
{
|
|
// @codeCoverageIgnoreStart
|
|
if (\is_string($haystack)) {
|
|
self::createWarning('Using assertContains() with string haystacks is deprecated and will not be supported in PHPUnit 9. Refactor your test to use assertStringContainsString() or assertStringContainsStringIgnoringCase() instead.');
|
|
}
|
|
|
|
if (!$checkForObjectIdentity) {
|
|
self::createWarning('The optional $checkForObjectIdentity parameter of assertContains() is deprecated and will be removed in PHPUnit 9. Refactor your test to use assertContainsEquals() instead.');
|
|
}
|
|
|
|
if ($checkForNonObjectIdentity) {
|
|
self::createWarning('The optional $checkForNonObjectIdentity parameter of assertContains() is deprecated and will be removed in PHPUnit 9.');
|
|
}
|
|
|
|
if ($ignoreCase) {
|
|
self::createWarning('The optional $ignoreCase parameter of assertContains() is deprecated and will be removed in PHPUnit 9.');
|
|
}
|
|
// @codeCoverageIgnoreEnd
|
|
|
|
if (\is_array($haystack) ||
|
|
(\is_object($haystack) && $haystack instanceof Traversable)) {
|
|
$constraint = new TraversableContains(
|
|
$needle,
|
|
$checkForObjectIdentity,
|
|
$checkForNonObjectIdentity
|
|
);
|
|
} elseif (\is_string($haystack)) {
|
|
if (!\is_string($needle)) {
|
|
throw InvalidArgumentHelper::factory(
|
|
1,
|
|
'string'
|
|
);
|
|
}
|
|
|
|
$constraint = new StringContains(
|
|
$needle,
|
|
$ignoreCase
|
|
);
|
|
} else {
|
|
throw InvalidArgumentHelper::factory(
|
|
2,
|
|
'array, traversable or string'
|
|
);
|
|
}
|
|
|
|
static::assertThat($haystack, $constraint, $message);
|
|
}
|
|
|
|
public static function assertContainsEquals($needle, iterable $haystack, string $message = ''): void
|
|
{
|
|
$constraint = new TraversableContains($needle, false, false);
|
|
|
|
static::assertThat($haystack, $constraint, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a haystack that is stored in a static attribute of a class
|
|
* or an attribute of an object contains a needle.
|
|
*
|
|
* @param object|string $haystackClassOrObject
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws ReflectionException
|
|
* @throws Exception
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function assertAttributeContains($needle, string $haystackAttributeName, $haystackClassOrObject, string $message = '', bool $ignoreCase = false, bool $checkForObjectIdentity = true, bool $checkForNonObjectIdentity = false): void
|
|
{
|
|
self::createWarning('assertAttributeContains() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
static::assertContains(
|
|
$needle,
|
|
static::readAttribute($haystackClassOrObject, $haystackAttributeName),
|
|
$message,
|
|
$ignoreCase,
|
|
$checkForObjectIdentity,
|
|
$checkForNonObjectIdentity
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a haystack does not contain a needle.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*/
|
|
public static function assertNotContains($needle, $haystack, string $message = '', bool $ignoreCase = false, bool $checkForObjectIdentity = true, bool $checkForNonObjectIdentity = false): void
|
|
{
|
|
// @codeCoverageIgnoreStart
|
|
if (\is_string($haystack)) {
|
|
self::createWarning('Using assertNotContains() with string haystacks is deprecated and will not be supported in PHPUnit 9. Refactor your test to use assertStringNotContainsString() or assertStringNotContainsStringIgnoringCase() instead.');
|
|
}
|
|
|
|
if (!$checkForObjectIdentity) {
|
|
self::createWarning('The optional $checkForObjectIdentity parameter of assertNotContains() is deprecated and will be removed in PHPUnit 9. Refactor your test to use assertNotContainsEquals() instead.');
|
|
}
|
|
|
|
if ($checkForNonObjectIdentity) {
|
|
self::createWarning('The optional $checkForNonObjectIdentity parameter of assertNotContains() is deprecated and will be removed in PHPUnit 9.');
|
|
}
|
|
|
|
if ($ignoreCase) {
|
|
self::createWarning('The optional $ignoreCase parameter of assertNotContains() is deprecated and will be removed in PHPUnit 9.');
|
|
}
|
|
// @codeCoverageIgnoreEnd
|
|
|
|
if (\is_array($haystack) ||
|
|
(\is_object($haystack) && $haystack instanceof Traversable)) {
|
|
$constraint = new LogicalNot(
|
|
new TraversableContains(
|
|
$needle,
|
|
$checkForObjectIdentity,
|
|
$checkForNonObjectIdentity
|
|
)
|
|
);
|
|
} elseif (\is_string($haystack)) {
|
|
if (!\is_string($needle)) {
|
|
throw InvalidArgumentHelper::factory(
|
|
1,
|
|
'string'
|
|
);
|
|
}
|
|
|
|
$constraint = new LogicalNot(
|
|
new StringContains(
|
|
$needle,
|
|
$ignoreCase
|
|
)
|
|
);
|
|
} else {
|
|
throw InvalidArgumentHelper::factory(
|
|
2,
|
|
'array, traversable or string'
|
|
);
|
|
}
|
|
|
|
static::assertThat($haystack, $constraint, $message);
|
|
}
|
|
|
|
public static function assertNotContainsEquals($needle, iterable $haystack, string $message = ''): void
|
|
{
|
|
$constraint = new LogicalNot(new TraversableContains($needle, false, false));
|
|
|
|
static::assertThat($haystack, $constraint, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a haystack that is stored in a static attribute of a class
|
|
* or an attribute of an object does not contain a needle.
|
|
*
|
|
* @param object|string $haystackClassOrObject
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws ReflectionException
|
|
* @throws Exception
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function assertAttributeNotContains($needle, string $haystackAttributeName, $haystackClassOrObject, string $message = '', bool $ignoreCase = false, bool $checkForObjectIdentity = true, bool $checkForNonObjectIdentity = false): void
|
|
{
|
|
self::createWarning('assertAttributeNotContains() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
static::assertNotContains(
|
|
$needle,
|
|
static::readAttribute($haystackClassOrObject, $haystackAttributeName),
|
|
$message,
|
|
$ignoreCase,
|
|
$checkForObjectIdentity,
|
|
$checkForNonObjectIdentity
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a haystack contains only values of a given type.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertContainsOnly(string $type, iterable $haystack, ?bool $isNativeType = null, string $message = ''): void
|
|
{
|
|
if ($isNativeType === null) {
|
|
$isNativeType = Type::isType($type);
|
|
}
|
|
|
|
static::assertThat(
|
|
$haystack,
|
|
new TraversableContainsOnly(
|
|
$type,
|
|
$isNativeType
|
|
),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a haystack contains only instances of a given class name.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertContainsOnlyInstancesOf(string $className, iterable $haystack, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$haystack,
|
|
new TraversableContainsOnly(
|
|
$className,
|
|
false
|
|
),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a haystack that is stored in a static attribute of a class
|
|
* or an attribute of an object contains only values of a given type.
|
|
*
|
|
* @param object|string $haystackClassOrObject
|
|
* @param bool $isNativeType
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws ReflectionException
|
|
* @throws Exception
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function assertAttributeContainsOnly(string $type, string $haystackAttributeName, $haystackClassOrObject, ?bool $isNativeType = null, string $message = ''): void
|
|
{
|
|
self::createWarning('assertAttributeContainsOnly() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
static::assertContainsOnly(
|
|
$type,
|
|
static::readAttribute($haystackClassOrObject, $haystackAttributeName),
|
|
$isNativeType,
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a haystack does not contain only values of a given type.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertNotContainsOnly(string $type, iterable $haystack, ?bool $isNativeType = null, string $message = ''): void
|
|
{
|
|
if ($isNativeType === null) {
|
|
$isNativeType = Type::isType($type);
|
|
}
|
|
|
|
static::assertThat(
|
|
$haystack,
|
|
new LogicalNot(
|
|
new TraversableContainsOnly(
|
|
$type,
|
|
$isNativeType
|
|
)
|
|
),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a haystack that is stored in a static attribute of a class
|
|
* or an attribute of an object does not contain only values of a given
|
|
* type.
|
|
*
|
|
* @param object|string $haystackClassOrObject
|
|
* @param bool $isNativeType
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws ReflectionException
|
|
* @throws Exception
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function assertAttributeNotContainsOnly(string $type, string $haystackAttributeName, $haystackClassOrObject, ?bool $isNativeType = null, string $message = ''): void
|
|
{
|
|
self::createWarning('assertAttributeNotContainsOnly() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
static::assertNotContainsOnly(
|
|
$type,
|
|
static::readAttribute($haystackClassOrObject, $haystackAttributeName),
|
|
$isNativeType,
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts the number of elements of an array, Countable or Traversable.
|
|
*
|
|
* @param Countable|iterable $haystack
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*/
|
|
public static function assertCount(int $expectedCount, $haystack, string $message = ''): void
|
|
{
|
|
if (!$haystack instanceof Countable && !\is_iterable($haystack)) {
|
|
throw InvalidArgumentHelper::factory(2, 'countable or iterable');
|
|
}
|
|
|
|
static::assertThat(
|
|
$haystack,
|
|
new Count($expectedCount),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts the number of elements of an array, Countable or Traversable
|
|
* that is stored in an attribute.
|
|
*
|
|
* @param object|string $haystackClassOrObject
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws ReflectionException
|
|
* @throws Exception
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function assertAttributeCount(int $expectedCount, string $haystackAttributeName, $haystackClassOrObject, string $message = ''): void
|
|
{
|
|
self::createWarning('assertAttributeCount() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
static::assertCount(
|
|
$expectedCount,
|
|
static::readAttribute($haystackClassOrObject, $haystackAttributeName),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts the number of elements of an array, Countable or Traversable.
|
|
*
|
|
* @param Countable|iterable $haystack
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*/
|
|
public static function assertNotCount(int $expectedCount, $haystack, string $message = ''): void
|
|
{
|
|
if (!$haystack instanceof Countable && !\is_iterable($haystack)) {
|
|
throw InvalidArgumentHelper::factory(2, 'countable or iterable');
|
|
}
|
|
|
|
$constraint = new LogicalNot(
|
|
new Count($expectedCount)
|
|
);
|
|
|
|
static::assertThat($haystack, $constraint, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts the number of elements of an array, Countable or Traversable
|
|
* that is stored in an attribute.
|
|
*
|
|
* @param object|string $haystackClassOrObject
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws ReflectionException
|
|
* @throws Exception
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function assertAttributeNotCount(int $expectedCount, string $haystackAttributeName, $haystackClassOrObject, string $message = ''): void
|
|
{
|
|
self::createWarning('assertAttributeNotCount() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
static::assertNotCount(
|
|
$expectedCount,
|
|
static::readAttribute($haystackClassOrObject, $haystackAttributeName),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that two variables are equal.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertEquals($expected, $actual, string $message = '', float $delta = 0.0, int $maxDepth = 10, bool $canonicalize = false, bool $ignoreCase = false): void
|
|
{
|
|
// @codeCoverageIgnoreStart
|
|
if ($delta !== 0.0) {
|
|
self::createWarning('The optional $delta parameter of assertEquals() is deprecated and will be removed in PHPUnit 9. Refactor your test to use assertEqualsWithDelta() instead.');
|
|
}
|
|
|
|
if ($maxDepth !== 10) {
|
|
self::createWarning('The optional $maxDepth parameter of assertEquals() is deprecated and will be removed in PHPUnit 9.');
|
|
}
|
|
|
|
if ($canonicalize) {
|
|
self::createWarning('The optional $canonicalize parameter of assertEquals() is deprecated and will be removed in PHPUnit 9. Refactor your test to use assertEqualsCanonicalizing() instead.');
|
|
}
|
|
|
|
if ($ignoreCase) {
|
|
self::createWarning('The optional $ignoreCase parameter of assertEquals() is deprecated and will be removed in PHPUnit 9. Refactor your test to use assertEqualsIgnoringCase() instead.');
|
|
}
|
|
// @codeCoverageIgnoreEnd
|
|
|
|
$constraint = new IsEqual(
|
|
$expected,
|
|
$delta,
|
|
$maxDepth,
|
|
$canonicalize,
|
|
$ignoreCase
|
|
);
|
|
|
|
static::assertThat($actual, $constraint, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that two variables are equal (canonicalizing).
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertEqualsCanonicalizing($expected, $actual, string $message = ''): void
|
|
{
|
|
$constraint = new IsEqual(
|
|
$expected,
|
|
0.0,
|
|
10,
|
|
true,
|
|
false
|
|
);
|
|
|
|
static::assertThat($actual, $constraint, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that two variables are equal (ignoring case).
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertEqualsIgnoringCase($expected, $actual, string $message = ''): void
|
|
{
|
|
$constraint = new IsEqual(
|
|
$expected,
|
|
0.0,
|
|
10,
|
|
false,
|
|
true
|
|
);
|
|
|
|
static::assertThat($actual, $constraint, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that two variables are equal (with delta).
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertEqualsWithDelta($expected, $actual, float $delta, string $message = ''): void
|
|
{
|
|
$constraint = new IsEqual(
|
|
$expected,
|
|
$delta
|
|
);
|
|
|
|
static::assertThat($actual, $constraint, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is equal to an attribute of an object.
|
|
*
|
|
* @param object|string $actualClassOrObject
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws ReflectionException
|
|
* @throws Exception
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function assertAttributeEquals($expected, string $actualAttributeName, $actualClassOrObject, string $message = '', float $delta = 0.0, int $maxDepth = 10, bool $canonicalize = false, bool $ignoreCase = false): void
|
|
{
|
|
self::createWarning('assertAttributeEquals() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
static::assertEquals(
|
|
$expected,
|
|
static::readAttribute($actualClassOrObject, $actualAttributeName),
|
|
$message,
|
|
$delta,
|
|
$maxDepth,
|
|
$canonicalize,
|
|
$ignoreCase
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that two variables are not equal.
|
|
*
|
|
* @param float $delta
|
|
* @param int $maxDepth
|
|
* @param bool $canonicalize
|
|
* @param bool $ignoreCase
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertNotEquals($expected, $actual, string $message = '', $delta = 0.0, $maxDepth = 10, $canonicalize = false, $ignoreCase = false): void
|
|
{
|
|
// @codeCoverageIgnoreStart
|
|
if ($delta !== 0.0) {
|
|
self::createWarning('The optional $delta parameter of assertNotEquals() is deprecated and will be removed in PHPUnit 9. Refactor your test to use assertNotEqualsWithDelta() instead.');
|
|
}
|
|
|
|
if ($maxDepth !== 10) {
|
|
self::createWarning('The optional $maxDepth parameter of assertNotEquals() is deprecated and will be removed in PHPUnit 9.');
|
|
}
|
|
|
|
if ($canonicalize) {
|
|
self::createWarning('The optional $canonicalize parameter of assertNotEquals() is deprecated and will be removed in PHPUnit 9. Refactor your test to use assertNotEqualsCanonicalizing() instead.');
|
|
}
|
|
|
|
if ($ignoreCase) {
|
|
self::createWarning('The optional $ignoreCase parameter of assertNotEquals() is deprecated and will be removed in PHPUnit 9. Refactor your test to use assertNotEqualsIgnoringCase() instead.');
|
|
}
|
|
// @codeCoverageIgnoreEnd
|
|
|
|
$constraint = new LogicalNot(
|
|
new IsEqual(
|
|
$expected,
|
|
$delta,
|
|
$maxDepth,
|
|
$canonicalize,
|
|
$ignoreCase
|
|
)
|
|
);
|
|
|
|
static::assertThat($actual, $constraint, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that two variables are not equal (canonicalizing).
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertNotEqualsCanonicalizing($expected, $actual, string $message = ''): void
|
|
{
|
|
$constraint = new LogicalNot(
|
|
new IsEqual(
|
|
$expected,
|
|
0.0,
|
|
10,
|
|
true,
|
|
false
|
|
)
|
|
);
|
|
|
|
static::assertThat($actual, $constraint, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that two variables are not equal (ignoring case).
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertNotEqualsIgnoringCase($expected, $actual, string $message = ''): void
|
|
{
|
|
$constraint = new LogicalNot(
|
|
new IsEqual(
|
|
$expected,
|
|
0.0,
|
|
10,
|
|
false,
|
|
true
|
|
)
|
|
);
|
|
|
|
static::assertThat($actual, $constraint, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that two variables are not equal (with delta).
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertNotEqualsWithDelta($expected, $actual, float $delta, string $message = ''): void
|
|
{
|
|
$constraint = new LogicalNot(
|
|
new IsEqual(
|
|
$expected,
|
|
$delta
|
|
)
|
|
);
|
|
|
|
static::assertThat($actual, $constraint, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is not equal to an attribute of an object.
|
|
*
|
|
* @param object|string $actualClassOrObject
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws ReflectionException
|
|
* @throws Exception
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function assertAttributeNotEquals($expected, string $actualAttributeName, $actualClassOrObject, string $message = '', float $delta = 0.0, int $maxDepth = 10, bool $canonicalize = false, bool $ignoreCase = false): void
|
|
{
|
|
self::createWarning('assertAttributeNotEquals() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
static::assertNotEquals(
|
|
$expected,
|
|
static::readAttribute($actualClassOrObject, $actualAttributeName),
|
|
$message,
|
|
$delta,
|
|
$maxDepth,
|
|
$canonicalize,
|
|
$ignoreCase
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is empty.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertEmpty($actual, string $message = ''): void
|
|
{
|
|
static::assertThat($actual, static::isEmpty(), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a static attribute of a class or an attribute of an object
|
|
* is empty.
|
|
*
|
|
* @param object|string $haystackClassOrObject
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws ReflectionException
|
|
* @throws Exception
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function assertAttributeEmpty(string $haystackAttributeName, $haystackClassOrObject, string $message = ''): void
|
|
{
|
|
self::createWarning('assertAttributeEmpty() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
static::assertEmpty(
|
|
static::readAttribute($haystackClassOrObject, $haystackAttributeName),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is not empty.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertNotEmpty($actual, string $message = ''): void
|
|
{
|
|
static::assertThat($actual, static::logicalNot(static::isEmpty()), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a static attribute of a class or an attribute of an object
|
|
* is not empty.
|
|
*
|
|
* @param object|string $haystackClassOrObject
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws ReflectionException
|
|
* @throws Exception
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function assertAttributeNotEmpty(string $haystackAttributeName, $haystackClassOrObject, string $message = ''): void
|
|
{
|
|
self::createWarning('assertAttributeNotEmpty() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
static::assertNotEmpty(
|
|
static::readAttribute($haystackClassOrObject, $haystackAttributeName),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a value is greater than another value.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertGreaterThan($expected, $actual, string $message = ''): void
|
|
{
|
|
static::assertThat($actual, static::greaterThan($expected), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that an attribute is greater than another value.
|
|
*
|
|
* @param object|string $actualClassOrObject
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws ReflectionException
|
|
* @throws Exception
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function assertAttributeGreaterThan($expected, string $actualAttributeName, $actualClassOrObject, string $message = ''): void
|
|
{
|
|
self::createWarning('assertAttributeGreaterThan() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
static::assertGreaterThan(
|
|
$expected,
|
|
static::readAttribute($actualClassOrObject, $actualAttributeName),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a value is greater than or equal to another value.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertGreaterThanOrEqual($expected, $actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
static::greaterThanOrEqual($expected),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that an attribute is greater than or equal to another value.
|
|
*
|
|
* @param object|string $actualClassOrObject
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws ReflectionException
|
|
* @throws Exception
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function assertAttributeGreaterThanOrEqual($expected, string $actualAttributeName, $actualClassOrObject, string $message = ''): void
|
|
{
|
|
self::createWarning('assertAttributeGreaterThanOrEqual() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
static::assertGreaterThanOrEqual(
|
|
$expected,
|
|
static::readAttribute($actualClassOrObject, $actualAttributeName),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a value is smaller than another value.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertLessThan($expected, $actual, string $message = ''): void
|
|
{
|
|
static::assertThat($actual, static::lessThan($expected), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that an attribute is smaller than another value.
|
|
*
|
|
* @param object|string $actualClassOrObject
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws ReflectionException
|
|
* @throws Exception
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function assertAttributeLessThan($expected, string $actualAttributeName, $actualClassOrObject, string $message = ''): void
|
|
{
|
|
self::createWarning('assertAttributeLessThan() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
static::assertLessThan(
|
|
$expected,
|
|
static::readAttribute($actualClassOrObject, $actualAttributeName),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a value is smaller than or equal to another value.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertLessThanOrEqual($expected, $actual, string $message = ''): void
|
|
{
|
|
static::assertThat($actual, static::lessThanOrEqual($expected), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that an attribute is smaller than or equal to another value.
|
|
*
|
|
* @param object|string $actualClassOrObject
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws ReflectionException
|
|
* @throws Exception
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function assertAttributeLessThanOrEqual($expected, string $actualAttributeName, $actualClassOrObject, string $message = ''): void
|
|
{
|
|
self::createWarning('assertAttributeLessThanOrEqual() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
static::assertLessThanOrEqual(
|
|
$expected,
|
|
static::readAttribute($actualClassOrObject, $actualAttributeName),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that the contents of one file is equal to the contents of another
|
|
* file.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertFileEquals(string $expected, string $actual, string $message = '', bool $canonicalize = false, bool $ignoreCase = false): void
|
|
{
|
|
static::assertFileExists($expected, $message);
|
|
static::assertFileExists($actual, $message);
|
|
|
|
$constraint = new IsEqual(
|
|
\file_get_contents($expected),
|
|
0.0,
|
|
10,
|
|
$canonicalize,
|
|
$ignoreCase
|
|
);
|
|
|
|
static::assertThat(\file_get_contents($actual), $constraint, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that the contents of one file is not equal to the contents of
|
|
* another file.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertFileNotEquals(string $expected, string $actual, string $message = '', bool $canonicalize = false, bool $ignoreCase = false): void
|
|
{
|
|
static::assertFileExists($expected, $message);
|
|
static::assertFileExists($actual, $message);
|
|
|
|
$constraint = new LogicalNot(
|
|
new IsEqual(
|
|
\file_get_contents($expected),
|
|
0.0,
|
|
10,
|
|
$canonicalize,
|
|
$ignoreCase
|
|
)
|
|
);
|
|
|
|
static::assertThat(\file_get_contents($actual), $constraint, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that the contents of a string is equal
|
|
* to the contents of a file.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertStringEqualsFile(string $expectedFile, string $actualString, string $message = '', bool $canonicalize = false, bool $ignoreCase = false): void
|
|
{
|
|
static::assertFileExists($expectedFile, $message);
|
|
|
|
$constraint = new IsEqual(
|
|
\file_get_contents($expectedFile),
|
|
0.0,
|
|
10,
|
|
$canonicalize,
|
|
$ignoreCase
|
|
);
|
|
|
|
static::assertThat($actualString, $constraint, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that the contents of a string is not equal
|
|
* to the contents of a file.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertStringNotEqualsFile(string $expectedFile, string $actualString, string $message = '', bool $canonicalize = false, bool $ignoreCase = false): void
|
|
{
|
|
static::assertFileExists($expectedFile, $message);
|
|
|
|
$constraint = new LogicalNot(
|
|
new IsEqual(
|
|
\file_get_contents($expectedFile),
|
|
0.0,
|
|
10,
|
|
$canonicalize,
|
|
$ignoreCase
|
|
)
|
|
);
|
|
|
|
static::assertThat($actualString, $constraint, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a file/dir is readable.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsReadable(string $filename, string $message = ''): void
|
|
{
|
|
static::assertThat($filename, new IsReadable, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a file/dir exists and is not readable.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertNotIsReadable(string $filename, string $message = ''): void
|
|
{
|
|
static::assertThat($filename, new LogicalNot(new IsReadable), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a file/dir exists and is writable.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsWritable(string $filename, string $message = ''): void
|
|
{
|
|
static::assertThat($filename, new IsWritable, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a file/dir exists and is not writable.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertNotIsWritable(string $filename, string $message = ''): void
|
|
{
|
|
static::assertThat($filename, new LogicalNot(new IsWritable), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a directory exists.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertDirectoryExists(string $directory, string $message = ''): void
|
|
{
|
|
static::assertThat($directory, new DirectoryExists, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a directory does not exist.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertDirectoryNotExists(string $directory, string $message = ''): void
|
|
{
|
|
static::assertThat($directory, new LogicalNot(new DirectoryExists), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a directory exists and is readable.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertDirectoryIsReadable(string $directory, string $message = ''): void
|
|
{
|
|
self::assertDirectoryExists($directory, $message);
|
|
self::assertIsReadable($directory, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a directory exists and is not readable.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertDirectoryNotIsReadable(string $directory, string $message = ''): void
|
|
{
|
|
self::assertDirectoryExists($directory, $message);
|
|
self::assertNotIsReadable($directory, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a directory exists and is writable.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertDirectoryIsWritable(string $directory, string $message = ''): void
|
|
{
|
|
self::assertDirectoryExists($directory, $message);
|
|
self::assertIsWritable($directory, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a directory exists and is not writable.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertDirectoryNotIsWritable(string $directory, string $message = ''): void
|
|
{
|
|
self::assertDirectoryExists($directory, $message);
|
|
self::assertNotIsWritable($directory, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a file exists.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertFileExists(string $filename, string $message = ''): void
|
|
{
|
|
static::assertThat($filename, new FileExists, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a file does not exist.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertFileNotExists(string $filename, string $message = ''): void
|
|
{
|
|
static::assertThat($filename, new LogicalNot(new FileExists), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a file exists and is readable.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertFileIsReadable(string $file, string $message = ''): void
|
|
{
|
|
self::assertFileExists($file, $message);
|
|
self::assertIsReadable($file, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a file exists and is not readable.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertFileNotIsReadable(string $file, string $message = ''): void
|
|
{
|
|
self::assertFileExists($file, $message);
|
|
self::assertNotIsReadable($file, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a file exists and is writable.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertFileIsWritable(string $file, string $message = ''): void
|
|
{
|
|
self::assertFileExists($file, $message);
|
|
self::assertIsWritable($file, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a file exists and is not writable.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertFileNotIsWritable(string $file, string $message = ''): void
|
|
{
|
|
self::assertFileExists($file, $message);
|
|
self::assertNotIsWritable($file, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a condition is true.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertTrue($condition, string $message = ''): void
|
|
{
|
|
static::assertThat($condition, static::isTrue(), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a condition is not true.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertNotTrue($condition, string $message = ''): void
|
|
{
|
|
static::assertThat($condition, static::logicalNot(static::isTrue()), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a condition is false.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertFalse($condition, string $message = ''): void
|
|
{
|
|
static::assertThat($condition, static::isFalse(), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a condition is not false.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertNotFalse($condition, string $message = ''): void
|
|
{
|
|
static::assertThat($condition, static::logicalNot(static::isFalse()), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is null.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertNull($actual, string $message = ''): void
|
|
{
|
|
static::assertThat($actual, static::isNull(), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is not null.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertNotNull($actual, string $message = ''): void
|
|
{
|
|
static::assertThat($actual, static::logicalNot(static::isNull()), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is finite.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertFinite($actual, string $message = ''): void
|
|
{
|
|
static::assertThat($actual, static::isFinite(), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is infinite.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertInfinite($actual, string $message = ''): void
|
|
{
|
|
static::assertThat($actual, static::isInfinite(), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is nan.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertNan($actual, string $message = ''): void
|
|
{
|
|
static::assertThat($actual, static::isNan(), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a class has a specified attribute.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*/
|
|
public static function assertClassHasAttribute(string $attributeName, string $className, string $message = ''): void
|
|
{
|
|
if (!self::isValidClassAttributeName($attributeName)) {
|
|
throw InvalidArgumentHelper::factory(1, 'valid attribute name');
|
|
}
|
|
|
|
if (!\class_exists($className)) {
|
|
throw InvalidArgumentHelper::factory(2, 'class name', $className);
|
|
}
|
|
|
|
static::assertThat($className, new ClassHasAttribute($attributeName), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a class does not have a specified attribute.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*/
|
|
public static function assertClassNotHasAttribute(string $attributeName, string $className, string $message = ''): void
|
|
{
|
|
if (!self::isValidClassAttributeName($attributeName)) {
|
|
throw InvalidArgumentHelper::factory(1, 'valid attribute name');
|
|
}
|
|
|
|
if (!\class_exists($className)) {
|
|
throw InvalidArgumentHelper::factory(2, 'class name', $className);
|
|
}
|
|
|
|
static::assertThat(
|
|
$className,
|
|
new LogicalNot(
|
|
new ClassHasAttribute($attributeName)
|
|
),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a class has a specified static attribute.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*/
|
|
public static function assertClassHasStaticAttribute(string $attributeName, string $className, string $message = ''): void
|
|
{
|
|
if (!self::isValidClassAttributeName($attributeName)) {
|
|
throw InvalidArgumentHelper::factory(1, 'valid attribute name');
|
|
}
|
|
|
|
if (!\class_exists($className)) {
|
|
throw InvalidArgumentHelper::factory(2, 'class name', $className);
|
|
}
|
|
|
|
static::assertThat(
|
|
$className,
|
|
new ClassHasStaticAttribute($attributeName),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a class does not have a specified static attribute.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*/
|
|
public static function assertClassNotHasStaticAttribute(string $attributeName, string $className, string $message = ''): void
|
|
{
|
|
if (!self::isValidClassAttributeName($attributeName)) {
|
|
throw InvalidArgumentHelper::factory(1, 'valid attribute name');
|
|
}
|
|
|
|
if (!\class_exists($className)) {
|
|
throw InvalidArgumentHelper::factory(2, 'class name', $className);
|
|
}
|
|
|
|
static::assertThat(
|
|
$className,
|
|
new LogicalNot(
|
|
new ClassHasStaticAttribute($attributeName)
|
|
),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that an object has a specified attribute.
|
|
*
|
|
* @param object $object
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*/
|
|
public static function assertObjectHasAttribute(string $attributeName, $object, string $message = ''): void
|
|
{
|
|
if (!self::isValidObjectAttributeName($attributeName)) {
|
|
throw InvalidArgumentHelper::factory(1, 'valid attribute name');
|
|
}
|
|
|
|
if (!\is_object($object)) {
|
|
throw InvalidArgumentHelper::factory(2, 'object');
|
|
}
|
|
|
|
static::assertThat(
|
|
$object,
|
|
new ObjectHasAttribute($attributeName),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that an object does not have a specified attribute.
|
|
*
|
|
* @param object $object
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*/
|
|
public static function assertObjectNotHasAttribute(string $attributeName, $object, string $message = ''): void
|
|
{
|
|
if (!self::isValidObjectAttributeName($attributeName)) {
|
|
throw InvalidArgumentHelper::factory(1, 'valid attribute name');
|
|
}
|
|
|
|
if (!\is_object($object)) {
|
|
throw InvalidArgumentHelper::factory(2, 'object');
|
|
}
|
|
|
|
static::assertThat(
|
|
$object,
|
|
new LogicalNot(
|
|
new ObjectHasAttribute($attributeName)
|
|
),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that two variables have the same type and value.
|
|
* Used on objects, it asserts that two variables reference
|
|
* the same object.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertSame($expected, $actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new IsIdentical($expected),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable and an attribute of an object have the same type
|
|
* and value.
|
|
*
|
|
* @param object|string $actualClassOrObject
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws ReflectionException
|
|
* @throws Exception
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function assertAttributeSame($expected, string $actualAttributeName, $actualClassOrObject, string $message = ''): void
|
|
{
|
|
self::createWarning('assertAttributeSame() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
static::assertSame(
|
|
$expected,
|
|
static::readAttribute($actualClassOrObject, $actualAttributeName),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that two variables do not have the same type and value.
|
|
* Used on objects, it asserts that two variables do not reference
|
|
* the same object.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertNotSame($expected, $actual, string $message = ''): void
|
|
{
|
|
if (\is_bool($expected) && \is_bool($actual)) {
|
|
static::assertNotEquals($expected, $actual, $message);
|
|
}
|
|
|
|
static::assertThat(
|
|
$actual,
|
|
new LogicalNot(
|
|
new IsIdentical($expected)
|
|
),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable and an attribute of an object do not have the
|
|
* same type and value.
|
|
*
|
|
* @param object|string $actualClassOrObject
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws ReflectionException
|
|
* @throws Exception
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function assertAttributeNotSame($expected, string $actualAttributeName, $actualClassOrObject, string $message = ''): void
|
|
{
|
|
self::createWarning('assertAttributeNotSame() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
static::assertNotSame(
|
|
$expected,
|
|
static::readAttribute($actualClassOrObject, $actualAttributeName),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is of a given type.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*/
|
|
public static function assertInstanceOf(string $expected, $actual, string $message = ''): void
|
|
{
|
|
if (!\class_exists($expected) && !\interface_exists($expected)) {
|
|
throw InvalidArgumentHelper::factory(1, 'class or interface name');
|
|
}
|
|
|
|
static::assertThat(
|
|
$actual,
|
|
new IsInstanceOf($expected),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that an attribute is of a given type.
|
|
*
|
|
* @param object|string $classOrObject
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws ReflectionException
|
|
* @throws Exception
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function assertAttributeInstanceOf(string $expected, string $attributeName, $classOrObject, string $message = ''): void
|
|
{
|
|
self::createWarning('assertAttributeInstanceOf() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
static::assertInstanceOf(
|
|
$expected,
|
|
static::readAttribute($classOrObject, $attributeName),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is not of a given type.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*/
|
|
public static function assertNotInstanceOf(string $expected, $actual, string $message = ''): void
|
|
{
|
|
if (!\class_exists($expected) && !\interface_exists($expected)) {
|
|
throw InvalidArgumentHelper::factory(1, 'class or interface name');
|
|
}
|
|
|
|
static::assertThat(
|
|
$actual,
|
|
new LogicalNot(
|
|
new IsInstanceOf($expected)
|
|
),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that an attribute is of a given type.
|
|
*
|
|
* @param object|string $classOrObject
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws ReflectionException
|
|
* @throws Exception
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function assertAttributeNotInstanceOf(string $expected, string $attributeName, $classOrObject, string $message = ''): void
|
|
{
|
|
self::createWarning('assertAttributeNotInstanceOf() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
static::assertNotInstanceOf(
|
|
$expected,
|
|
static::readAttribute($classOrObject, $attributeName),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is of a given type.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3369
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function assertInternalType(string $expected, $actual, string $message = ''): void
|
|
{
|
|
self::createWarning('assertInternalType() is deprecated and will be removed in PHPUnit 9. Refactor your test to use assertIsArray(), assertIsBool(), assertIsFloat(), assertIsInt(), assertIsNumeric(), assertIsObject(), assertIsResource(), assertIsString(), assertIsScalar(), assertIsCallable(), or assertIsIterable() instead.');
|
|
|
|
static::assertThat(
|
|
$actual,
|
|
new IsType($expected),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that an attribute is of a given type.
|
|
*
|
|
* @param object|string $classOrObject
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws ReflectionException
|
|
* @throws Exception
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function assertAttributeInternalType(string $expected, string $attributeName, $classOrObject, string $message = ''): void
|
|
{
|
|
self::createWarning('assertAttributeInternalType() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
static::assertInternalType(
|
|
$expected,
|
|
static::readAttribute($classOrObject, $attributeName),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is of type array.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsArray($actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new IsType(IsType::TYPE_ARRAY),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is of type bool.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsBool($actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new IsType(IsType::TYPE_BOOL),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is of type float.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsFloat($actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new IsType(IsType::TYPE_FLOAT),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is of type int.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsInt($actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new IsType(IsType::TYPE_INT),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is of type numeric.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsNumeric($actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new IsType(IsType::TYPE_NUMERIC),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is of type object.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsObject($actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new IsType(IsType::TYPE_OBJECT),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is of type resource.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsResource($actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new IsType(IsType::TYPE_RESOURCE),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is of type string.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsString($actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new IsType(IsType::TYPE_STRING),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is of type scalar.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsScalar($actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new IsType(IsType::TYPE_SCALAR),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is of type callable.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsCallable($actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new IsType(IsType::TYPE_CALLABLE),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is of type iterable.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsIterable($actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new IsType(IsType::TYPE_ITERABLE),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is not of a given type.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3369
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function assertNotInternalType(string $expected, $actual, string $message = ''): void
|
|
{
|
|
self::createWarning('assertNotInternalType() is deprecated and will be removed in PHPUnit 9. Refactor your test to use assertIsNotArray(), assertIsNotBool(), assertIsNotFloat(), assertIsNotInt(), assertIsNotNumeric(), assertIsNotObject(), assertIsNotResource(), assertIsNotString(), assertIsNotScalar(), assertIsNotCallable(), or assertIsNotIterable() instead.');
|
|
|
|
static::assertThat(
|
|
$actual,
|
|
new LogicalNot(
|
|
new IsType($expected)
|
|
),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is not of type array.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsNotArray($actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new LogicalNot(new IsType(IsType::TYPE_ARRAY)),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is not of type bool.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsNotBool($actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new LogicalNot(new IsType(IsType::TYPE_BOOL)),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is not of type float.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsNotFloat($actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new LogicalNot(new IsType(IsType::TYPE_FLOAT)),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is not of type int.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsNotInt($actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new LogicalNot(new IsType(IsType::TYPE_INT)),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is not of type numeric.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsNotNumeric($actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new LogicalNot(new IsType(IsType::TYPE_NUMERIC)),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is not of type object.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsNotObject($actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new LogicalNot(new IsType(IsType::TYPE_OBJECT)),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is not of type resource.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsNotResource($actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new LogicalNot(new IsType(IsType::TYPE_RESOURCE)),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is not of type string.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsNotString($actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new LogicalNot(new IsType(IsType::TYPE_STRING)),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is not of type scalar.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsNotScalar($actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new LogicalNot(new IsType(IsType::TYPE_SCALAR)),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is not of type callable.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsNotCallable($actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new LogicalNot(new IsType(IsType::TYPE_CALLABLE)),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a variable is not of type iterable.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertIsNotIterable($actual, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$actual,
|
|
new LogicalNot(new IsType(IsType::TYPE_ITERABLE)),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that an attribute is of a given type.
|
|
*
|
|
* @param object|string $classOrObject
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws ReflectionException
|
|
* @throws Exception
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function assertAttributeNotInternalType(string $expected, string $attributeName, $classOrObject, string $message = ''): void
|
|
{
|
|
self::createWarning('assertAttributeNotInternalType() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
static::assertNotInternalType(
|
|
$expected,
|
|
static::readAttribute($classOrObject, $attributeName),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a string matches a given regular expression.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertRegExp(string $pattern, string $string, string $message = ''): void
|
|
{
|
|
static::assertThat($string, new RegularExpression($pattern), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a string does not match a given regular expression.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertNotRegExp(string $pattern, string $string, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$string,
|
|
new LogicalNot(
|
|
new RegularExpression($pattern)
|
|
),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Assert that the size of two arrays (or `Countable` or `Traversable` objects)
|
|
* is the same.
|
|
*
|
|
* @param Countable|iterable $expected
|
|
* @param Countable|iterable $actual
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*/
|
|
public static function assertSameSize($expected, $actual, string $message = ''): void
|
|
{
|
|
if (!$expected instanceof Countable && !\is_iterable($expected)) {
|
|
throw InvalidArgumentHelper::factory(1, 'countable or iterable');
|
|
}
|
|
|
|
if (!$actual instanceof Countable && !\is_iterable($actual)) {
|
|
throw InvalidArgumentHelper::factory(2, 'countable or iterable');
|
|
}
|
|
|
|
static::assertThat(
|
|
$actual,
|
|
new SameSize($expected),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Assert that the size of two arrays (or `Countable` or `Traversable` objects)
|
|
* is not the same.
|
|
*
|
|
* @param Countable|iterable $expected
|
|
* @param Countable|iterable $actual
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*/
|
|
public static function assertNotSameSize($expected, $actual, string $message = ''): void
|
|
{
|
|
if (!$expected instanceof Countable && !\is_iterable($expected)) {
|
|
throw InvalidArgumentHelper::factory(1, 'countable or iterable');
|
|
}
|
|
|
|
if (!$actual instanceof Countable && !\is_iterable($actual)) {
|
|
throw InvalidArgumentHelper::factory(2, 'countable or iterable');
|
|
}
|
|
|
|
static::assertThat(
|
|
$actual,
|
|
new LogicalNot(
|
|
new SameSize($expected)
|
|
),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a string matches a given format string.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertStringMatchesFormat(string $format, string $string, string $message = ''): void
|
|
{
|
|
static::assertThat($string, new StringMatchesFormatDescription($format), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a string does not match a given format string.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertStringNotMatchesFormat(string $format, string $string, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$string,
|
|
new LogicalNot(
|
|
new StringMatchesFormatDescription($format)
|
|
),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a string matches a given format file.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertStringMatchesFormatFile(string $formatFile, string $string, string $message = ''): void
|
|
{
|
|
static::assertFileExists($formatFile, $message);
|
|
|
|
static::assertThat(
|
|
$string,
|
|
new StringMatchesFormatDescription(
|
|
\file_get_contents($formatFile)
|
|
),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a string does not match a given format string.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertStringNotMatchesFormatFile(string $formatFile, string $string, string $message = ''): void
|
|
{
|
|
static::assertFileExists($formatFile, $message);
|
|
|
|
static::assertThat(
|
|
$string,
|
|
new LogicalNot(
|
|
new StringMatchesFormatDescription(
|
|
\file_get_contents($formatFile)
|
|
)
|
|
),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a string starts with a given prefix.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertStringStartsWith(string $prefix, string $string, string $message = ''): void
|
|
{
|
|
static::assertThat($string, new StringStartsWith($prefix), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a string starts not with a given prefix.
|
|
*
|
|
* @param string $prefix
|
|
* @param string $string
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertStringStartsNotWith($prefix, $string, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$string,
|
|
new LogicalNot(
|
|
new StringStartsWith($prefix)
|
|
),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertStringContainsString(string $needle, string $haystack, string $message = ''): void
|
|
{
|
|
$constraint = new StringContains($needle, false);
|
|
|
|
static::assertThat($haystack, $constraint, $message);
|
|
}
|
|
|
|
/**
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertStringContainsStringIgnoringCase(string $needle, string $haystack, string $message = ''): void
|
|
{
|
|
$constraint = new StringContains($needle, true);
|
|
|
|
static::assertThat($haystack, $constraint, $message);
|
|
}
|
|
|
|
/**
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertStringNotContainsString(string $needle, string $haystack, string $message = ''): void
|
|
{
|
|
$constraint = new LogicalNot(new StringContains($needle));
|
|
|
|
static::assertThat($haystack, $constraint, $message);
|
|
}
|
|
|
|
/**
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertStringNotContainsStringIgnoringCase(string $needle, string $haystack, string $message = ''): void
|
|
{
|
|
$constraint = new LogicalNot(new StringContains($needle, true));
|
|
|
|
static::assertThat($haystack, $constraint, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a string ends with a given suffix.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertStringEndsWith(string $suffix, string $string, string $message = ''): void
|
|
{
|
|
static::assertThat($string, new StringEndsWith($suffix), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a string ends not with a given suffix.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertStringEndsNotWith(string $suffix, string $string, string $message = ''): void
|
|
{
|
|
static::assertThat(
|
|
$string,
|
|
new LogicalNot(
|
|
new StringEndsWith($suffix)
|
|
),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that two XML files are equal.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*/
|
|
public static function assertXmlFileEqualsXmlFile(string $expectedFile, string $actualFile, string $message = ''): void
|
|
{
|
|
$expected = Xml::loadFile($expectedFile);
|
|
$actual = Xml::loadFile($actualFile);
|
|
|
|
static::assertEquals($expected, $actual, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that two XML files are not equal.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*/
|
|
public static function assertXmlFileNotEqualsXmlFile(string $expectedFile, string $actualFile, string $message = ''): void
|
|
{
|
|
$expected = Xml::loadFile($expectedFile);
|
|
$actual = Xml::loadFile($actualFile);
|
|
|
|
static::assertNotEquals($expected, $actual, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that two XML documents are equal.
|
|
*
|
|
* @param DOMDocument|string $actualXml
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*/
|
|
public static function assertXmlStringEqualsXmlFile(string $expectedFile, $actualXml, string $message = ''): void
|
|
{
|
|
$expected = Xml::loadFile($expectedFile);
|
|
$actual = Xml::load($actualXml);
|
|
|
|
static::assertEquals($expected, $actual, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that two XML documents are not equal.
|
|
*
|
|
* @param DOMDocument|string $actualXml
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*/
|
|
public static function assertXmlStringNotEqualsXmlFile(string $expectedFile, $actualXml, string $message = ''): void
|
|
{
|
|
$expected = Xml::loadFile($expectedFile);
|
|
$actual = Xml::load($actualXml);
|
|
|
|
static::assertNotEquals($expected, $actual, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that two XML documents are equal.
|
|
*
|
|
* @param DOMDocument|string $expectedXml
|
|
* @param DOMDocument|string $actualXml
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*/
|
|
public static function assertXmlStringEqualsXmlString($expectedXml, $actualXml, string $message = ''): void
|
|
{
|
|
$expected = Xml::load($expectedXml);
|
|
$actual = Xml::load($actualXml);
|
|
|
|
static::assertEquals($expected, $actual, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that two XML documents are not equal.
|
|
*
|
|
* @param DOMDocument|string $expectedXml
|
|
* @param DOMDocument|string $actualXml
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
* @throws Exception
|
|
*/
|
|
public static function assertXmlStringNotEqualsXmlString($expectedXml, $actualXml, string $message = ''): void
|
|
{
|
|
$expected = Xml::load($expectedXml);
|
|
$actual = Xml::load($actualXml);
|
|
|
|
static::assertNotEquals($expected, $actual, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a hierarchy of DOMElements matches.
|
|
*
|
|
* @throws AssertionFailedError
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertEqualXMLStructure(DOMElement $expectedElement, DOMElement $actualElement, bool $checkAttributes = false, string $message = ''): void
|
|
{
|
|
$expectedElement = Xml::import($expectedElement);
|
|
$actualElement = Xml::import($actualElement);
|
|
|
|
static::assertSame(
|
|
$expectedElement->tagName,
|
|
$actualElement->tagName,
|
|
$message
|
|
);
|
|
|
|
if ($checkAttributes) {
|
|
static::assertSame(
|
|
$expectedElement->attributes->length,
|
|
$actualElement->attributes->length,
|
|
\sprintf(
|
|
'%s%sNumber of attributes on node "%s" does not match',
|
|
$message,
|
|
!empty($message) ? "\n" : '',
|
|
$expectedElement->tagName
|
|
)
|
|
);
|
|
|
|
for ($i = 0; $i < $expectedElement->attributes->length; $i++) {
|
|
$expectedAttribute = $expectedElement->attributes->item($i);
|
|
$actualAttribute = $actualElement->attributes->getNamedItem($expectedAttribute->name);
|
|
|
|
\assert($expectedAttribute instanceof \DOMAttr);
|
|
|
|
if (!$actualAttribute) {
|
|
static::fail(
|
|
\sprintf(
|
|
'%s%sCould not find attribute "%s" on node "%s"',
|
|
$message,
|
|
!empty($message) ? "\n" : '',
|
|
$expectedAttribute->name,
|
|
$expectedElement->tagName
|
|
)
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
Xml::removeCharacterDataNodes($expectedElement);
|
|
Xml::removeCharacterDataNodes($actualElement);
|
|
|
|
static::assertSame(
|
|
$expectedElement->childNodes->length,
|
|
$actualElement->childNodes->length,
|
|
\sprintf(
|
|
'%s%sNumber of child nodes of "%s" differs',
|
|
$message,
|
|
!empty($message) ? "\n" : '',
|
|
$expectedElement->tagName
|
|
)
|
|
);
|
|
|
|
for ($i = 0; $i < $expectedElement->childNodes->length; $i++) {
|
|
static::assertEqualXMLStructure(
|
|
$expectedElement->childNodes->item($i),
|
|
$actualElement->childNodes->item($i),
|
|
$checkAttributes,
|
|
$message
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Evaluates a PHPUnit\Framework\Constraint matcher object.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertThat($value, Constraint $constraint, string $message = ''): void
|
|
{
|
|
self::$count += \count($constraint);
|
|
|
|
$constraint->evaluate($value, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that a string is a valid JSON string.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertJson(string $actualJson, string $message = ''): void
|
|
{
|
|
static::assertThat($actualJson, static::isJson(), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that two given JSON encoded objects or arrays are equal.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertJsonStringEqualsJsonString(string $expectedJson, string $actualJson, string $message = ''): void
|
|
{
|
|
static::assertJson($expectedJson, $message);
|
|
static::assertJson($actualJson, $message);
|
|
|
|
static::assertThat($actualJson, new JsonMatches($expectedJson), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that two given JSON encoded objects or arrays are not equal.
|
|
*
|
|
* @param string $expectedJson
|
|
* @param string $actualJson
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertJsonStringNotEqualsJsonString($expectedJson, $actualJson, string $message = ''): void
|
|
{
|
|
static::assertJson($expectedJson, $message);
|
|
static::assertJson($actualJson, $message);
|
|
|
|
static::assertThat(
|
|
$actualJson,
|
|
new LogicalNot(
|
|
new JsonMatches($expectedJson)
|
|
),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that the generated JSON encoded object and the content of the given file are equal.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertJsonStringEqualsJsonFile(string $expectedFile, string $actualJson, string $message = ''): void
|
|
{
|
|
static::assertFileExists($expectedFile, $message);
|
|
$expectedJson = \file_get_contents($expectedFile);
|
|
|
|
static::assertJson($expectedJson, $message);
|
|
static::assertJson($actualJson, $message);
|
|
|
|
static::assertThat($actualJson, new JsonMatches($expectedJson), $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that the generated JSON encoded object and the content of the given file are not equal.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertJsonStringNotEqualsJsonFile(string $expectedFile, string $actualJson, string $message = ''): void
|
|
{
|
|
static::assertFileExists($expectedFile, $message);
|
|
$expectedJson = \file_get_contents($expectedFile);
|
|
|
|
static::assertJson($expectedJson, $message);
|
|
static::assertJson($actualJson, $message);
|
|
|
|
static::assertThat(
|
|
$actualJson,
|
|
new LogicalNot(
|
|
new JsonMatches($expectedJson)
|
|
),
|
|
$message
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Asserts that two JSON files are equal.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertJsonFileEqualsJsonFile(string $expectedFile, string $actualFile, string $message = ''): void
|
|
{
|
|
static::assertFileExists($expectedFile, $message);
|
|
static::assertFileExists($actualFile, $message);
|
|
|
|
$actualJson = \file_get_contents($actualFile);
|
|
$expectedJson = \file_get_contents($expectedFile);
|
|
|
|
static::assertJson($expectedJson, $message);
|
|
static::assertJson($actualJson, $message);
|
|
|
|
$constraintExpected = new JsonMatches(
|
|
$expectedJson
|
|
);
|
|
|
|
$constraintActual = new JsonMatches($actualJson);
|
|
|
|
static::assertThat($expectedJson, $constraintActual, $message);
|
|
static::assertThat($actualJson, $constraintExpected, $message);
|
|
}
|
|
|
|
/**
|
|
* Asserts that two JSON files are not equal.
|
|
*
|
|
* @throws ExpectationFailedException
|
|
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
|
|
*/
|
|
public static function assertJsonFileNotEqualsJsonFile(string $expectedFile, string $actualFile, string $message = ''): void
|
|
{
|
|
static::assertFileExists($expectedFile, $message);
|
|
static::assertFileExists($actualFile, $message);
|
|
|
|
$actualJson = \file_get_contents($actualFile);
|
|
$expectedJson = \file_get_contents($expectedFile);
|
|
|
|
static::assertJson($expectedJson, $message);
|
|
static::assertJson($actualJson, $message);
|
|
|
|
$constraintExpected = new JsonMatches(
|
|
$expectedJson
|
|
);
|
|
|
|
$constraintActual = new JsonMatches($actualJson);
|
|
|
|
static::assertThat($expectedJson, new LogicalNot($constraintActual), $message);
|
|
static::assertThat($actualJson, new LogicalNot($constraintExpected), $message);
|
|
}
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
public static function logicalAnd(): LogicalAnd
|
|
{
|
|
$constraints = \func_get_args();
|
|
|
|
$constraint = new LogicalAnd;
|
|
$constraint->setConstraints($constraints);
|
|
|
|
return $constraint;
|
|
}
|
|
|
|
public static function logicalOr(): LogicalOr
|
|
{
|
|
$constraints = \func_get_args();
|
|
|
|
$constraint = new LogicalOr;
|
|
$constraint->setConstraints($constraints);
|
|
|
|
return $constraint;
|
|
}
|
|
|
|
public static function logicalNot(Constraint $constraint): LogicalNot
|
|
{
|
|
return new LogicalNot($constraint);
|
|
}
|
|
|
|
public static function logicalXor(): LogicalXor
|
|
{
|
|
$constraints = \func_get_args();
|
|
|
|
$constraint = new LogicalXor;
|
|
$constraint->setConstraints($constraints);
|
|
|
|
return $constraint;
|
|
}
|
|
|
|
public static function anything(): IsAnything
|
|
{
|
|
return new IsAnything;
|
|
}
|
|
|
|
public static function isTrue(): IsTrue
|
|
{
|
|
return new IsTrue;
|
|
}
|
|
|
|
public static function callback(callable $callback): Callback
|
|
{
|
|
return new Callback($callback);
|
|
}
|
|
|
|
public static function isFalse(): IsFalse
|
|
{
|
|
return new IsFalse;
|
|
}
|
|
|
|
public static function isJson(): IsJson
|
|
{
|
|
return new IsJson;
|
|
}
|
|
|
|
public static function isNull(): IsNull
|
|
{
|
|
return new IsNull;
|
|
}
|
|
|
|
public static function isFinite(): IsFinite
|
|
{
|
|
return new IsFinite;
|
|
}
|
|
|
|
public static function isInfinite(): IsInfinite
|
|
{
|
|
return new IsInfinite;
|
|
}
|
|
|
|
public static function isNan(): IsNan
|
|
{
|
|
return new IsNan;
|
|
}
|
|
|
|
/**
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function attribute(Constraint $constraint, string $attributeName): Attribute
|
|
{
|
|
self::createWarning('attribute() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
return new Attribute($constraint, $attributeName);
|
|
}
|
|
|
|
public static function contains($value, bool $checkForObjectIdentity = true, bool $checkForNonObjectIdentity = false): TraversableContains
|
|
{
|
|
return new TraversableContains($value, $checkForObjectIdentity, $checkForNonObjectIdentity);
|
|
}
|
|
|
|
public static function containsOnly(string $type): TraversableContainsOnly
|
|
{
|
|
return new TraversableContainsOnly($type);
|
|
}
|
|
|
|
public static function containsOnlyInstancesOf(string $className): TraversableContainsOnly
|
|
{
|
|
return new TraversableContainsOnly($className, false);
|
|
}
|
|
|
|
/**
|
|
* @param int|string $key
|
|
*/
|
|
public static function arrayHasKey($key): ArrayHasKey
|
|
{
|
|
return new ArrayHasKey($key);
|
|
}
|
|
|
|
public static function equalTo($value, float $delta = 0.0, int $maxDepth = 10, bool $canonicalize = false, bool $ignoreCase = false): IsEqual
|
|
{
|
|
return new IsEqual($value, $delta, $maxDepth, $canonicalize, $ignoreCase);
|
|
}
|
|
|
|
/**
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function attributeEqualTo(string $attributeName, $value, float $delta = 0.0, int $maxDepth = 10, bool $canonicalize = false, bool $ignoreCase = false): Attribute
|
|
{
|
|
self::createWarning('attributeEqualTo() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
return static::attribute(
|
|
static::equalTo(
|
|
$value,
|
|
$delta,
|
|
$maxDepth,
|
|
$canonicalize,
|
|
$ignoreCase
|
|
),
|
|
$attributeName
|
|
);
|
|
}
|
|
|
|
public static function isEmpty(): IsEmpty
|
|
{
|
|
return new IsEmpty;
|
|
}
|
|
|
|
public static function isWritable(): IsWritable
|
|
{
|
|
return new IsWritable;
|
|
}
|
|
|
|
public static function isReadable(): IsReadable
|
|
{
|
|
return new IsReadable;
|
|
}
|
|
|
|
public static function directoryExists(): DirectoryExists
|
|
{
|
|
return new DirectoryExists;
|
|
}
|
|
|
|
public static function fileExists(): FileExists
|
|
{
|
|
return new FileExists;
|
|
}
|
|
|
|
public static function greaterThan($value): GreaterThan
|
|
{
|
|
return new GreaterThan($value);
|
|
}
|
|
|
|
public static function greaterThanOrEqual($value): LogicalOr
|
|
{
|
|
return static::logicalOr(
|
|
new IsEqual($value),
|
|
new GreaterThan($value)
|
|
);
|
|
}
|
|
|
|
public static function classHasAttribute(string $attributeName): ClassHasAttribute
|
|
{
|
|
return new ClassHasAttribute($attributeName);
|
|
}
|
|
|
|
public static function classHasStaticAttribute(string $attributeName): ClassHasStaticAttribute
|
|
{
|
|
return new ClassHasStaticAttribute($attributeName);
|
|
}
|
|
|
|
public static function objectHasAttribute($attributeName): ObjectHasAttribute
|
|
{
|
|
return new ObjectHasAttribute($attributeName);
|
|
}
|
|
|
|
public static function identicalTo($value): IsIdentical
|
|
{
|
|
return new IsIdentical($value);
|
|
}
|
|
|
|
public static function isInstanceOf(string $className): IsInstanceOf
|
|
{
|
|
return new IsInstanceOf($className);
|
|
}
|
|
|
|
public static function isType(string $type): IsType
|
|
{
|
|
return new IsType($type);
|
|
}
|
|
|
|
public static function lessThan($value): LessThan
|
|
{
|
|
return new LessThan($value);
|
|
}
|
|
|
|
public static function lessThanOrEqual($value): LogicalOr
|
|
{
|
|
return static::logicalOr(
|
|
new IsEqual($value),
|
|
new LessThan($value)
|
|
);
|
|
}
|
|
|
|
public static function matchesRegularExpression(string $pattern): RegularExpression
|
|
{
|
|
return new RegularExpression($pattern);
|
|
}
|
|
|
|
public static function matches(string $string): StringMatchesFormatDescription
|
|
{
|
|
return new StringMatchesFormatDescription($string);
|
|
}
|
|
|
|
public static function stringStartsWith($prefix): StringStartsWith
|
|
{
|
|
return new StringStartsWith($prefix);
|
|
}
|
|
|
|
public static function stringContains(string $string, bool $case = true): StringContains
|
|
{
|
|
return new StringContains($string, $case);
|
|
}
|
|
|
|
public static function stringEndsWith(string $suffix): StringEndsWith
|
|
{
|
|
return new StringEndsWith($suffix);
|
|
}
|
|
|
|
public static function countOf(int $count): Count
|
|
{
|
|
return new Count($count);
|
|
}
|
|
|
|
/**
|
|
* Fails a test with the given message.
|
|
*
|
|
* @throws AssertionFailedError
|
|
*/
|
|
public static function fail(string $message = ''): void
|
|
{
|
|
self::$count++;
|
|
|
|
throw new AssertionFailedError($message);
|
|
}
|
|
|
|
/**
|
|
* Returns the value of an attribute of a class or an object.
|
|
* This also works for attributes that are declared protected or private.
|
|
*
|
|
* @param object|string $classOrObject
|
|
*
|
|
* @throws Exception
|
|
* @throws ReflectionException
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function readAttribute($classOrObject, string $attributeName)
|
|
{
|
|
self::createWarning('readAttribute() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
if (!self::isValidClassAttributeName($attributeName)) {
|
|
throw InvalidArgumentHelper::factory(2, 'valid attribute name');
|
|
}
|
|
|
|
if (\is_string($classOrObject)) {
|
|
if (!\class_exists($classOrObject)) {
|
|
throw InvalidArgumentHelper::factory(
|
|
1,
|
|
'class name'
|
|
);
|
|
}
|
|
|
|
return static::getStaticAttribute(
|
|
$classOrObject,
|
|
$attributeName
|
|
);
|
|
}
|
|
|
|
if (\is_object($classOrObject)) {
|
|
return static::getObjectAttribute(
|
|
$classOrObject,
|
|
$attributeName
|
|
);
|
|
}
|
|
|
|
throw InvalidArgumentHelper::factory(
|
|
1,
|
|
'class name or object'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Returns the value of a static attribute.
|
|
* This also works for attributes that are declared protected or private.
|
|
*
|
|
* @throws Exception
|
|
* @throws ReflectionException
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function getStaticAttribute(string $className, string $attributeName)
|
|
{
|
|
self::createWarning('getStaticAttribute() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
if (!\class_exists($className)) {
|
|
throw InvalidArgumentHelper::factory(1, 'class name');
|
|
}
|
|
|
|
if (!self::isValidClassAttributeName($attributeName)) {
|
|
throw InvalidArgumentHelper::factory(2, 'valid attribute name');
|
|
}
|
|
|
|
$class = new ReflectionClass($className);
|
|
|
|
while ($class) {
|
|
$attributes = $class->getStaticProperties();
|
|
|
|
if (\array_key_exists($attributeName, $attributes)) {
|
|
return $attributes[$attributeName];
|
|
}
|
|
|
|
$class = $class->getParentClass();
|
|
}
|
|
|
|
throw new Exception(
|
|
\sprintf(
|
|
'Attribute "%s" not found in class.',
|
|
$attributeName
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Returns the value of an object's attribute.
|
|
* This also works for attributes that are declared protected or private.
|
|
*
|
|
* @param object $object
|
|
*
|
|
* @throws Exception
|
|
*
|
|
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/3338
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function getObjectAttribute($object, string $attributeName)
|
|
{
|
|
self::createWarning('getObjectAttribute() is deprecated and will be removed in PHPUnit 9.');
|
|
|
|
if (!\is_object($object)) {
|
|
throw InvalidArgumentHelper::factory(1, 'object');
|
|
}
|
|
|
|
if (!self::isValidClassAttributeName($attributeName)) {
|
|
throw InvalidArgumentHelper::factory(2, 'valid attribute name');
|
|
}
|
|
|
|
try {
|
|
$reflector = new ReflectionObject($object);
|
|
|
|
do {
|
|
try {
|
|
$attribute = $reflector->getProperty($attributeName);
|
|
|
|
if (!$attribute || $attribute->isPublic()) {
|
|
return $object->$attributeName;
|
|
}
|
|
|
|
$attribute->setAccessible(true);
|
|
$value = $attribute->getValue($object);
|
|
$attribute->setAccessible(false);
|
|
|
|
return $value;
|
|
} catch (ReflectionException $e) {
|
|
}
|
|
} while ($reflector = $reflector->getParentClass());
|
|
} catch (ReflectionException $e) {
|
|
}
|
|
|
|
throw new Exception(
|
|
\sprintf(
|
|
'Attribute "%s" not found in object.',
|
|
$attributeName
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Mark the test as incomplete.
|
|
*
|
|
* @throws IncompleteTestError
|
|
*/
|
|
public static function markTestIncomplete(string $message = ''): void
|
|
{
|
|
throw new IncompleteTestError($message);
|
|
}
|
|
|
|
/**
|
|
* Mark the test as skipped.
|
|
*
|
|
* @throws SkippedTestError
|
|
* @throws SyntheticSkippedError
|
|
*/
|
|
public static function markTestSkipped(string $message = ''): void
|
|
{
|
|
if ($hint = self::detectLocationHint($message)) {
|
|
$trace = \debug_backtrace(\DEBUG_BACKTRACE_IGNORE_ARGS);
|
|
\array_unshift($trace, $hint);
|
|
|
|
throw new SyntheticSkippedError($hint['message'], 0, $hint['file'], (int) $hint['line'], $trace);
|
|
}
|
|
|
|
throw new SkippedTestError($message);
|
|
}
|
|
|
|
/**
|
|
* Return the current assertion count.
|
|
*/
|
|
public static function getCount(): int
|
|
{
|
|
return self::$count;
|
|
}
|
|
|
|
/**
|
|
* Reset the assertion counter.
|
|
*/
|
|
public static function resetCount(): void
|
|
{
|
|
self::$count = 0;
|
|
}
|
|
|
|
private static function detectLocationHint(string $message): ?array
|
|
{
|
|
$hint = null;
|
|
$lines = \preg_split('/\r\n|\r|\n/', $message);
|
|
|
|
while (\strpos($lines[0], '__OFFSET') !== false) {
|
|
$offset = \explode('=', \array_shift($lines));
|
|
|
|
if ($offset[0] === '__OFFSET_FILE') {
|
|
$hint['file'] = $offset[1];
|
|
}
|
|
|
|
if ($offset[0] === '__OFFSET_LINE') {
|
|
$hint['line'] = $offset[1];
|
|
}
|
|
}
|
|
|
|
if ($hint) {
|
|
$hint['message'] = \implode(\PHP_EOL, $lines);
|
|
}
|
|
|
|
return $hint;
|
|
}
|
|
|
|
private static function isValidObjectAttributeName(string $attributeName): bool
|
|
{
|
|
return (bool) \preg_match('/[^\x00-\x1f\x7f-\x9f]+/', $attributeName);
|
|
}
|
|
|
|
private static function isValidClassAttributeName(string $attributeName): bool
|
|
{
|
|
return (bool) \preg_match('/[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/', $attributeName);
|
|
}
|
|
|
|
/**
|
|
* @codeCoverageIgnore
|
|
*/
|
|
private static function createWarning(string $warning): void
|
|
{
|
|
foreach (\debug_backtrace() as $step) {
|
|
if (isset($step['object']) && $step['object'] instanceof TestCase) {
|
|
\assert($step['object'] instanceof TestCase);
|
|
|
|
$step['object']->addWarning($warning);
|
|
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|