wordpress-develop/tests/phpunit/tests/formatting/Utf8UriEncode.php
Gary Pendergast 8f95800d52 Code is Poetry.
WordPress' code just... wasn't.
This is now dealt with.

Props jrf, pento, netweb, GaryJ, jdgrimes, westonruter, Greg Sherwood from PHPCS, and everyone who's ever contributed to WPCS and PHPCS.
Fixes #41057.



git-svn-id: https://develop.svn.wordpress.org/trunk@42343 602fd350-edb4-49c9-b593-d223f7449a82
2017-11-30 23:09:33 +00:00

37 lines
982 B
PHP

<?php
/**
* @group formatting
*/
class Tests_Formatting_Utf8UriEncode extends WP_UnitTestCase {
/**
* Non-ASCII UTF-8 characters should be percent encoded. Spaces etc.
* are dealt with elsewhere.
*
* @dataProvider data
*/
function test_percent_encodes_non_reserved_characters( $utf8, $urlencoded ) {
$this->assertEquals( $urlencoded, utf8_uri_encode( $utf8 ) );
}
/**
* @dataProvider data
*/
function test_output_is_not_longer_than_optional_length_argument( $utf8, $unused_for_this_test ) {
$max_length = 30;
$this->assertTrue( strlen( utf8_uri_encode( $utf8, $max_length ) ) <= $max_length );
}
function data() {
$utf8_urls = file( DIR_TESTDATA . '/formatting/utf-8/utf-8.txt' );
$urlencoded = file( DIR_TESTDATA . '/formatting/utf-8/urlencoded.txt' );
$data_provided = array();
foreach ( $utf8_urls as $key => $value ) {
$data_provided[] = array( trim( $value ), trim( $urlencoded[ $key ] ) );
}
return $data_provided;
}
}