wordpress-develop/tests/phpunit/tests/pluggable/wpRand.php
Sergey Biryukov a387dee3f9 Tests: Improve documentation and variable names in some formatting tests.
Includes documenting data provider values using hash notation in the tests for:
* `convert_smilies()`
* `get_url_in_content()`
* `links_add_target()`
* `normalize_whitespace()`

Follow-up to [26191], [26327], [26328], [26972], [55562].

See #57841.

git-svn-id: https://develop.svn.wordpress.org/trunk@55563 602fd350-edb4-49c9-b593-d223f7449a82
2023-03-19 12:51:14 +00:00

102 lines
2.1 KiB
PHP

<?php
/**
* @group pluggable
*
* @covers ::wp_rand
*/
class Tests_Pluggable_wpRand extends WP_UnitTestCase {
/**
* Tests that wp_rand() returns a non-negative integer for both positive and negative input.
*
* @ticket 55194
* @dataProvider data_wp_rand_should_return_a_non_negative_integer
*
* @param int $min Lower limit for the generated number.
* @param int $max Upper limit for the generated number.
*/
public function test_wp_rand_should_return_a_non_negative_integer( $min, $max ) {
$this->assertGreaterThanOrEqual(
0,
wp_rand( $min, $max ),
'The value was not greater than or equal to 0'
);
$this->assertLessThan(
100,
wp_rand( $min, $max ),
'The value was not less than 100'
);
}
/**
* Data provider.
*
* @return array
*/
public function data_wp_rand_should_return_a_non_negative_integer() {
return array(
'1 and 99' => array(
'min' => 1,
'max' => 99,
),
'-1 and 99' => array(
'min' => -1,
'max' => 99,
),
'1 and -99' => array(
'min' => 1,
'max' => -99,
),
'-1 and -99' => array(
'min' => -1,
'max' => -99,
),
'1.0 and 99.0' => array(
'min' => 1.0,
'max' => 99.0,
),
'-1.0 and -99.0' => array(
'min' => -1.0,
'max' => -99.0,
),
);
}
/**
* Tests that wp_rand() returns zero when `$min` and `$max` are zero.
*
* @ticket 55194
* @dataProvider data_wp_rand_should_return_zero_when_min_and_max_are_zero
*
* @param mixed $min Lower limit for the generated number.
* @param mixed $max Upper limit for the generated number.
*/
public function test_wp_rand_should_return_zero_when_min_and_max_are_zero( $min, $max ) {
$this->assertSame( 0, wp_rand( $min, $max ) );
}
/**
* Data provider.
*
* @return array
*/
public function data_wp_rand_should_return_zero_when_min_and_max_are_zero() {
return array(
'min and max as 0' => array(
'min' => 0,
'max' => 0,
),
'min and max as 0.0' => array(
'min' => 0.0,
'max' => 0.0,
),
'min as null, max as 0' => array(
'min' => null,
'max' => 0,
),
);
}
}