Skip to content
Snippets Groups Projects
Commit ec36a0d5 authored by Benni Mack's avatar Benni Mack Committed by Daniel Goerz
Browse files

[BUGFIX] Add tests for email via typolink

Resolves: #88287
Releases: master
Change-Id: I4e6efbd00caca8c1ed01252f1dde30f36330640e
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/61151


Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarJonas Eberle <flightvision@googlemail.com>
Tested-by: default avatarDaniel Goerz <daniel.goerz@posteo.de>
Reviewed-by: default avatarJonas Eberle <flightvision@googlemail.com>
Reviewed-by: default avatarDaniel Goerz <daniel.goerz@posteo.de>
parent 002ad206
Branches
Tags
No related merge requests found
...@@ -437,6 +437,37 @@ class ContentObjectRendererTest extends \TYPO3\TestingFramework\Core\Functional\ ...@@ -437,6 +437,37 @@ class ContentObjectRendererTest extends \TYPO3\TestingFramework\Core\Functional\
$this->assertEquals($expectedResult, $subject->typoLink($linkText, $configuration)); $this->assertEquals($expectedResult, $subject->typoLink($linkText, $configuration));
} }
/**
* @test
*/
public function typolinkReturnsCorrectLinkForEmails()
{
$expected = '<a href="mailto:test@example.com">Send me an email</a>';
$subject = new ContentObjectRenderer();
$result = $subject->typoLink('Send me an email', ['parameter' => 'mailto:test@example.com']);
$this->assertEquals($expected, $result);
$result = $subject->typoLink('Send me an email', ['parameter' => 'test@example.com']);
$this->assertEquals($expected, $result);
}
/**
* @test
*/
public function typolinkReturnsCorrectLinkForSpamEncryptedEmails()
{
$tsfe = $this->getMockBuilder(TypoScriptFrontendController::class)->disableOriginalConstructor()->getMock();
$subject = new ContentObjectRenderer($tsfe);
$tsfe->spamProtectEmailAddresses = 1;
$result = $subject->typoLink('Send me an email', ['parameter' => 'mailto:test@example.com']);
$this->assertEquals('<a href="javascript:linkTo_UnCryptMailto(\'nbjmup+uftuAfybnqmf\/dpn\');">Send me an email</a>', $result);
$tsfe->spamProtectEmailAddresses = 'ascii';
$result = $subject->typoLink('Send me an email', ['parameter' => 'mailto:test@example.com']);
$this->assertEquals('<a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#116;&#101;&#115;&#116;&#64;&#101;&#120;&#97;&#109;&#112;&#108;&#101;&#46;&#99;&#111;&#109;">Send me an email</a>', $result);
}
/** /**
* @test * @test
*/ */
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment