Skip to content

Commit

Permalink
Merge pull request #39 from Yoast/feature/assertobjectequals-minor-im…
Browse files Browse the repository at this point in the history
…provement

AssertObjectEquals: improve "not boolean return value" error message
  • Loading branch information
jrfnl committed Jun 17, 2021
2 parents 9970f5f + a70ce16 commit e92195b
Show file tree
Hide file tree
Showing 6 changed files with 76 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .phpcs.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
</rule>

<!-- These fixtures for the assertEqualObject() tests will only be loaded on PHP 7+/8+ respectively. -->
<rule ref="PHPCompatibility.FunctionDeclarations.NewReturnTypeDeclarations.boolFound">
<rule ref="PHPCompatibility.FunctionDeclarations.NewReturnTypeDeclarations">
<exclude-pattern>/tests/Polyfills/Fixtures/ChildValueObject\.php$</exclude-pattern>
<exclude-pattern>/tests/Polyfills/Fixtures/ValueObject\.php$</exclude-pattern>
<exclude-pattern>/tests/Polyfills/Fixtures/ValueObjectUnion\.php$</exclude-pattern>
Expand All @@ -155,5 +155,8 @@
<exclude-pattern>/tests/Polyfills/Fixtures/ValueObjectUnion\.php$</exclude-pattern>
<exclude-pattern>/tests/Polyfills/Fixtures/ValueObjectUnionNoReturnType\.php$</exclude-pattern>
</rule>
<rule ref="PHPCompatibility.Operators.NewOperators.t_spaceshipFound">
<exclude-pattern>/tests/Polyfills/Fixtures/ValueObject\.php$</exclude-pattern>
</rule>

</ruleset>
2 changes: 1 addition & 1 deletion src/Polyfills/AssertObjectEquals.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public static function assertObjectEquals( $expected, $actual, $method = 'equals
if ( \is_bool( $result ) === false ) {
throw new InvalidComparisonMethodException(
\sprintf(
'%s::%s() does not return a boolean value.',
'Comparison method %s::%s() does not return a boolean value.',
\get_class( $actual ),
$method
)
Expand Down
17 changes: 17 additions & 0 deletions tests/Polyfills/AssertObjectEqualsPHPUnitLt940Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,23 @@ public function testAssertObjectEqualsFailsOnMethodParamTypeMismatch() {
$this->assertObjectEquals( new stdClass(), $actual );
}

/**
* Verify that the assertObjectEquals() method throws an error when the declared return type/
* the return value is not boolean.
*
* @return void
*/
public function testAssertObjectEqualsFailsOnNonBooleanReturnValue() {
$msg = 'Comparison method Yoast\PHPUnitPolyfills\Tests\Polyfills\Fixtures\ValueObjectNoReturnType::equalsNonBooleanReturnType() does not return a boolean value.';

$this->expectException( self::COMPARATOR_EXCEPTION );
$this->expectExceptionMessage( $msg );

$expected = new ValueObjectNoReturnType( 100 );
$actual = new ValueObjectNoReturnType( 100 );
$this->assertObjectEquals( $expected, $actual, 'equalsNonBooleanReturnType' );
}

/**
* Verify that the assertObjectEquals() method fails a test when a call to method
* determines that the objects are not equal.
Expand Down
24 changes: 24 additions & 0 deletions tests/Polyfills/AssertObjectEqualsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,30 @@ public function testAssertObjectEqualsFailsOnMethodParamTypeMismatch() {
$this->assertObjectEquals( new stdClass(), $actual );
}

/**
* Verify that the assertObjectEquals() method throws an error when the declared return type/
* the return value is not boolean.
*
* @return void
*/
public function testAssertObjectEqualsFailsOnNonBooleanReturnValue() {
$msg = 'Comparison method Yoast\PHPUnitPolyfills\Tests\Polyfills\Fixtures\ValueObject::equalsNonBooleanReturnType() does not return a boolean value.';

$exception = self::COMPARATOR_EXCEPTION;
if ( \class_exists( 'PHPUnit\Framework\ComparisonMethodDoesNotDeclareBoolReturnTypeException' ) ) {
// PHPUnit > 9.4.0.
$msg = 'Comparison method Yoast\PHPUnitPolyfills\Tests\Polyfills\Fixtures\ValueObject::equalsNonBooleanReturnType() does not declare bool return type.';
$exception = 'PHPUnit\Framework\ComparisonMethodDoesNotDeclareBoolReturnTypeException';
}

$this->expectException( $exception );
$this->expectExceptionMessage( $msg );

$expected = new ValueObject( 100 );
$actual = new ValueObject( 100 );
$this->assertObjectEquals( $expected, $actual, 'equalsNonBooleanReturnType' );
}

/**
* Verify that the assertObjectEquals() method fails a test when a call to method
* determines that the objects are not equal.
Expand Down
11 changes: 11 additions & 0 deletions tests/Polyfills/Fixtures/ValueObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,15 @@ public function equalsParamNonClassType( array $other ): bool {
public function equalsParamNonExistentClassType( ClassWhichDoesntExist $other ): bool {
return ( $this->value === $other->value );
}

/**
* Comparator method: incorrectly declared - non-boolean return type/value.
*
* @param self $other Object to compare.
*
* @return bool
*/
public function equalsNonBooleanReturnType( self $other ): int {
return ( $this->value <=> $other->value );
}
}
19 changes: 19 additions & 0 deletions tests/Polyfills/Fixtures/ValueObjectNoReturnType.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,23 @@ public function equalsParamNonClassType( array $other ) {
public function equalsParamNonExistentClassType( ClassWhichDoesntExist $other ) {
return ( $this->value === $other->value );
}

/**
* Comparator method: incorrectly declared - non-boolean return type/value.
*
* @param self $other Object to compare.
*
* @return int
*/
public function equalsNonBooleanReturnType( self $other ) {
if ( $this->value === $other->value ) {
return 0;
}

if ( $this->value > $other->value ) {
return 1;
}

return -1;
}
}

0 comments on commit e92195b

Please sign in to comment.