* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain the above copyright notice * * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests * @package Cake.Test.Case.View.Helper * @since CakePHP(tm) v 1.2.0.4206 * @license http://www.opensource.org/licenses/mit-license.php MIT License */ App::uses('View', 'View'); App::uses('TextHelper', 'View/Helper'); /** * Class TextHelperTestObject * * @package Cake.Test.Case.View.Helper */ class TextHelperTestObject extends TextHelper { public function attach(StringMock $string) { $this->_engine = $string; } public function engine() { return $this->_engine; } } /** * StringMock class * * @package Cake.Test.Case.View.Helper */ class StringMock { } /** * TextHelperTest class * * @package Cake.Test.Case.View.Helper */ class TextHelperTest extends CakeTestCase { /** * setUp method * * @return void */ public function setUp() { parent::setUp(); $this->View = new View(null); $this->Text = new TextHelper($this->View); } /** * tearDown method * * @return void */ public function tearDown() { unset($this->View); parent::tearDown(); } /** * test String class methods are called correctly */ public function testTextHelperProxyMethodCalls() { $methods = array( 'highlight', 'stripLinks', 'truncate', 'excerpt', 'toList', ); $String = $this->getMock('StringMock', $methods); $Text = new TextHelperTestObject($this->View, array('engine' => 'StringMock')); $Text->attach($String); foreach ($methods as $method) { $String->expects($this->at(0))->method($method); $Text->{$method}('who', 'what', 'when', 'where', 'how'); } } /** * test engine override */ public function testEngineOverride() { App::build(array( 'Utility' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Utility' . DS) ), App::REGISTER); $Text = new TextHelperTestObject($this->View, array('engine' => 'TestAppEngine')); $this->assertInstanceOf('TestAppEngine', $Text->engine()); App::build(array( 'Plugin' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS) )); CakePlugin::load('TestPlugin'); $Text = new TextHelperTestObject($this->View, array('engine' => 'TestPlugin.TestPluginEngine')); $this->assertInstanceOf('TestPluginEngine', $Text->engine()); CakePlugin::unload('TestPlugin'); } /** * testAutoLink method * * @return void */ public function testAutoLink() { $text = 'This is a test text'; $expected = 'This is a test text'; $result = $this->Text->autoLink($text); $this->assertEquals($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->assertRegExp('#^' . $expected . '$#', $result); $text = 'This is a test text with URL http://www.cakephp.org'; $expected = 'This is a test text with URL http://www.cakephp.org'; $result = $this->Text->autoLink($text); $this->assertEquals($expected, $result); $text = 'This is a test text with URL http://www.cakephp.org and some more text'; $expected = 'This is a test text with URL http://www.cakephp.org and some more text'; $result = $this->Text->autoLink($text); $this->assertEquals($expected, $result); $text = "This is a test text with URL http://www.cakephp.org\tand some more text"; $expected = "This is a test text with URL http://www.cakephp.org\tand some more text"; $result = $this->Text->autoLink($text); $this->assertEquals($expected, $result); $text = 'This is a test text with URL http://www.cakephp.org(and some more text)'; $expected = 'This is a test text with URL http://www.cakephp.org(and some more text)'; $result = $this->Text->autoLink($text); $this->assertEquals($expected, $result); } /** * Test mixing URLs and Email addresses in one confusing string. * * @return void */ public function testAutoLinkMixed() { $text = 'Text with a url/email http://example.com/store?email=mark@example.com and email.'; $expected = 'Text with a url/email ' . 'http://example.com/store?email=mark@example.com and email.'; $result = $this->Text->autoLink($text); $this->assertEquals($expected, $result); } /** * test autoLink() and options. * * @return void */ public function testAutoLinkOptions() { $text = 'This is a test text with URL http://www.cakephp.org'; $expected = 'This is a test text with URL http://www.cakephp.org'; $result = $this->Text->autoLink($text, array('class' => 'link')); $this->assertEquals($expected, $result); $text = 'This is a test text with URL http://www.cakephp.org'; $expected = 'This is a test text with URL http://www.cakephp.org'; $result = $this->Text->autoLink($text, array('class' => 'link', 'id' => 'MyLink')); $this->assertEquals($expected, $result); } /** * Test escaping for autoLink * * @return void */ public function testAutoLinkEscape() { $text = 'This is a test text with URL http://www.cakephp.org'; $expected = 'This is a <b>test</b> text with URL http://www.cakephp.org'; $result = $this->Text->autoLink($text); $this->assertEquals($expected, $result); $text = 'This is a test text with URL http://www.cakephp.org'; $expected = 'This is a test text with URL http://www.cakephp.org'; $result = $this->Text->autoLink($text, array('escape' => false)); $this->assertEquals($expected, $result); $text = 'test test'; $expected = 'test test'; $result = $this->Text->autoLink($text, array('escape' => false)); $this->assertEquals($expected, $result); } /** * Data provider for autoLinking */ public static function autoLinkProvider() { return array( array( 'This is a test text', 'This is a test text', ), array( 'This is a test that includes (www.cakephp.org)', 'This is a test that includes (www.cakephp.org)', ), array( 'This is a test that includes www.cakephp.org:8080', 'This is a test that includes www.cakephp.org:8080', ), array( 'This is a test that includes http://de.wikipedia.org/wiki/Kanton_(Schweiz)#fragment', 'This is a test that includes http://de.wikipedia.org/wiki/Kanton_(Schweiz)#fragment', ), array( 'This is a test that includes www.wikipedia.org/wiki/Kanton_(Schweiz)#fragment', 'This is a test that includes www.wikipedia.org/wiki/Kanton_(Schweiz)#fragment', ), array( 'This is a test that includes http://example.com/test.php?foo=bar text', 'This is a test that includes http://example.com/test.php?foo=bar text', ), array( 'This is a test that includes www.example.com/test.php?foo=bar text', 'This is a test that includes www.example.com/test.php?foo=bar text', ), array( 'Text with a partial www.cakephp.org URL', 'Text with a partial www.cakephp.org URL', ), array( 'Text with a partial WWW.cakephp.org URL', 'Text with a partial WWW.cakephp.org URL', ), array( 'Text with a partial WWW.cakephp.org ©, URL', 'Text with a partial WWW.cakephp.org &copy, URL', ), array( 'Text with a url www.cot.ag/cuIb2Q and more', 'Text with a url www.cot.ag/cuIb2Q and more', ), array( 'Text with a url http://www.does--not--work.com and more', 'Text with a url http://www.does--not--work.com and more', ), array( 'Text with a url http://www.not--work.com and more', 'Text with a url http://www.not--work.com and more', ), array( 'Text with a partial www.küchenschöhn-not-working.de URL', 'Text with a partial www.küchenschöhn-not-working.de URL' ), array( 'Text with a partial http://www.küchenschöhn-not-working.de URL', 'Text with a partial http://www.küchenschöhn-not-working.de URL' ), ); } /** * testAutoLinkUrls method * * @dataProvider autoLinkProvider * @return void */ public function testAutoLinkUrls($text, $expected) { $result = $this->Text->autoLinkUrls($text); $this->assertEquals($expected, $result); } /** * Test the options for autoLinkUrls * * @return void */ public function testAutoLinkUrlsOptions() { $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->assertRegExp('#^' . $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->assertRegExp('#^' . $expected . '$#', $result); } /** * Test autoLinkUrls with the escape option. * * @return void */ public function testAutoLinkUrlsEscape() { $text = 'Text with a partial link link'; $expected = 'Text with a partial link link'; $result = $this->Text->autoLinkUrls($text, array('escape' => false)); $this->assertEquals($expected, $result); $text = 'Text with a partial