* Copyright 2005-2008, Cake Software Foundation, Inc. * 1785 E. Sahara Avenue, Suite 490-204 * Las Vegas, Nevada 89104 * * Licensed under The Open Group Test Suite License * Redistributions of files must retain the above copyright notice. * * @filesource * @copyright Copyright 2005-2008, Cake Software Foundation, Inc. * @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests * @package cake.tests * @subpackage cake.tests.cases.libs.view.helpers * @since CakePHP(tm) v 1.2.0.4206 * @version $Revision$ * @modifiedby $LastChangedBy$ * @lastmodified $Date$ * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License */ App::import('Core', array('Helper', 'AppHelper')); App::import('Helper', 'Text'); /** * Short description for class. * * @package cake.tests * @subpackage cake.tests.cases.libs.view.helpers */ class TextTest extends UnitTestCase { var $helper = null; function setUp() { $this->Text = new TextHelper(); } function testTruncate() { if (!isset($this->method)) { $this->method = 'truncate'; } $m = $this->method; $text1 = 'The quick brown fox jumps over the lazy dog'; $text2 = 'Heizölrückstoßabdämpfung'; $text3 = '© 2005-2007, Cake Software Foundation, Inc.
written by Alexander Wegener'; $text4 = ' This image tag is not XHTML conform!

But the following image tag should be conform Me, myself and I
Great, or?'; $text5 = '01234567890'; $this->assertIdentical($this->Text->{$m}($text1, 15), 'The quick br...'); $this->assertIdentical($this->Text->{$m}($text1, 15, '...', false), 'The quick...'); $this->assertIdentical($this->Text->{$m}($text1, 100), 'The quick brown fox jumps over the lazy dog'); $this->assertIdentical($this->Text->{$m}($text2, 10, '...'), 'Heiz&ou...'); $this->assertIdentical($this->Text->{$m}($text2, 10, '...', false), '...'); $this->assertIdentical($this->Text->{$m}($text3, 20), '© 2005-20...'); $this->assertIdentical($this->Text->{$m}($text4, 15), ' This image ...'); $this->assertIdentical($this->Text->{$m}($text4, 45, '...', true, true), ' This image tag is not XHTML conform!

But t...'); $this->assertIdentical($this->Text->{$m}($text4, 90, '...', true, true), ' This image tag is not XHTML conform!

But the following image tag should be conform Me, myself and I
Grea...'); $this->assertIdentical($this->Text->{$m}($text5, 6, '', true, true), '012345'); $this->assertIdentical($this->Text->{$m}($text5, 20, '', true, true), $text5); if ($this->method == 'truncate') { $this->method = 'trim'; $this->testTruncate(); } } function testHighlight() { $text = 'This is a test text'; $phrases = array('This', 'text'); $result = $this->Text->highlight($text, $phrases, '\1'); $expected = 'This is a test text'; $this->assertEqual($expected, $result); $text = 'This is a test text'; $phrases = null; $result = $this->Text->highlight($text, $phrases, '\1'); $this->assertEqual($result, $text); } function testHighlightConsiderHtml() { $text1 = '

strongbow isn’t real cider

'; $text2 = '

strongbow isn’t real cider

'; $text3 = 'What a strong mouse!'; $this->assertEqual($this->Text->highlight($text1, 'strong', '\1', true), '

strongbow isn’t real cider

'); $this->assertEqual($this->Text->highlight($text2, 'strong', '\1', true), '

strongbow isn’t real cider

'); $this->assertEqual($this->Text->highlight($text3, 'strong', '\1', true), $text3); } function testStripLinks() { $text = 'This is a test text'; $expected = 'This is a test text'; $result = $this->Text->stripLinks($text); $this->assertEqual($expected, $result); $text = 'This is a test text'; $expected = 'This is a test text'; $result = $this->Text->stripLinks($text); $this->assertEqual($expected, $result); $text = 'This is a test text'; $expected = 'This is a test text'; $result = $this->Text->stripLinks($text); $this->assertEqual($expected, $result); $text = 'This is a test and some other text'; $expected = 'This is a test and some other text'; $result = $this->Text->stripLinks($text); $this->assertEqual($expected, $result); } function testAutoLink() { $text = 'This is a test text'; $expected = 'This is a test text'; $result = $this->Text->autoLink($text); $this->assertEqual($expected, $result); $text = 'Text with a partial www.cakephp.org URL and test@cakephp.org email address'; $result = $this->Text->autoLink($text); $expected = 'Text with a partial www.cakephp.org URL and test@cakephp\.org email address'; $this->assertPattern('#^' . $expected . '$#', $result); } function testAutoLinkUrls() { $text = 'This is a test text'; $expected = 'This is a test text'; $result = $this->Text->autoLinkUrls($text); $this->assertEqual($expected, $result); $text = 'This is a test that includes (www.cakephp.org)'; $expected = 'This is a test that includes (www.cakephp.org)'; $result = $this->Text->autoLinkUrls($text); $this->assertEqual($expected, $result); $text = 'Text with a partial www.cakephp.org URL'; $expected = 'Text with a partial www.cakephp.org URL'; $result = $this->Text->autoLinkUrls($text); $this->assertPattern('#^' . $expected . '$#', $result); $text = 'Text with a partial www.cakephp.org URL'; $expected = 'Text with a partial www.cakephp.org URL'; $result = $this->Text->autoLinkUrls($text, array('class' => 'link')); $this->assertPattern('#^' . $expected . '$#', $result); $text = 'Text with a partial WWW.cakephp.org URL'; $expected = 'Text with a partial WWW.cakephp.org URL'; $result = $this->Text->autoLinkUrls($text); $this->assertPattern('#^' . $expected . '$#', $result); $text = 'Text with a partial WWW.cakephp.org © URL'; $expected = 'Text with a partial WWW.cakephp.org © URL'; $result = $this->Text->autoLinkUrls($text, array('escape' => false)); $this->assertPattern('#^' . $expected . '$#', $result); } function testAutoLinkEmails() { $text = 'This is a test text'; $expected = 'This is a test text'; $result = $this->Text->autoLinkUrls($text); $this->assertEqual($expected, $result); $text = 'Text with email@example.com address'; $expected = 'Text with email@example.com address'; $result = $this->Text->autoLinkEmails($text); $this->assertPattern('#^' . $expected . '$#', $result); $text = 'Text with email@example.com address'; $expected = 'Text with email@example.com address'; $result = $this->Text->autoLinkEmails($text, array('class' => 'link')); $this->assertPattern('#^' . $expected . '$#', $result); } function testHighlightCaseInsensitivity() { $text = 'This is a Test text'; $expected = 'This is a Test text'; $result = $this->Text->highlight($text, 'test', '\1'); $this->assertEqual($expected, $result); $result = $this->Text->highlight($text, array('test'), '\1'); $this->assertEqual($expected, $result); } function testExcerpt() { $text = 'This is a phrase with test text to play with'; $expected = '...with test text...'; $result = $this->Text->excerpt($text, 'test', 9, '...'); $this->assertEqual($expected, $result); $expected = 'This is a...'; $result = $this->Text->excerpt($text, 'not_found', 9, '...'); $this->assertEqual($expected, $result); $expected = 'This is a phras...'; $result = $this->Text->excerpt($text, null, 9, '...'); $this->assertEqual($expected, $result); $expected = $text; $result = $this->Text->excerpt($text, null, 200, '...'); $this->assertEqual($expected, $result); $expected = '...phrase...'; $result = $this->Text->excerpt($text, 'phrase', 2, '...'); $this->assertEqual($expected, $result); } function testExcerptCaseInsensitivity() { $text = 'This is a phrase with test text to play with'; $expected = '...with test text...'; $result = $this->Text->excerpt($text, 'TEST', 9, '...'); $this->assertEqual($expected, $result); $expected = 'This is a...'; $result = $this->Text->excerpt($text, 'NOT_FOUND', 9, '...'); $this->assertEqual($expected, $result); } function testListGeneration() { $result = $this->Text->toList(array('Larry', 'Curly', 'Moe')); $this->assertEqual($result, 'Larry, Curly and Moe'); $result = $this->Text->toList(array('Dusty', 'Lucky', 'Ned'), 'y'); $this->assertEqual($result, 'Dusty, Lucky y Ned'); } function tearDown() { unset($this->Text); } } ?>