| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/Dolibarr/htdocs/includes/sabre/sabre/uri/tests/ |
Upload File : |
<?php
namespace Sabre\Uri;
class NormalizeTest extends \PHPUnit_Framework_TestCase{
/**
* @dataProvider normalizeData
*/
function testNormalize($in, $out) {
$this->assertEquals(
$out,
normalize($in)
);
}
function normalizeData() {
return [
['http://example.org/', 'http://example.org/'],
['HTTP://www.EXAMPLE.com/', 'http://www.example.com/'],
['http://example.org/%7Eevert', 'http://example.org/~evert'],
['http://example.org/./evert', 'http://example.org/evert'],
['http://example.org/../evert', 'http://example.org/evert'],
['http://example.org/foo/../evert', 'http://example.org/evert'],
['/%41', '/A'],
['/%3F', '/%3F'],
['/%3f', '/%3F'],
['http://example.org', 'http://example.org/'],
['http://example.org:/', 'http://example.org/'],
['http://example.org:80/', 'http://example.org/'],
// See issue #6. parse_url corrupts strings like this, but only on
// macs.
//[ 'http://example.org/有词法别名.zh','http://example.org/%E6%9C%89%E8%AF%8D%E6%B3%95%E5%88%AB%E5%90%8D.zh'],
];
}
}