Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions src/Illuminate/Testing/Fluent/Concerns/Matching.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,47 @@ public function whereAll(array $bindings): self
return $this;
}

/**
* Asserts that the property is of the expected type.
*
* @param string $key
* @param string|array $expected
* @return $this
*/
public function whereType(string $key, $expected): self
{
$this->has($key);

$actual = $this->prop($key);

if (! is_array($expected)) {
$expected = explode('|', $expected);
}

PHPUnit::assertContains(
strtolower(gettype($actual)),
$expected,
sprintf('Property [%s] is not of expected type [%s].', $this->dotPath($key), implode('|', $expected))
);

return $this;
}

/**
* Asserts that all properties are of their expected types.
*
* @param array $bindings
* @return $this
*/
public function whereAllType(array $bindings): self
{
foreach ($bindings as $key => $value) {
$this->whereType($key, $value);
}

return $this;
}

/**
* Ensures that all properties are sorted the same way, recursively.
*
Expand Down
138 changes: 138 additions & 0 deletions tests/Testing/Fluent/AssertTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -704,6 +704,144 @@ public function testAssertWhereAllFailsWhenAtLeastOnePropDoesNotMatchValue()
]);
}

public function testAssertWhereTypeString()
{
$assert = AssertableJson::fromArray([
'foo' => 'bar',
]);

$assert->whereType('foo', 'string');
}

public function testAssertWhereTypeInteger()
{
$assert = AssertableJson::fromArray([
'foo' => 123,
]);

$assert->whereType('foo', 'integer');
}

public function testAssertWhereTypeBoolean()
{
$assert = AssertableJson::fromArray([
'foo' => true,
]);

$assert->whereType('foo', 'boolean');
}

public function testAssertWhereTypeDouble()
{
$assert = AssertableJson::fromArray([
'foo' => 12.3,
]);

$assert->whereType('foo', 'double');
}

public function testAssertWhereTypeArray()
{
$assert = AssertableJson::fromArray([
'foo' => ['bar', 'baz'],
'bar' => ['foo' => 'baz'],
]);

$assert->whereType('foo', 'array');
$assert->whereType('bar', 'array');
}

public function testAssertWhereTypeNull()
{
$assert = AssertableJson::fromArray([
'foo' => null,
]);

$assert->whereType('foo', 'null');
}

public function testAssertWhereAllType()
{
$assert = AssertableJson::fromArray([
'one' => 'foo',
'two' => 123,
'three' => true,
'four' => 12.3,
'five' => ['foo', 'bar'],
'six' => ['foo' => 'bar'],
'seven' => null,
]);

$assert->whereAllType([
'one' => 'string',
'two' => 'integer',
'three' => 'boolean',
'four' => 'double',
'five' => 'array',
'six' => 'array',
'seven' => 'null',
]);
}

public function testAssertWhereTypeWhenWrongTypeIsGiven()
{
$assert = AssertableJson::fromArray([
'foo' => 'bar',
]);

$this->expectException(AssertionFailedError::class);
$this->expectExceptionMessage('Property [foo] is not of expected type [integer].');

$assert->whereType('foo', 'integer');
}

public function testAssertWhereTypeWithUnionTypes()
{
$firstAssert = AssertableJson::fromArray([
'foo' => 'bar',
]);

$secondAssert = AssertableJson::fromArray([
'foo' => null,
]);

$firstAssert->whereType('foo', ['string', 'null']);
$secondAssert->whereType('foo', ['string', 'null']);
}

public function testAssertWhereTypeWhenWrongUnionTypeIsGiven()
{
$assert = AssertableJson::fromArray([
'foo' => 123,
]);

$this->expectException(AssertionFailedError::class);
$this->expectExceptionMessage('Property [foo] is not of expected type [string|null].');

$assert->whereType('foo', ['string', 'null']);
}

public function testAssertWhereTypeWithPipeInUnionType()
{
$assert = AssertableJson::fromArray([
'foo' => 'bar',
]);

$assert->whereType('foo', 'string|null');
}

public function testAssertWhereTypeWithPipeInWrongUnionType()
{
$assert = AssertableJson::fromArray([
'foo' => 'bar',
]);

$this->expectException(AssertionFailedError::class);
$this->expectExceptionMessage('Property [foo] is not of expected type [integer|null].');

$assert->whereType('foo', 'integer|null');
}

public function testAssertHasAll()
{
$assert = AssertableJson::fromArray([
Expand Down