@@ -48,6 +48,7 @@ class UnicodeUnitTest extends DrupalWebTestCase {
$this->helperTestUcFirst();
$this->helperTestStrLen();
$this->helperTestSubStr();
$this->helperTestTruncate();
}
/**
...
...
@@ -67,6 +68,7 @@ class UnicodeUnitTest extends DrupalWebTestCase {
$this->helperTestUcFirst();
$this->helperTestStrLen();
$this->helperTestSubStr();
$this->helperTestTruncate();
}
functionhelperTestStrToLower(){
...
...
@@ -127,10 +129,18 @@ class UnicodeUnitTest extends DrupalWebTestCase {
functionhelperTestSubStr(){
$testcase=array(
// 012345678901234567890123
array('frànçAIS is über-åwesome',0,0,
''),
array('frànçAIS is über-åwesome',0,1,
'f'),
array('frànçAIS is über-åwesome',0,8,
'frànçAIS'),
array('frànçAIS is über-åwesome',0,23,
'frànçAIS is über-åwesom'),
array('frànçAIS is über-åwesome',0,24,
'frànçAIS is über-åwesome'),
array('frànçAIS is über-åwesome',0,25,
'frànçAIS is über-åwesome'),
array('frànçAIS is über-åwesome',0,100,
'frànçAIS is über-åwesome'),
array('frànçAIS is über-åwesome',4,4,
...
...
@@ -141,16 +151,38 @@ class UnicodeUnitTest extends DrupalWebTestCase {
''),
array('frànçAIS is über-åwesome',-4,2,
'so'),
array('frànçAIS is über-åwesome',-4,3,
'som'),
array('frànçAIS is über-åwesome',-4,4,
'some'),
array('frànçAIS is über-åwesome',-4,5,
'some'),
array('frànçAIS is über-åwesome',-7,10,
'åwesome'),
array('frànçAIS is über-åwesome',5,-10,
'AIS is üb'),
array('frànçAIS is über-åwesome',0,-10,
'frànçAIS is üb'),
array('frànçAIS is über-åwesome',0,-1,
'frànçAIS is über-åwesom'),
array('frànçAIS is über-åwesome',-7,-2,
'åweso'),
array('frànçAIS is über-åwesome',-7,-6,
'å'),
array('frànçAIS is über-åwesome',-7,-7,
''),
array('frànçAIS is über-åwesome',-7,-8,
''),
array('...',0,2,'..'),
array('以呂波耳・ほへとち。リヌルヲ。',1,3,
'呂波耳'),
);
foreach($testcaseas$test){
list($input,$start,$length,$output)=$test;
$this->assertEqual(drupal_substr($input,$start,$length),$output,t('%input substring-ed at offset %offset for %length characters is %output',array('%input'=>$input,'%offset'=>$start,'%length'=>$length,'%output'=>$output)));
$result=drupal_substr($input,$start,$length);
$this->assertEqual($result,$output,t('%input substring at offset %offset for %length characters is %output (got %result)',array('%input'=>$input,'%offset'=>$start,'%length'=>$length,'%output'=>$output,'%result'=>$result)));
}
}
...
...
@@ -215,4 +247,90 @@ class UnicodeUnitTest extends DrupalWebTestCase {
$this->assertIdentical(decode_entities($input,$exclude),$output,t('Make sure the decoded entity of %input, excluding %excludes, is %output',array('%input'=>$input,'%excludes'=>implode(',',$exclude),'%output'=>$output)));
}
}
/**
* Tests truncate_utf8().
*/
functionhelperTestTruncate(){
// Each case is an array with input string, length to truncate to, and
// expected return value.
// Test non-wordsafe, non-ellipsis cases.
$non_wordsafe_non_ellipsis_cases=array(
array('frànçAIS is über-åwesome',24,'frànçAIS is über-åwesome'),
array('frànçAIS is über-åwesome',23,'frànçAIS is über-åwesom'),
array('frànçAIS is über-åwesome',17,'frànçAIS is über-'),
$this->assertEqual($output,$expected,t('%input truncate to %length characters with %wordsafe, %ellipsis is %expected (got %output)',array('%input'=>$input,'%length'=>$max_length,'%output'=>$output,'%expected'=>$expected,'%wordsafe'=>($wordsafe?'word-safe':'not word-safe'),'%ellipsis'=>($ellipsis?'ellipsis':'not ellipsis'))));