mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 19:38:26 +00:00
346 lines
12 KiB
PHP
346 lines
12 KiB
PHP
<?php
|
|
/**
|
|
* StringTest file
|
|
*
|
|
* PHP 5
|
|
*
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
|
* Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
*
|
|
* Licensed under The MIT License
|
|
* Redistributions of files must retain the above copyright notice.
|
|
*
|
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
* @link http://book.cakephp.org/view/1196/Testing CakePHP(tm) Tests
|
|
* @package Cake.Test.Case.Utility
|
|
* @since CakePHP(tm) v 1.2.0.5432
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
*/
|
|
App::uses('String', 'Utility');
|
|
|
|
/**
|
|
* StringTest class
|
|
*
|
|
* @package Cake.Test.Case.Utility
|
|
*/
|
|
class StringTest extends CakeTestCase {
|
|
|
|
/**
|
|
* testUuidGeneration method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testUuidGeneration() {
|
|
$result = String::uuid();
|
|
$pattern = "/^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$/";
|
|
$match = (bool) preg_match($pattern, $result);
|
|
$this->assertTrue($match);
|
|
}
|
|
|
|
/**
|
|
* testMultipleUuidGeneration method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testMultipleUuidGeneration() {
|
|
$check = array();
|
|
$count = mt_rand(10, 1000);
|
|
$pattern = "/^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$/";
|
|
|
|
for($i = 0; $i < $count; $i++) {
|
|
$result = String::uuid();
|
|
$match = (bool) preg_match($pattern, $result);
|
|
$this->assertTrue($match);
|
|
$this->assertFalse(in_array($result, $check));
|
|
$check[] = $result;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* testInsert method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testInsert() {
|
|
$string = 'some string';
|
|
$expected = 'some string';
|
|
$result = String::insert($string, array());
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = '2 + 2 = :sum. Cake is :adjective.';
|
|
$expected = '2 + 2 = 4. Cake is yummy.';
|
|
$result = String::insert($string, array('sum' => '4', 'adjective' => 'yummy'));
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = '2 + 2 = %sum. Cake is %adjective.';
|
|
$result = String::insert($string, array('sum' => '4', 'adjective' => 'yummy'), array('before' => '%'));
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = '2 + 2 = 2sum2. Cake is 9adjective9.';
|
|
$result = String::insert($string, array('sum' => '4', 'adjective' => 'yummy'), array('format' => '/([\d])%s\\1/'));
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = '2 + 2 = 12sum21. Cake is 23adjective45.';
|
|
$expected = '2 + 2 = 4. Cake is 23adjective45.';
|
|
$result = String::insert($string, array('sum' => '4', 'adjective' => 'yummy'), array('format' => '/([\d])([\d])%s\\2\\1/'));
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = ':web :web_site';
|
|
$expected = 'www http';
|
|
$result = String::insert($string, array('web' => 'www', 'web_site' => 'http'));
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = '2 + 2 = <sum. Cake is <adjective>.';
|
|
$expected = '2 + 2 = <sum. Cake is yummy.';
|
|
$result = String::insert($string, array('sum' => '4', 'adjective' => 'yummy'), array('before' => '<', 'after' => '>'));
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = '2 + 2 = \:sum. Cake is :adjective.';
|
|
$expected = '2 + 2 = :sum. Cake is yummy.';
|
|
$result = String::insert($string, array('sum' => '4', 'adjective' => 'yummy'));
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = '2 + 2 = !:sum. Cake is :adjective.';
|
|
$result = String::insert($string, array('sum' => '4', 'adjective' => 'yummy'), array('escape' => '!'));
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = '2 + 2 = \%sum. Cake is %adjective.';
|
|
$expected = '2 + 2 = %sum. Cake is yummy.';
|
|
$result = String::insert($string, array('sum' => '4', 'adjective' => 'yummy'), array('before' => '%'));
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = ':a :b \:a :a';
|
|
$expected = '1 2 :a 1';
|
|
$result = String::insert($string, array('a' => 1, 'b' => 2));
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = ':a :b :c';
|
|
$expected = '2 3';
|
|
$result = String::insert($string, array('b' => 2, 'c' => 3), array('clean' => true));
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = ':a :b :c';
|
|
$expected = '1 3';
|
|
$result = String::insert($string, array('a' => 1, 'c' => 3), array('clean' => true));
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = ':a :b :c';
|
|
$expected = '2 3';
|
|
$result = String::insert($string, array('b' => 2, 'c' => 3), array('clean' => true));
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = ':a, :b and :c';
|
|
$expected = '2 and 3';
|
|
$result = String::insert($string, array('b' => 2, 'c' => 3), array('clean' => true));
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = '":a, :b and :c"';
|
|
$expected = '"1, 2"';
|
|
$result = String::insert($string, array('a' => 1, 'b' => 2), array('clean' => true));
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = '"${a}, ${b} and ${c}"';
|
|
$expected = '"1, 2"';
|
|
$result = String::insert($string, array('a' => 1, 'b' => 2), array('before' => '${', 'after' => '}', 'clean' => true));
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = '<img src=":src" alt=":alt" class="foo :extra bar"/>';
|
|
$expected = '<img src="foo" class="foo bar"/>';
|
|
$result = String::insert($string, array('src' => 'foo'), array('clean' => 'html'));
|
|
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = '<img src=":src" class=":no :extra"/>';
|
|
$expected = '<img src="foo"/>';
|
|
$result = String::insert($string, array('src' => 'foo'), array('clean' => 'html'));
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = '<img src=":src" class=":no :extra"/>';
|
|
$expected = '<img src="foo" class="bar"/>';
|
|
$result = String::insert($string, array('src' => 'foo', 'extra' => 'bar'), array('clean' => 'html'));
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$result = String::insert("this is a ? string", "test");
|
|
$expected = "this is a test string";
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$result = String::insert("this is a ? string with a ? ? ?", array('long', 'few?', 'params', 'you know'));
|
|
$expected = "this is a long string with a few? params you know";
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$result = String::insert('update saved_urls set url = :url where id = :id', array('url' => 'http://www.testurl.com/param1:url/param2:id','id' => 1));
|
|
$expected = "update saved_urls set url = http://www.testurl.com/param1:url/param2:id where id = 1";
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$result = String::insert('update saved_urls set url = :url where id = :id', array('id' => 1, 'url' => 'http://www.testurl.com/param1:url/param2:id'));
|
|
$expected = "update saved_urls set url = http://www.testurl.com/param1:url/param2:id where id = 1";
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$result = String::insert(':me cake. :subject :verb fantastic.', array('me' => 'I :verb', 'subject' => 'cake', 'verb' => 'is'));
|
|
$expected = "I :verb cake. cake is fantastic.";
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$result = String::insert(':I.am: :not.yet: passing.', array('I.am' => 'We are'), array('before' => ':', 'after' => ':', 'clean' => array('replacement' => ' of course', 'method' => 'text')));
|
|
$expected = "We are of course passing.";
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$result = String::insert(
|
|
':I.am: :not.yet: passing.',
|
|
array('I.am' => 'We are'),
|
|
array('before' => ':', 'after' => ':', 'clean' => true)
|
|
);
|
|
$expected = "We are passing.";
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$result = String::insert('?-pended result', array('Pre'));
|
|
$expected = "Pre-pended result";
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = 'switching :timeout / :timeout_count';
|
|
$expected = 'switching 5 / 10';
|
|
$result = String::insert($string, array('timeout' => 5, 'timeout_count' => 10));
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = 'switching :timeout / :timeout_count';
|
|
$expected = 'switching 5 / 10';
|
|
$result = String::insert($string, array('timeout_count' => 10, 'timeout' => 5));
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = 'switching :timeout_count by :timeout';
|
|
$expected = 'switching 10 by 5';
|
|
$result = String::insert($string, array('timeout' => 5, 'timeout_count' => 10));
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$string = 'switching :timeout_count by :timeout';
|
|
$expected = 'switching 10 by 5';
|
|
$result = String::insert($string, array('timeout_count' => 10, 'timeout' => 5));
|
|
$this->assertEquals($expected, $result);
|
|
}
|
|
|
|
/**
|
|
* test Clean Insert
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testCleanInsert() {
|
|
$result = String::cleanInsert(':incomplete', array(
|
|
'clean' => true, 'before' => ':', 'after' => ''
|
|
));
|
|
$this->assertEquals($result, '');
|
|
|
|
$result = String::cleanInsert(':incomplete', array(
|
|
'clean' => array('method' => 'text', 'replacement' => 'complete'),
|
|
'before' => ':', 'after' => '')
|
|
);
|
|
$this->assertEquals($result, 'complete');
|
|
|
|
$result = String::cleanInsert(':in.complete', array(
|
|
'clean' => true, 'before' => ':', 'after' => ''
|
|
));
|
|
$this->assertEquals($result, '');
|
|
|
|
$result = String::cleanInsert(':in.complete and', array(
|
|
'clean' => true, 'before' => ':', 'after' => '')
|
|
);
|
|
$this->assertEquals($result, '');
|
|
|
|
$result = String::cleanInsert(':in.complete or stuff', array(
|
|
'clean' => true, 'before' => ':', 'after' => ''
|
|
));
|
|
$this->assertEquals($result, 'stuff');
|
|
|
|
$result = String::cleanInsert(
|
|
'<p class=":missing" id=":missing">Text here</p>',
|
|
array('clean' => 'html', 'before' => ':', 'after' => '')
|
|
);
|
|
$this->assertEquals($result, '<p>Text here</p>');
|
|
}
|
|
|
|
/**
|
|
* Tests that non-insertable variables (i.e. arrays) are skipped when used as values in
|
|
* String::insert().
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testAutoIgnoreBadInsertData() {
|
|
$data = array('foo' => 'alpha', 'bar' => 'beta', 'fale' => array());
|
|
$result = String::insert('(:foo > :bar || :fale!)', $data, array('clean' => 'text'));
|
|
$this->assertEquals($result, '(alpha > beta || !)');
|
|
}
|
|
|
|
/**
|
|
* testTokenize method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testTokenize() {
|
|
$result = String::tokenize('A,(short,boring test)');
|
|
$expected = array('A', '(short,boring test)');
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$result = String::tokenize('A,(short,more interesting( test)');
|
|
$expected = array('A', '(short,more interesting( test)');
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$result = String::tokenize('A,(short,very interesting( test))');
|
|
$expected = array('A', '(short,very interesting( test))');
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$result = String::tokenize('"single tag"', ' ', '"', '"');
|
|
$expected = array('"single tag"');
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$result = String::tokenize('tagA "single tag" tagB', ' ', '"', '"');
|
|
$expected = array('tagA', '"single tag"', 'tagB');
|
|
$this->assertEquals($expected, $result);
|
|
}
|
|
|
|
public function testReplaceWithQuestionMarkInString() {
|
|
$string = ':a, :b and :c?';
|
|
$expected = '2 and 3?';
|
|
$result = String::insert($string, array('b' => 2, 'c' => 3), array('clean' => true));
|
|
$this->assertEquals($expected, $result);
|
|
}
|
|
|
|
/**
|
|
* test wrap method.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testWrap() {
|
|
$text = 'This is the song that never ends. This is the song that never ends. This is the song that never ends.';
|
|
$result = String::wrap($text, 33);
|
|
$expected = <<<TEXT
|
|
This is the song that never ends.
|
|
This is the song that never ends.
|
|
This is the song that never ends.
|
|
TEXT;
|
|
$this->assertEquals($expected, $result, 'Text not wrapped.');
|
|
|
|
$result = String::wrap($text, array('width' => 20, 'wordWrap' => false));
|
|
$expected = <<<TEXT
|
|
This is the song th
|
|
at never ends. This
|
|
is the song that n
|
|
ever ends. This is
|
|
the song that never
|
|
ends.
|
|
TEXT;
|
|
$this->assertEquals($expected, $result, 'Text not wrapped.');
|
|
}
|
|
|
|
/**
|
|
* test wrap() indenting
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testWrapIndent() {
|
|
$text = 'This is the song that never ends. This is the song that never ends. This is the song that never ends.';
|
|
$result = String::wrap($text, array('width' => 33, 'indent' => "\t", 'indentAt' => 1));
|
|
$expected = <<<TEXT
|
|
This is the song that never ends.
|
|
This is the song that never ends.
|
|
This is the song that never ends.
|
|
TEXT;
|
|
}
|
|
}
|