adding test that expects parameters of php translation to get HTML entities to get encoded

pull/581/head
El RIDO 2020-02-01 08:09:30 +01:00
parent f940f17bba
commit 428ea2f34e
No known key found for this signature in database
GPG Key ID: 0F5C940A6BD81F92
1 changed files with 7 additions and 0 deletions

View File

@ -155,6 +155,13 @@ class I18nTest extends PHPUnit_Framework_TestCase
$this->assertEquals('some string + 1', I18n::_('some %s + %d', 'string', 1), 'browser language en');
}
public function testHtmlEntityEncoding()
{
$_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'foobar';
I18n::loadTranslations();
$this->assertEquals('some ' . htmlentities('&<>"\'/`=', ENT_QUOTES | ENT_XHTML | ENT_DISALLOWED, 'UTF-8') . ' + 1', I18n::_('some %s + %d', '&<>"\'/`=', 1), 'browser language en');
}
public function testMessageIdsExistInAllLanguages()
{
$messageIds = array();