2015-09-05 02:24:56 +02:00
|
|
|
<?php
|
2016-07-21 17:09:48 +02:00
|
|
|
|
2016-08-09 11:54:42 +02:00
|
|
|
use PrivateBin\I18n;
|
2016-07-21 17:09:48 +02:00
|
|
|
|
2016-08-09 11:54:42 +02:00
|
|
|
class I18nTest extends PHPUnit_Framework_TestCase
|
2015-09-05 02:24:56 +02:00
|
|
|
{
|
|
|
|
private $_translations = array();
|
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
/* Setup Routine */
|
|
|
|
$this->_translations = json_decode(
|
|
|
|
file_get_contents(PATH . 'i18n' . DIRECTORY_SEPARATOR . 'de.json'),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function tearDown()
|
|
|
|
{
|
|
|
|
/* Tear Down Routine */
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testTranslationFallback()
|
|
|
|
{
|
|
|
|
$_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'foobar';
|
2016-10-29 10:24:08 +02:00
|
|
|
$messageId = 'It does not matter if the message ID exists';
|
2016-08-09 11:54:42 +02:00
|
|
|
I18n::loadTranslations();
|
|
|
|
$this->assertEquals($messageId, I18n::_($messageId), 'fallback to en');
|
2015-09-05 02:24:56 +02:00
|
|
|
}
|
|
|
|
|
2015-09-19 17:23:10 +02:00
|
|
|
public function testCookieLanguageDeDetection()
|
|
|
|
{
|
|
|
|
$_COOKIE['lang'] = 'de';
|
2016-08-09 11:54:42 +02:00
|
|
|
I18n::loadTranslations();
|
|
|
|
$this->assertEquals($this->_translations['en'], I18n::_('en'), 'browser language de');
|
|
|
|
$this->assertEquals('0 Stunden', I18n::_('%d hours', 0), '0 hours in german');
|
|
|
|
$this->assertEquals('1 Stunde', I18n::_('%d hours', 1), '1 hour in german');
|
|
|
|
$this->assertEquals('2 Stunden', I18n::_('%d hours', 2), '2 hours in french');
|
2015-09-19 17:23:10 +02:00
|
|
|
}
|
|
|
|
|
2015-09-06 19:21:17 +02:00
|
|
|
public function testBrowserLanguageDeDetection()
|
2015-09-05 02:24:56 +02:00
|
|
|
{
|
|
|
|
$_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'de-CH,de;q=0.8,en-GB;q=0.6,en-US;q=0.4,en;q=0.2';
|
2016-08-09 11:54:42 +02:00
|
|
|
I18n::loadTranslations();
|
|
|
|
$this->assertEquals($this->_translations['en'], I18n::_('en'), 'browser language de');
|
|
|
|
$this->assertEquals('0 Stunden', I18n::_('%d hours', 0), '0 hours in german');
|
|
|
|
$this->assertEquals('1 Stunde', I18n::_('%d hours', 1), '1 hour in german');
|
|
|
|
$this->assertEquals('2 Stunden', I18n::_('%d hours', 2), '2 hours in french');
|
2015-09-06 19:21:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testBrowserLanguageFrDetection()
|
|
|
|
{
|
|
|
|
$_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'fr-CH,fr;q=0.8,en-GB;q=0.6,en-US;q=0.4,en;q=0.2';
|
2016-08-09 11:54:42 +02:00
|
|
|
I18n::loadTranslations();
|
|
|
|
$this->assertEquals('fr', I18n::_('en'), 'browser language fr');
|
|
|
|
$this->assertEquals('0 heure', I18n::_('%d hours', 0), '0 hours in french');
|
|
|
|
$this->assertEquals('1 heure', I18n::_('%d hours', 1), '1 hour in french');
|
|
|
|
$this->assertEquals('2 heures', I18n::_('%d hours', 2), '2 hours in french');
|
2015-09-06 19:21:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testBrowserLanguagePlDetection()
|
|
|
|
{
|
|
|
|
$_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'pl;q=0.8,en-GB;q=0.6,en-US;q=0.4,en;q=0.2';
|
2016-08-09 11:54:42 +02:00
|
|
|
I18n::loadTranslations();
|
|
|
|
$this->assertEquals('pl', I18n::_('en'), 'browser language pl');
|
|
|
|
$this->assertEquals('2 godzina', I18n::_('%d hours', 2), 'hours in polish');
|
2015-09-06 19:21:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testBrowserLanguageAnyDetection()
|
|
|
|
{
|
|
|
|
$_SERVER['HTTP_ACCEPT_LANGUAGE'] = '*';
|
2016-08-09 11:54:42 +02:00
|
|
|
I18n::loadTranslations();
|
|
|
|
$this->assertTrue(strlen(I18n::_('en')) == 2, 'browser language any');
|
2015-09-05 02:24:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testVariableInjection()
|
|
|
|
{
|
|
|
|
$_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'foobar';
|
2016-08-09 11:54:42 +02:00
|
|
|
I18n::loadTranslations();
|
|
|
|
$this->assertEquals('some string + 1', I18n::_('some %s + %d', 'string', 1), 'browser language en');
|
2015-09-05 02:24:56 +02:00
|
|
|
}
|
|
|
|
}
|