-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PHPUnit 10.1 | AssertObjectProperty trait: polyfill the Assert::assertObject[Not]HasProperty() methods #116
Merged
jrfnl
merged 1 commit into
2.x
from
feature/phpunit-10.1-add-assertobjecthaspropertytrait
Apr 16, 2023
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
<?php | ||
|
||
namespace Yoast\PHPUnitPolyfills\Polyfills; | ||
|
||
use PHPUnit\Framework\Assert; | ||
use ReflectionObject; | ||
use TypeError; | ||
use Yoast\PHPUnitPolyfills\Autoload; | ||
|
||
/** | ||
* Polyfill the Assert::assertObjectHasProperty() and Assert::assertObjectNotHasProperty() methods, | ||
* which replace the Assert::assertObjectHasAttribute() and Assert::assertObjectNotHasAttribute() methods. | ||
* | ||
* Introduced in PHPUnit 10.1.0. | ||
* | ||
* The Assert::assertObjectHasAttribute() and Assert::assertObjectNotHasAttribute() methods | ||
* were deprecated in PHPUnit 9.6.1 and removed in PHPUnit 10.0.0. | ||
* | ||
* @link https://github.com/sebastianbergmann/phpunit/pull/5231 | ||
* | ||
* @since 2.1.0 | ||
*/ | ||
trait AssertObjectProperty { | ||
|
||
/** | ||
* Asserts that an object has a specified property. | ||
* | ||
* @param string $propertyName The name of the property. | ||
* @param object $object The object on which to check whether the property exists. | ||
* @param string $message Optional failure message to display. | ||
* | ||
* @return void | ||
* | ||
* @throws TypeError When any of the passed arguments do not meet the required type. | ||
*/ | ||
final public static function assertObjectHasProperty( $propertyName, $object, $message = '' ) { | ||
/* | ||
* Parameter input validation. | ||
* In PHPUnit this is done via PHP native type declarations. Emulating this for the polyfill, | ||
* including for those PHPUnit versions where we hand to a native PHPUnit alternative, as | ||
* otherwise the method referenced in the error message would get very confusing and inconsistent. | ||
*/ | ||
if ( \is_string( $propertyName ) === false ) { | ||
throw new TypeError( | ||
\sprintf( | ||
'Argument 1 passed to assertObjectHasProperty() must be of type string, %s given', | ||
\gettype( $propertyName ) | ||
) | ||
); | ||
} | ||
if ( \is_object( $object ) === false ) { | ||
throw new TypeError( | ||
\sprintf( | ||
'Argument 2 passed to assertObjectHasProperty() must be of type object, %s given', | ||
\gettype( $object ) | ||
) | ||
); | ||
} | ||
|
||
if ( \method_exists( Assert::class, 'assertObjectHasAttribute' ) | ||
&& \version_compare( Autoload::getPHPUnitVersion(), '9.6.0', '<=' ) | ||
) { | ||
// PHPUnit <= 9.6.0. | ||
static::assertObjectHasAttribute( $propertyName, $object, $message ); | ||
return; | ||
} | ||
|
||
/* | ||
* PHPUnit 9.6.1+ and PHPUnit 10.0.x. | ||
* Note: letting this polyfill code kick in for PHPUnit 9.6.1+ as well | ||
* to prevent the PHPUnit deprecation notice showing. | ||
*/ | ||
$msg = self::assertObjectHasPropertyFailureDescription( $object ); | ||
$msg .= \sprintf( ' has property "%s".', $propertyName ); | ||
if ( $message !== '' ) { | ||
$msg = $message . \PHP_EOL . $msg; | ||
} | ||
|
||
$hasProperty = ( new ReflectionObject( $object ) )->hasProperty( $propertyName ); | ||
static::assertTrue( $hasProperty, $msg ); | ||
} | ||
|
||
/** | ||
* Asserts that an object does not have a specified property. | ||
* | ||
* @param string $propertyName The name of the property. | ||
* @param object $object The object on which to check whether the property exists. | ||
* @param string $message Optional failure message to display. | ||
* | ||
* @return void | ||
* | ||
* @throws TypeError When any of the passed arguments do not meet the required type. | ||
*/ | ||
final public static function assertObjectNotHasProperty( $propertyName, $object, $message = '' ) { | ||
/* | ||
* Parameter input validation. | ||
* In PHPUnit this is done via PHP native type declarations. Emulating this for the polyfill, | ||
* including for those PHPUnit versions where we hand to a native PHPUnit alternative, as | ||
* otherwise the method referenced in the error message would get very confusing and inconsistent. | ||
*/ | ||
if ( \is_string( $propertyName ) === false ) { | ||
throw new TypeError( | ||
\sprintf( | ||
'Argument 1 passed to assertObjectNotHasProperty() must be of type string, %s given', | ||
\gettype( $propertyName ) | ||
) | ||
); | ||
} | ||
if ( \is_object( $object ) === false ) { | ||
throw new TypeError( | ||
\sprintf( | ||
'Argument 2 passed to assertObjectNotHasProperty() must be of type object, %s given', | ||
\gettype( $object ) | ||
) | ||
); | ||
} | ||
|
||
if ( \method_exists( Assert::class, 'assertObjectNotHasAttribute' ) | ||
&& \version_compare( Autoload::getPHPUnitVersion(), '9.6.0', '<=' ) | ||
) { | ||
// PHPUnit <= 9.6.0. | ||
static::assertObjectNotHasAttribute( $propertyName, $object, $message ); | ||
return; | ||
} | ||
|
||
/* | ||
* PHPUnit 9.6.1+ and PHPUnit 10.0.x. | ||
* Note: letting this polyfill code kick in for PHPUnit 9.6.1+ as well | ||
* to prevent the PHPUnit deprecation notice showing. | ||
*/ | ||
$msg = self::assertObjectHasPropertyFailureDescription( $object ); | ||
$msg .= \sprintf( ' does not have property "%s".', $propertyName ); | ||
if ( $message !== '' ) { | ||
$msg = $message . \PHP_EOL . $msg; | ||
} | ||
|
||
$hasProperty = ( new ReflectionObject( $object ) )->hasProperty( $propertyName ); | ||
static::assertFalse( $hasProperty, $msg ); | ||
} | ||
|
||
/** | ||
* Returns the description of the failure. | ||
* | ||
* @param object $object The object under test. | ||
* | ||
* @return string | ||
*/ | ||
private static function assertObjectHasPropertyFailureDescription( $object ) { | ||
return \sprintf( | ||
'Failed asserting that object of class "%s"', | ||
\get_class( $object ) | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
namespace Yoast\PHPUnitPolyfills\Polyfills; | ||
|
||
/** | ||
* Empty trait for use with PHPUnit >= 10.1.0 in which this polyfill is not needed. | ||
* | ||
* @since 2.1.0 | ||
*/ | ||
trait AssertObjectProperty {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wrong trait name
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ow! Thanks for catching that @garak !
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(and yes, I have fixed it locally and that commit will be included in the 2.0.0 release.)