silverstripe-framework/tests/model/URLSegmentFilterTest.php
Ingo Schommer 8ec3641e60 Merge remote-tracking branch 'origin/3.0' into 3.1
Conflicts:
	admin/javascript/LeftAndMain.FieldHelp.js
	lang/en.yml
	model/URLSegmentFilter.php
2012-12-21 15:04:17 +01:00

61 lines
1.2 KiB
PHP

<?php
/**
* @package framework
* @subpackage tests
*/
class URLSegmentFilterTest extends SapphireTest {
public function testReplacesCommonEnglishSymbols() {
$f = new URLSegmentFilter();
$f->setAllowMultibyte(false);
$this->assertEquals(
'john-and-spencer',
$f->filter('John & Spencer')
);
}
public function testTransliteratesNonAsciiUrls() {
$f = new URLSegmentFilter();
$f->setAllowMultibyte(false);
$this->assertEquals(
'broetchen',
$f->filter('Brötchen')
);
}
public function testReplacesCommonNonAsciiCharacters() {
$f = new URLSegmentFilter();
$this->assertEquals(
urlencode('aa1-.'),
$f->filter('Aa1~!@#$%^*()_`-=;\':"[]\{}|,./<>?')
);
}
public function testRetainsNonAsciiUrlsWithAllowMultiByteOption() {
$f = new URLSegmentFilter();
$f->setAllowMultibyte(true);
$this->assertEquals(
urlencode('brötchen'),
$f->filter('Brötchen')
);
}
public function testReplacements() {
$f = new URLSegmentFilter();
$this->assertEquals(
'tim-and-struppi',
$f->filter('Tim&Struppi')
);
// Customize replacements
$rs = $f->getReplacements();
$rs['/&/u'] = '-und-';
$f->setReplacements($rs);
$this->assertEquals(
'tim-und-struppi',
$f->filter('Tim&Struppi')
);
}
}