_engine = $string; } public function engine() { return $this->_engine; } } /** * StringMock class * */ class StringMock { } /** * TextHelperTest class * */ class TextHelperTest extends TestCase { /** * setUp method * * @return void */ public function setUp() { parent::setUp(); $this->View = new View(); $this->Text = new TextHelper($this->View); $this->_appNamespace = Configure::read('App.namespace'); Configure::write('App.namespace', 'TestApp'); } /** * tearDown method * * @return void */ public function tearDown() { unset($this->Text, $this->View); Configure::write('App.namespace', $this->_appNamespace); parent::tearDown(); } /** * test String class methods are called correctly * * @return void */ public function testTextHelperProxyMethodCalls() { $methods = [ 'stripLinks', 'excerpt', 'toList' ]; $String = $this->getMock(__NAMESPACE__ . '\StringMock', $methods); $Text = new TextHelperTestObject($this->View, ['engine' => __NAMESPACE__ . '\StringMock']); $Text->attach($String); foreach ($methods as $method) { $String->expects($this->at(0))->method($method); $Text->{$method}('who', 'what', 'when', 'where', 'how'); } $methods = [ 'highlight', 'truncate' ]; $String = $this->getMock(__NAMESPACE__ . '\StringMock', $methods); $Text = new TextHelperTestObject($this->View, ['engine' => __NAMESPACE__ . '\StringMock']); $Text->attach($String); foreach ($methods as $method) { $String->expects($this->at(0))->method($method); $Text->{$method}('who', ['what']); } $methods = [ 'tail' ]; $String = $this->getMock(__NAMESPACE__ . '\StringMock', $methods); $Text = new TextHelperTestObject($this->View, ['engine' => __NAMESPACE__ . '\StringMock']); $Text->attach($String); foreach ($methods as $method) { $String->expects($this->at(0))->method($method); $Text->{$method}('who', 1, ['what']); } } /** * test engine override * * @return void */ public function testEngineOverride() { $Text = new TextHelperTestObject($this->View, ['engine' => 'TestAppEngine']); $this->assertInstanceOf('TestApp\Utility\TestAppEngine', $Text->engine()); Plugin::load('TestPlugin'); $Text = new TextHelperTestObject($this->View, ['engine' => 'TestPlugin.TestPluginEngine']); $this->assertInstanceOf('TestPlugin\Utility\TestPluginEngine', $Text->engine()); Plugin::unload('TestPlugin'); } /** * testAutoLink method * * @return void */ public function testAutoLink() { $text = 'The AWWWARD show happened today'; $result = $this->Text->autoLink($text); $this->assertEquals($text, $result); $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); $text = 'This is a test text with URL (http://www.cakephp.org/page/4) in brackets'; $expected = 'This is a test text with URL (http://www.cakephp.org/page/4) in brackets'; $result = $this->Text->autoLink($text); $this->assertEquals($expected, $result); $text = 'This is a test text with URL [http://www.cakephp.org/page/4] in square brackets'; $expected = 'This is a test text with URL [http://www.cakephp.org/page/4] in square brackets'; $result = $this->Text->autoLink($text); $this->assertEquals($expected, $result); $text = 'This is a test text with URL [http://www.example.com?aParam[]=value1&aParam[]=value2&aParam[]=value3] in square brackets'; $expected = 'This is a test text with URL [http://www.example.com?aParam[]=value1&aParam[]=value2&aParam[]=value3] in square brackets'; $result = $this->Text->autoLink($text); $this->assertEquals($expected, $result); $text = 'This is a test text with URL ;http://www.cakephp.org/page/4; semi-colon'; $expected = 'This is a test text with URL ;http://www.cakephp.org/page/4; semi-colon'; $result = $this->Text->autoLink($text); $this->assertEquals($expected, $result); $text = 'This is a test text with URL (http://www.cakephp.org/page/4/other(thing)) brackets'; $expected = 'This is a test text with URL (http://www.cakephp.org/page/4/other(thing)) brackets'; $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, ['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, ['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, ['escape' => false]); $this->assertEquals($expected, $result); $text = 'test
mark@example.com
', '', ['escape' => false] ], [ 'Some mark@example.com Text', 'Some mark@example.com Text', ['escape' => false] ], ]; } /** * testAutoLinkEmails method * * @param string $text The text to link * @param string $expected The expected results. * @dataProvider autoLinkEmailProvider * @return void */ public function testAutoLinkEmails($text, $expected, $attrs = []) { $result = $this->Text->autoLinkEmails($text, $attrs); $this->assertEquals($expected, $result); } /** * test invalid email addresses. * * @return void */ public function testAutoLinkEmailInvalid() { $result = $this->Text->autoLinkEmails('this is a myaddress@gmx-de test'); $expected = 'this is a myaddress@gmx-de test'; $this->assertEquals($expected, $result); } /** * testAutoParagraph method * * @return void */ public function testAutoParagraph() { $text = 'This is a test text'; $expected = <<test text
TEXT; $result = $this->Text->autoParagraph($text); $this->assertTextEquals($expected, $result); $result = $this->Text->autoParagraph($text); $text = 'This is atest text
TEXT; $result = $this->Text->autoParagraph($text); $this->assertTextEquals($expected, $result); $text = <<This is a new line.
TEXT; $result = $this->Text->autoParagraph($text); $this->assertTextEquals($expected, $result); } }