General: Improve unit tests for wp_unique_id_from_values().
Some checks failed
Cleanup Pull Requests / Clean up pull requests (push) Has been cancelled
Coding Standards / PHP coding standards (push) Has been cancelled
Coding Standards / JavaScript coding standards (push) Has been cancelled
Coding Standards / Slack Notifications (push) Has been cancelled
Coding Standards / Failed workflow tasks (push) Has been cancelled
End-to-end Tests / Test with SCRIPT_DEBUG disabled (push) Has been cancelled
End-to-end Tests / Test with SCRIPT_DEBUG enabled (push) Has been cancelled
End-to-end Tests / Slack Notifications (push) Has been cancelled
End-to-end Tests / Failed workflow tasks (push) Has been cancelled
JavaScript Tests / QUnit Tests (push) Has been cancelled
JavaScript Tests / Slack Notifications (push) Has been cancelled
JavaScript Tests / Failed workflow tasks (push) Has been cancelled
Performance Tests / Determine Matrix (push) Has been cancelled
Performance Tests / ${{ matrix.multisite && 'Multisite' || 'Single Site' }} ${{ matrix.memcached && 'Memcached' || 'Default' }} (push) Has been cancelled
Performance Tests / Compare (push) Has been cancelled
Performance Tests / Slack Notifications (push) Has been cancelled
Performance Tests / Failed workflow tasks (push) Has been cancelled
PHP Compatibility / Check PHP compatibility (push) Has been cancelled
PHP Compatibility / Slack Notifications (push) Has been cancelled
PHP Compatibility / Failed workflow tasks (push) Has been cancelled
PHPUnit Tests / PHP 7.2 (push) Has been cancelled
PHPUnit Tests / PHP 7.3 (push) Has been cancelled
PHPUnit Tests / PHP 7.4 (push) Has been cancelled
PHPUnit Tests / PHP 8.0 (push) Has been cancelled
PHPUnit Tests / PHP 8.1 (push) Has been cancelled
PHPUnit Tests / PHP 8.2 (push) Has been cancelled
PHPUnit Tests / PHP 8.3 (push) Has been cancelled
PHPUnit Tests / PHP 8.4 (push) Has been cancelled
PHPUnit Tests / html-api-html5lib-tests (push) Has been cancelled
PHPUnit Tests / Slack Notifications (push) Has been cancelled
PHPUnit Tests / Failed workflow tasks (push) Has been cancelled
Test Build Processes / Core running from build (push) Has been cancelled
Test Build Processes / Core running from src (push) Has been cancelled
Test Build Processes / Gutenberg running from build (push) Has been cancelled
Test Build Processes / Gutenberg running from src (push) Has been cancelled
Test Build Processes / Slack Notifications (push) Has been cancelled
Test Build Processes / Failed workflow tasks (push) Has been cancelled

This is a follow-up to [60038], which updates the PHPUnit tests to account for different systems producing potentially different hashes due to platform specific floating point precision settings.

Props debarghyabanerjee, joemcgill, peterwilsoncc, siliconforks.
Fixes #63175.


git-svn-id: https://develop.svn.wordpress.org/trunk@60113 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Joe McGill 2025-04-01 01:31:13 +00:00
parent 3998c85e88
commit c90b212240

View File

@ -12,6 +12,13 @@
*/
class Tests_Functions_WpUniqueIdFromValues extends WP_UnitTestCase {
/**
* Prefix used for testing.
*
* @var string
*/
private $prefix = 'my-prefix-';
/**
* Test that the function returns consistent ids for the passed params.
*
@ -21,11 +28,44 @@ class Tests_Functions_WpUniqueIdFromValues extends WP_UnitTestCase {
*
* @since 6.8.0
*/
public function test_wp_unique_id_from_values( $expected, $data, $prefix ) {
$output1 = wp_unique_id_from_values( $data );
$output2 = wp_unique_id_from_values( $data, $prefix );
$this->assertSame( $expected, $output1 );
$this->assertSame( $prefix . $expected, $output2 );
public function test_wp_unique_id_from_values( $data ) {
// Generate IDs.
$unique_id_original = wp_unique_id_from_values( $data );
$unique_id_prefixed = wp_unique_id_from_values( $data, $this->prefix );
// Ensure that the same input produces the same ID.
$this->assertSame( $unique_id_original, wp_unique_id_from_values( $data ) );
$this->assertSame( $unique_id_prefixed, wp_unique_id_from_values( $data, $this->prefix ) );
// Ensure that the prefixed ID is the prefix + the original ID.
$this->assertSame( $this->prefix . $unique_id_original, $unique_id_prefixed );
}
/**
* Test that different input data generates distinct IDs.
*
* @ticket 62985
*
* @dataProvider data_wp_unique_id_from_values
*
* @since 6.8.0
*/
public function test_wp_unique_id_from_values_uniqueness( $data ) {
// Generate IDs.
$unique_id_original = wp_unique_id_from_values( $data );
$unique_id_prefixed = wp_unique_id_from_values( $data, $this->prefix );
// Modify the data slightly to generate a different ID.
$data_modified = $data;
$data_modified['value'] = 'modified';
// Generate new IDs with the modified data.
$unique_id_modified = wp_unique_id_from_values( $data_modified );
$unique_id_prefixed_modified = wp_unique_id_from_values( $data_modified, $this->prefix );
// Assert that the IDs for different data are distinct.
$this->assertNotSame( $unique_id_original, $unique_id_modified );
$this->assertNotSame( $unique_id_prefixed, $unique_id_prefixed_modified );
}
/**
@ -35,51 +75,14 @@ class Tests_Functions_WpUniqueIdFromValues extends WP_UnitTestCase {
*/
public function data_wp_unique_id_from_values() {
return array(
'string' => array(
'expected' => '469f5989',
'data' => array(
'value' => 'text',
),
'prefix' => 'my-prefix-',
),
'integer' => array(
'expected' => 'b2f0842e',
'data' => array(
'value' => 123,
),
'prefix' => 'my-prefix-',
),
'float' => array(
'expected' => 'a756f54d',
'data' => array(
'value' => 1.23,
),
'prefix' => 'my-prefix-',
),
'boolean' => array(
'expected' => 'bdae8be3',
'data' => array(
'value' => true,
),
'prefix' => 'my-prefix-',
),
'object' => array(
'expected' => '477bd670',
'data' => array(
'value' => new StdClass(),
),
'prefix' => 'my-prefix-',
),
'null' => array(
'expected' => 'a860dd95',
'data' => array(
'value' => null,
),
'prefix' => 'my-prefix-',
),
'string' => array( array( 'value' => 'text' ) ),
'integer' => array( array( 'value' => 123 ) ),
'float' => array( array( 'value' => 1.23 ) ),
'boolean' => array( array( 'value' => true ) ),
'object' => array( array( 'value' => new StdClass() ) ),
'null' => array( array( 'value' => null ) ),
'multiple values' => array(
'expected' => 'ef258a5d',
'data' => array(
array(
'value1' => 'text',
'value2' => 123,
'value3' => 1.23,
@ -87,11 +90,9 @@ class Tests_Functions_WpUniqueIdFromValues extends WP_UnitTestCase {
'value5' => new StdClass(),
'value6' => null,
),
'prefix' => 'my-prefix-',
),
'nested arrays' => array(
'expected' => '4345cae5',
'data' => array(
array(
'list1' => array(
'value1' => 'text',
'value2' => 123,
@ -103,7 +104,6 @@ class Tests_Functions_WpUniqueIdFromValues extends WP_UnitTestCase {
'value6' => null,
),
),
'prefix' => 'my-prefix-',
),
);
}
@ -118,7 +118,7 @@ class Tests_Functions_WpUniqueIdFromValues extends WP_UnitTestCase {
* @since 6.8.0
*/
public function test_wp_unique_id_from_values_empty_array() {
wp_unique_id_from_values( array(), 'my-prefix-' );
wp_unique_id_from_values( array(), $this->prefix );
}
/**
@ -130,43 +130,25 @@ class Tests_Functions_WpUniqueIdFromValues extends WP_UnitTestCase {
*
* @since 6.8.0
*/
public function test_wp_unique_id_from_values_invalid_data( $data, $prefix ) {
public function test_wp_unique_id_from_values_invalid_data( $data ) {
$this->expectException( TypeError::class );
wp_unique_id_from_values( $data, $prefix );
wp_unique_id_from_values( $data, $this->prefix );
}
/**
* Data provider.
* Data provider for invalid data tests.
*
* @return array[]
*/
public function data_wp_unique_id_from_values_invalid_data() {
return array(
'string' => array(
'data' => 'text',
'prefix' => '',
),
'integer' => array(
'data' => 123,
'prefix' => '',
),
'float' => array(
'data' => 1.23,
'prefix' => '',
),
'boolean' => array(
'data' => true,
'prefix' => '',
),
'object' => array(
'data' => new StdClass(),
'prefix' => '',
),
'null' => array(
'data' => null,
'prefix' => '',
),
'string' => array( 'text' ),
'integer' => array( 123 ),
'float' => array( 1.23 ),
'boolean' => array( true ),
'object' => array( new StdClass() ),
'null' => array( null ),
);
}
}