diff --git a/tests/phpunit/tests/db/realEscape.php b/tests/phpunit/tests/db/realEscape.php new file mode 100644 index 0000000000..393b9515c9 --- /dev/null +++ b/tests/phpunit/tests/db/realEscape.php @@ -0,0 +1,87 @@ +assertSame( $expected, $wpdb->_real_escape( $input ) ); + } + + /** + * Data provider. + * + * @var array + */ + public function data_real_escape_input_type_handling() { + return array( + 'null' => array( + 'input' => null, + 'expected' => '', + ), + 'boolean false' => array( + 'input' => false, + 'expected' => '', + ), + 'boolean true' => array( + 'input' => true, + 'expected' => '1', + ), + 'integer zero' => array( + 'input' => 0, + 'expected' => '0', + ), + 'negative integer' => array( + 'input' => -1327, + 'expected' => '-1327', + ), + 'positive integer' => array( + 'input' => 47896, + 'expected' => '47896', + ), + 'float zero' => array( + 'input' => 0.0, + 'expected' => '0', + ), + 'positive float' => array( + 'input' => 25.52, + 'expected' => '25.52', + ), + 'simple string' => array( + 'input' => 'foobar', + 'expected' => 'foobar', + ), + 'empty array' => array( + 'input' => array(), + 'expected' => '', + ), + 'non-empty array' => array( + 'input' => array( 1, 2, 3 ), + 'expected' => '', + ), + 'simple object' => array( + 'input' => new stdClass(), + 'expected' => '', + ), + ); + } +}