mirror of
https://github.com/pestphp/pest.git
synced 2026-03-07 00:07:22 +01:00
Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1680613e12 | |||
| f6d3ce41bc | |||
| d16a48bf0f | |||
| 9459ce4030 | |||
| c773d1cd57 | |||
| 22a1aac84a | |||
| 3a20696da4 | |||
| 99bcf98617 | |||
| 09d9bae988 | |||
| 27de6106ab | |||
| aeded0a356 | |||
| afef1d56e8 | |||
| 4b55de27f1 | |||
| 3d7b6426a1 | |||
| 1d415eb7fb | |||
| 8a384a6d65 | |||
| 7c4dd2f2e7 | |||
| b6f0496c3c | |||
| d96a2485b6 | |||
| 9e9d1cc8cc | |||
| 579bb1b90c | |||
| 7ff64540a6 | |||
| 241d4cf94c |
3
.github/FUNDING.yml
vendored
3
.github/FUNDING.yml
vendored
@ -1,5 +1,4 @@
|
|||||||
# These are supported funding model platforms
|
# These are supported funding model platforms
|
||||||
|
|
||||||
github: [nunomaduro,owenvoke,olivernybroe,octoper]
|
github: [nunomaduro,owenvoke,olivernybroe,octoper,lukeraymonddowning]
|
||||||
patreon: nunomaduro
|
patreon: nunomaduro
|
||||||
custom: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L
|
|
||||||
|
|||||||
@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
## [v1.7.0 (2021-06-19)](https://github.com/pestphp/pest/compare/v1.6.0...v1.7.0)
|
||||||
|
### Added
|
||||||
|
- Support for non-callable values in the sequence method, which will be passed as `toEqual` ([#323](https://github.com/pestphp/pest/pull/323))
|
||||||
|
- Support for nested Higher Order Expectations ([#324](https://github.com/pestphp/pest/pull/324))
|
||||||
|
|
||||||
## [v1.6.0 (2021-06-18)](https://github.com/pestphp/pest/compare/v1.5.0...v1.6.0)
|
## [v1.6.0 (2021-06-18)](https://github.com/pestphp/pest/compare/v1.5.0...v1.6.0)
|
||||||
### Added
|
### Added
|
||||||
- Adds a new `json` expectation method to improve testing with JSON strings ([#325](https://github.com/pestphp/pest/pull/325))
|
- Adds a new `json` expectation method to improve testing with JSON strings ([#325](https://github.com/pestphp/pest/pull/325))
|
||||||
|
|||||||
@ -7,6 +7,7 @@ parameters:
|
|||||||
level: max
|
level: max
|
||||||
paths:
|
paths:
|
||||||
- src
|
- src
|
||||||
|
- scripts
|
||||||
|
|
||||||
checkMissingIterableValueType: true
|
checkMissingIterableValueType: true
|
||||||
checkGenericClassInNonGenericObjectType: false
|
checkGenericClassInNonGenericObjectType: false
|
||||||
|
|||||||
@ -15,6 +15,7 @@ $globalsFilePath = implode(DIRECTORY_SEPARATOR, [
|
|||||||
|
|
||||||
$compiledFilePath = implode(DIRECTORY_SEPARATOR, [dirname(__DIR__), 'compiled', 'globals.php']);
|
$compiledFilePath = implode(DIRECTORY_SEPARATOR, [dirname(__DIR__), 'compiled', 'globals.php']);
|
||||||
|
|
||||||
|
/* @phpstan-ignore-next-line */
|
||||||
@unlink($compiledFilePath);
|
@unlink($compiledFilePath);
|
||||||
|
|
||||||
$replace = function ($contents, $string, $by) {
|
$replace = function ($contents, $string, $by) {
|
||||||
|
|||||||
@ -12,9 +12,13 @@ use Pest\Expectation;
|
|||||||
trait Expectable
|
trait Expectable
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
* @template TValue
|
||||||
|
*
|
||||||
* Creates a new expectation.
|
* Creates a new expectation.
|
||||||
*
|
*
|
||||||
* @param mixed $value
|
* @param TValue $value
|
||||||
|
*
|
||||||
|
* @return Expectation<TValue>
|
||||||
*/
|
*/
|
||||||
public function expect($value): Expectation
|
public function expect($value): Expectation
|
||||||
{
|
{
|
||||||
|
|||||||
@ -4,8 +4,8 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace Pest\Concerns;
|
namespace Pest\Concerns;
|
||||||
|
|
||||||
|
use BadMethodCallException;
|
||||||
use Closure;
|
use Closure;
|
||||||
use Pest\HigherOrderExpectation;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @internal
|
* @internal
|
||||||
@ -43,7 +43,7 @@ trait Extendable
|
|||||||
public function __call(string $method, array $parameters)
|
public function __call(string $method, array $parameters)
|
||||||
{
|
{
|
||||||
if (!static::hasExtend($method)) {
|
if (!static::hasExtend($method)) {
|
||||||
return new HigherOrderExpectation($this, $method, $parameters);
|
throw new BadMethodCallException("$method is not a callable method name.");
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @var Closure $extend */
|
/** @var Closure $extend */
|
||||||
|
|||||||
31
src/Concerns/RetrievesValues.php
Normal file
31
src/Concerns/RetrievesValues.php
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Pest\Concerns;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @internal
|
||||||
|
*/
|
||||||
|
trait RetrievesValues
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @template TRetrievableValue
|
||||||
|
*
|
||||||
|
* Safely retrieve the value at the given key from an object or array.
|
||||||
|
*
|
||||||
|
* @param array<string, TRetrievableValue>|object $value
|
||||||
|
* @param TRetrievableValue|null $default
|
||||||
|
*
|
||||||
|
* @return TRetrievableValue|null
|
||||||
|
*/
|
||||||
|
private function retrieve(string $key, $value, $default = null)
|
||||||
|
{
|
||||||
|
if (is_array($value)) {
|
||||||
|
return $value[$key] ?? $default;
|
||||||
|
}
|
||||||
|
|
||||||
|
// @phpstan-ignore-next-line
|
||||||
|
return $value->$key ?? $default;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -6,6 +6,7 @@ namespace Pest;
|
|||||||
|
|
||||||
use BadMethodCallException;
|
use BadMethodCallException;
|
||||||
use Pest\Concerns\Extendable;
|
use Pest\Concerns\Extendable;
|
||||||
|
use Pest\Concerns\RetrievesValues;
|
||||||
use Pest\Support\Arr;
|
use Pest\Support\Arr;
|
||||||
use PHPUnit\Framework\Assert;
|
use PHPUnit\Framework\Assert;
|
||||||
use PHPUnit\Framework\Constraint\Constraint;
|
use PHPUnit\Framework\Constraint\Constraint;
|
||||||
@ -15,12 +16,17 @@ use SebastianBergmann\Exporter\Exporter;
|
|||||||
/**
|
/**
|
||||||
* @internal
|
* @internal
|
||||||
*
|
*
|
||||||
|
* @template TValue
|
||||||
|
*
|
||||||
* @property Expectation $not Creates the opposite expectation.
|
* @property Expectation $not Creates the opposite expectation.
|
||||||
* @property Each $each Creates an expectation on each element on the traversable value.
|
* @property Each $each Creates an expectation on each element on the traversable value.
|
||||||
*/
|
*/
|
||||||
final class Expectation
|
final class Expectation
|
||||||
{
|
{
|
||||||
use Extendable;
|
use Extendable {
|
||||||
|
__call as __extendsCall;
|
||||||
|
}
|
||||||
|
use RetrievesValues;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The expectation value.
|
* The expectation value.
|
||||||
@ -43,7 +49,7 @@ final class Expectation
|
|||||||
/**
|
/**
|
||||||
* Creates a new expectation.
|
* Creates a new expectation.
|
||||||
*
|
*
|
||||||
* @param mixed $value
|
* @param TValue $value
|
||||||
*/
|
*/
|
||||||
public function __construct($value)
|
public function __construct($value)
|
||||||
{
|
{
|
||||||
@ -53,7 +59,9 @@ final class Expectation
|
|||||||
/**
|
/**
|
||||||
* Creates a new expectation.
|
* Creates a new expectation.
|
||||||
*
|
*
|
||||||
* @param mixed $value
|
* @param TValue $value
|
||||||
|
*
|
||||||
|
* @return Expectation<TValue>
|
||||||
*/
|
*/
|
||||||
public function and($value): Expectation
|
public function and($value): Expectation
|
||||||
{
|
{
|
||||||
@ -120,7 +128,7 @@ final class Expectation
|
|||||||
|
|
||||||
if (is_callable($callback)) {
|
if (is_callable($callback)) {
|
||||||
foreach ($this->value as $item) {
|
foreach ($this->value as $item) {
|
||||||
$callback(expect($item));
|
$callback(new self($item));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -129,8 +137,12 @@ final class Expectation
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Allows you to specify a sequential set of expectations for each item in a iterable "value".
|
* Allows you to specify a sequential set of expectations for each item in a iterable "value".
|
||||||
|
*
|
||||||
|
* @template TSequenceValue
|
||||||
|
*
|
||||||
|
* @param callable(self, self): void|TSequenceValue ...$callbacks
|
||||||
*/
|
*/
|
||||||
public function sequence(callable ...$callbacks): Expectation
|
public function sequence(...$callbacks): Expectation
|
||||||
{
|
{
|
||||||
if (!is_iterable($this->value)) {
|
if (!is_iterable($this->value)) {
|
||||||
throw new BadMethodCallException('Expectation value is not iterable.');
|
throw new BadMethodCallException('Expectation value is not iterable.');
|
||||||
@ -148,7 +160,12 @@ final class Expectation
|
|||||||
}
|
}
|
||||||
|
|
||||||
foreach ($values as $key => $item) {
|
foreach ($values as $key => $item) {
|
||||||
call_user_func($callbacks[$key], expect($item), expect($keys[$key]));
|
if (is_callable($callbacks[$key])) {
|
||||||
|
call_user_func($callbacks[$key], new self($item), new self($keys[$key]));
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
(new self($item))->toEqual($callbacks[$key]);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
@ -712,6 +729,24 @@ final class Expectation
|
|||||||
return $this->exporter->export($value);
|
return $this->exporter->export($value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dynamically handle calls to the class or
|
||||||
|
* creates a new higher order expectation.
|
||||||
|
*
|
||||||
|
* @param array<int, mixed> $parameters
|
||||||
|
*
|
||||||
|
* @return HigherOrderExpectation|mixed
|
||||||
|
*/
|
||||||
|
public function __call(string $method, array $parameters)
|
||||||
|
{
|
||||||
|
if (!static::hasExtend($method)) {
|
||||||
|
/* @phpstan-ignore-next-line */
|
||||||
|
return new HigherOrderExpectation($this, $this->value->$method(...$parameters));
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->__extendsCall($method, $parameters);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Dynamically calls methods on the class without any arguments
|
* Dynamically calls methods on the class without any arguments
|
||||||
* or creates a new higher order expectation.
|
* or creates a new higher order expectation.
|
||||||
@ -721,7 +756,7 @@ final class Expectation
|
|||||||
public function __get(string $name)
|
public function __get(string $name)
|
||||||
{
|
{
|
||||||
if (!method_exists($this, $name) && !static::hasExtend($name)) {
|
if (!method_exists($this, $name) && !static::hasExtend($name)) {
|
||||||
return new HigherOrderExpectation($this, $name);
|
return new HigherOrderExpectation($this, $this->retrieve($name, $this->value));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* @phpstan-ignore-next-line */
|
/* @phpstan-ignore-next-line */
|
||||||
|
|||||||
@ -5,6 +5,7 @@ declare(strict_types=1);
|
|||||||
namespace Pest;
|
namespace Pest;
|
||||||
|
|
||||||
use Pest\Concerns\Expectable;
|
use Pest\Concerns\Expectable;
|
||||||
|
use Pest\Concerns\RetrievesValues;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @internal
|
* @internal
|
||||||
@ -14,6 +15,7 @@ use Pest\Concerns\Expectable;
|
|||||||
final class HigherOrderExpectation
|
final class HigherOrderExpectation
|
||||||
{
|
{
|
||||||
use Expectable;
|
use Expectable;
|
||||||
|
use RetrievesValues;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var Expectation
|
* @var Expectation
|
||||||
@ -30,6 +32,11 @@ final class HigherOrderExpectation
|
|||||||
*/
|
*/
|
||||||
private $opposite = false;
|
private $opposite = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
private $shouldReset = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
@ -38,45 +45,12 @@ final class HigherOrderExpectation
|
|||||||
/**
|
/**
|
||||||
* Creates a new higher order expectation.
|
* Creates a new higher order expectation.
|
||||||
*
|
*
|
||||||
* @param array<int|string, mixed>|null $parameters
|
* @param mixed $value
|
||||||
* @phpstan-ignore-next-line
|
|
||||||
*/
|
*/
|
||||||
public function __construct(Expectation $original, string $name, ?array $parameters = null)
|
public function __construct(Expectation $original, $value)
|
||||||
{
|
{
|
||||||
$this->original = $original;
|
$this->original = $original;
|
||||||
$this->name = $name;
|
$this->expectation = $this->expect($value);
|
||||||
|
|
||||||
$this->expectation = $this->expect(
|
|
||||||
is_null($parameters) ? $this->getPropertyValue() : $this->getMethodValue($parameters)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Retrieves the property value from the original expectation.
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
private function getPropertyValue()
|
|
||||||
{
|
|
||||||
if (is_array($this->original->value)) {
|
|
||||||
return $this->original->value[$this->name];
|
|
||||||
}
|
|
||||||
|
|
||||||
// @phpstan-ignore-next-line
|
|
||||||
return $this->original->value->{$this->name};
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Retrieves the value of the method from the original expectation.
|
|
||||||
*
|
|
||||||
* @param array<int|string, mixed> $arguments
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
private function getMethodValue(array $arguments)
|
|
||||||
{
|
|
||||||
// @phpstan-ignore-next-line
|
|
||||||
return $this->original->value->{$this->name}(...$arguments);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -92,12 +66,13 @@ final class HigherOrderExpectation
|
|||||||
/**
|
/**
|
||||||
* Dynamically calls methods on the class with the given arguments.
|
* Dynamically calls methods on the class with the given arguments.
|
||||||
*
|
*
|
||||||
* @param array<int|string, mixed> $arguments
|
* @param array<int, mixed> $arguments
|
||||||
*/
|
*/
|
||||||
public function __call(string $name, array $arguments): self
|
public function __call(string $name, array $arguments): self
|
||||||
{
|
{
|
||||||
if (!$this->originalHasMethod($name)) {
|
if (!$this->expectationHasMethod($name)) {
|
||||||
return new self($this->original, $name, $arguments);
|
/* @phpstan-ignore-next-line */
|
||||||
|
return new self($this->original, $this->getValue()->$name(...$arguments));
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->performAssertion($name, $arguments);
|
return $this->performAssertion($name, $arguments);
|
||||||
@ -112,8 +87,8 @@ final class HigherOrderExpectation
|
|||||||
return $this->not();
|
return $this->not();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$this->originalHasMethod($name)) {
|
if (!$this->expectationHasMethod($name)) {
|
||||||
return new self($this->original, $name);
|
return new self($this->original, $this->retrieve($name, $this->getValue()));
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->performAssertion($name, []);
|
return $this->performAssertion($name, []);
|
||||||
@ -122,25 +97,33 @@ final class HigherOrderExpectation
|
|||||||
/**
|
/**
|
||||||
* Determines if the original expectation has the given method name.
|
* Determines if the original expectation has the given method name.
|
||||||
*/
|
*/
|
||||||
private function originalHasMethod(string $name): bool
|
private function expectationHasMethod(string $name): bool
|
||||||
{
|
{
|
||||||
return method_exists($this->original, $name) || $this->original::hasExtend($name);
|
return method_exists($this->original, $name) || $this->original::hasExtend($name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve the applicable value based on the current reset condition.
|
||||||
|
*
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
private function getValue()
|
||||||
|
{
|
||||||
|
return $this->shouldReset ? $this->original->value : $this->expectation->value;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Performs the given assertion with the current expectation.
|
* Performs the given assertion with the current expectation.
|
||||||
*
|
*
|
||||||
* @param array<int|string, mixed> $arguments
|
* @param array<int, mixed> $arguments
|
||||||
*/
|
*/
|
||||||
private function performAssertion(string $name, array $arguments): self
|
private function performAssertion(string $name, array $arguments): self
|
||||||
{
|
{
|
||||||
$expectation = $this->opposite
|
/* @phpstan-ignore-next-line */
|
||||||
? $this->expectation->not()
|
$this->expectation = ($this->opposite ? $this->expectation->not() : $this->expectation)->{$name}(...$arguments);
|
||||||
: $this->expectation;
|
|
||||||
|
|
||||||
$this->expectation = $expectation->{$name}(...$arguments); // @phpstan-ignore-line
|
|
||||||
|
|
||||||
$this->opposite = false;
|
$this->opposite = false;
|
||||||
|
$this->shouldReset = true;
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,7 +6,7 @@ namespace Pest;
|
|||||||
|
|
||||||
function version(): string
|
function version(): string
|
||||||
{
|
{
|
||||||
return '1.6.0';
|
return '1.7.0';
|
||||||
}
|
}
|
||||||
|
|
||||||
function testDirectory(string $file = ''): string
|
function testDirectory(string $file = ''): string
|
||||||
|
|||||||
@ -111,9 +111,11 @@
|
|||||||
✓ it works inside of each
|
✓ it works inside of each
|
||||||
✓ it works with sequence
|
✓ it works with sequence
|
||||||
✓ it can compose complex expectations
|
✓ it can compose complex expectations
|
||||||
|
✓ it can handle nested method calls
|
||||||
|
|
||||||
PASS Tests\Features\Expect\HigherOrder\methodsAndProperties
|
PASS Tests\Features\Expect\HigherOrder\methodsAndProperties
|
||||||
✓ it can access methods and properties
|
✓ it can access methods and properties
|
||||||
|
✓ it can handle nested methods and properties
|
||||||
|
|
||||||
PASS Tests\Features\Expect\HigherOrder\properties
|
PASS Tests\Features\Expect\HigherOrder\properties
|
||||||
✓ it allows properties to be accessed from the value
|
✓ it allows properties to be accessed from the value
|
||||||
@ -124,6 +126,7 @@
|
|||||||
✓ it works with sequence
|
✓ it works with sequence
|
||||||
✓ it can compose complex expectations
|
✓ it can compose complex expectations
|
||||||
✓ it works with objects
|
✓ it works with objects
|
||||||
|
✓ it works with nested properties
|
||||||
|
|
||||||
PASS Tests\Features\Expect\each
|
PASS Tests\Features\Expect\each
|
||||||
✓ an exception is thrown if the the type is not iterable
|
✓ an exception is thrown if the the type is not iterable
|
||||||
@ -156,6 +159,8 @@
|
|||||||
✓ loops back to the start if it runs out of sequence items
|
✓ loops back to the start if it runs out of sequence items
|
||||||
✓ it works if the number of items in the iterable is smaller than the number of expectations
|
✓ it works if the number of items in the iterable is smaller than the number of expectations
|
||||||
✓ it works with associative arrays
|
✓ it works with associative arrays
|
||||||
|
✓ it can be passed non-callable values
|
||||||
|
✓ it can be passed a mixture of value types
|
||||||
|
|
||||||
PASS Tests\Features\Expect\toBe
|
PASS Tests\Features\Expect\toBe
|
||||||
✓ strict comparisons
|
✓ strict comparisons
|
||||||
@ -573,5 +578,5 @@
|
|||||||
✓ it is a test
|
✓ it is a test
|
||||||
✓ it uses correct parent class
|
✓ it uses correct parent class
|
||||||
|
|
||||||
Tests: 4 incompleted, 7 skipped, 357 passed
|
Tests: 4 incompleted, 7 skipped, 362 passed
|
||||||
|
|
||||||
@ -59,6 +59,14 @@ it('can compose complex expectations', function () {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('can handle nested method calls', function () {
|
||||||
|
expect(new HasMethods())
|
||||||
|
->newInstance()->newInstance()->name()->toEqual('Has Methods')->toBeString()
|
||||||
|
->newInstance()->name()->toEqual('Has Methods')->not->toBeInt
|
||||||
|
->name()->toEqual('Has Methods')
|
||||||
|
->books()->each->toBeArray();
|
||||||
|
});
|
||||||
|
|
||||||
class HasMethods
|
class HasMethods
|
||||||
{
|
{
|
||||||
public function name()
|
public function name()
|
||||||
@ -97,4 +105,9 @@ class HasMethods
|
|||||||
],
|
],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function newInstance()
|
||||||
|
{
|
||||||
|
return new static();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -14,10 +14,20 @@ it('can access methods and properties', function () {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('can handle nested methods and properties', function () {
|
||||||
|
expect(new HasMethodsAndProperties())
|
||||||
|
->meta->foo->bar->toBeString()->toEqual('baz')->not->toBeInt
|
||||||
|
->newInstance()->meta->foo->toBeArray()
|
||||||
|
->newInstance()->multiply(2, 2)->toEqual(4)->not->toEqual(5)
|
||||||
|
->newInstance()->books()->toBeArray();
|
||||||
|
});
|
||||||
|
|
||||||
class HasMethodsAndProperties
|
class HasMethodsAndProperties
|
||||||
{
|
{
|
||||||
public $name = 'Has Methods and Properties';
|
public $name = 'Has Methods and Properties';
|
||||||
|
|
||||||
|
public $meta = ['foo' => ['bar' => 'baz']];
|
||||||
|
|
||||||
public $posts = [
|
public $posts = [
|
||||||
[
|
[
|
||||||
'is_published' => true,
|
'is_published' => true,
|
||||||
@ -47,4 +57,9 @@ class HasMethodsAndProperties
|
|||||||
{
|
{
|
||||||
return $x * $y;
|
return $x * $y;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function newInstance()
|
||||||
|
{
|
||||||
|
return new static();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -58,6 +58,12 @@ it('works with objects', function () {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('works with nested properties', function () {
|
||||||
|
expect(new HasProperties())
|
||||||
|
->nested->foo->bar->toBeString()->toEqual('baz')
|
||||||
|
->posts->toBeArray()->toHaveCount(2);
|
||||||
|
});
|
||||||
|
|
||||||
class HasProperties
|
class HasProperties
|
||||||
{
|
{
|
||||||
public $name = 'foo';
|
public $name = 'foo';
|
||||||
@ -72,4 +78,8 @@ class HasProperties
|
|||||||
'title' => 'Bar',
|
'title' => 'Bar',
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|
||||||
|
public $nested = [
|
||||||
|
'foo' => ['bar' => 'baz'],
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@ -44,3 +44,19 @@ test('it works with associative arrays', function () {
|
|||||||
function ($expectation, $key) { $expectation->toEqual('boom'); $key->toEqual('baz'); },
|
function ($expectation, $key) { $expectation->toEqual('boom'); $key->toEqual('baz'); },
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('it can be passed non-callable values', function () {
|
||||||
|
expect(['foo', 'bar', 'baz'])->sequence('foo', 'bar', 'baz');
|
||||||
|
|
||||||
|
expect(static::getCount())->toBe(3);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('it can be passed a mixture of value types', function () {
|
||||||
|
expect(['foo', 'bar', 'baz'])->sequence(
|
||||||
|
'foo',
|
||||||
|
function ($expectation) { $expectation->toEqual('bar')->toBeString(); },
|
||||||
|
'baz'
|
||||||
|
);
|
||||||
|
|
||||||
|
expect(static::getCount())->toBe(4);
|
||||||
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user