I18nTest.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. <?php declare(strict_types=1);
  2. use PHPUnit\Framework\TestCase;
  3. use PrivateBin\I18n;
  4. use PrivateBin\Json;
  5. class I18nMock extends I18n
  6. {
  7. public static function resetAvailableLanguages()
  8. {
  9. self::$_availableLanguages = [];
  10. }
  11. public static function resetPath($path = '')
  12. {
  13. self::$_path = $path;
  14. }
  15. public static function getPath($file = '')
  16. {
  17. return self::_getPath($file);
  18. }
  19. }
  20. class I18nTest extends TestCase
  21. {
  22. private $_translations = [];
  23. public function setUp(): void
  24. {
  25. /* Setup Routine */
  26. $this->_translations = json_decode(
  27. file_get_contents(PATH . 'i18n' . DIRECTORY_SEPARATOR . 'de.json'),
  28. true
  29. );
  30. }
  31. public function tearDown(): void
  32. {
  33. unset($_COOKIE['lang'], $_SERVER['HTTP_ACCEPT_LANGUAGE']);
  34. I18n::loadTranslations();
  35. }
  36. public function testTranslationFallback()
  37. {
  38. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'foobar';
  39. $messageId = 'It does not matter if the message ID exists';
  40. I18n::loadTranslations();
  41. $this->assertEquals($messageId, I18n::_($messageId), 'fallback to en');
  42. I18n::getLanguageLabels();
  43. }
  44. public function testCookieLanguageDeDetection()
  45. {
  46. $_COOKIE['lang'] = 'de';
  47. I18n::loadTranslations();
  48. $this->assertEquals($_COOKIE['lang'], I18n::getLanguage(), 'browser language de');
  49. $this->assertEquals('0 Stunden', I18n::_('%d hours', 0), '0 hours in German');
  50. $this->assertEquals('1 Stunde', I18n::_('%d hours', 1), '1 hour in German');
  51. $this->assertEquals('2 Stunden', I18n::_('%d hours', 2), '2 hours in German');
  52. }
  53. public function testBrowserLanguageDeDetection()
  54. {
  55. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'de-CH,de;q=0.8,en-GB;q=0.6,en-US;q=0.4,en;q=0.2,fr;q=0.0';
  56. I18n::loadTranslations();
  57. $this->assertEquals('de', I18n::getLanguage(), 'browser language de');
  58. $this->assertEquals('0 Stunden', I18n::_('%d hours', 0), '0 hours in German');
  59. $this->assertEquals('1 Stunde', I18n::_('%d hours', 1), '1 hour in German');
  60. $this->assertEquals('2 Stunden', I18n::_('%d hours', 2), '2 hours in German');
  61. }
  62. public function testBrowserLanguageFrDetection()
  63. {
  64. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'fr-CH,fr;q=0.8,en-GB;q=0.6,en-US;q=0.4,en;q=0.2,de;q=0.0';
  65. I18n::loadTranslations();
  66. $this->assertEquals('fr', I18n::getLanguage(), 'browser language fr');
  67. $this->assertEquals('0 heure', I18n::_('%d hours', 0), '0 hours in French');
  68. $this->assertEquals('1 heure', I18n::_('%d hours', 1), '1 hour in French');
  69. $this->assertEquals('2 heures', I18n::_('%d hours', 2), '2 hours in French');
  70. }
  71. public function testBulgarianMonthExpirationTranslation()
  72. {
  73. $_COOKIE['lang'] = 'bg';
  74. I18n::loadTranslations();
  75. $this->assertEquals(
  76. 'Този документ изтича след един месец.',
  77. I18n::_('This document will expire in %d months.', 1)
  78. );
  79. $this->assertEquals(
  80. 'Този документ изтича след 2 месеца.',
  81. I18n::_('This document will expire in %d months.', 2)
  82. );
  83. }
  84. public function testBrowserLanguageNoDetection()
  85. {
  86. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'no;q=0.8,en-GB;q=0.6,en-US;q=0.4,en;q=0.2';
  87. I18n::loadTranslations();
  88. $this->assertEquals('no', I18n::getLanguage(), 'browser language no');
  89. $this->assertEquals('0 timer', I18n::_('%d hours', 0), '0 hours in Norwegian');
  90. $this->assertEquals('1 time', I18n::_('%d hours', 1), '1 hour in Norwegian');
  91. $this->assertEquals('2 timer', I18n::_('%d hours', 2), '2 hours in Norwegian');
  92. }
  93. public function testBrowserLanguageOcDetection()
  94. {
  95. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'oc;q=0.8,en-GB;q=0.6,en-US;q=0.4,en;q=0.2';
  96. I18n::loadTranslations();
  97. $this->assertEquals('oc', I18n::getLanguage(), 'browser language oc');
  98. $this->assertEquals('0 ora', I18n::_('%d hours', 0), '0 hours in Occitan');
  99. $this->assertEquals('1 ora', I18n::_('%d hours', 1), '1 hour in Occitan');
  100. $this->assertEquals('2 oras', I18n::_('%d hours', 2), '2 hours in Occitan');
  101. }
  102. public function testBrowserLanguageZhDetection()
  103. {
  104. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'zh;q=0.8,en-GB;q=0.6,en-US;q=0.4,en;q=0.2';
  105. I18n::loadTranslations();
  106. $this->assertEquals('zh', I18n::getLanguage(), 'browser language zh');
  107. $this->assertEquals('0 小时', I18n::_('%d hours', 0), '0 hours in Chinese');
  108. $this->assertEquals('1 小时', I18n::_('%d hours', 1), '1 hour in Chinese');
  109. $this->assertEquals('2 小时', I18n::_('%d hours', 2), '2 hours in Chinese');
  110. }
  111. public function testBrowserLanguagePlDetection()
  112. {
  113. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'pl;q=0.8,en-GB;q=0.6,en-US;q=0.4,en;q=0.2';
  114. I18n::loadTranslations();
  115. $this->assertEquals('pl', I18n::getLanguage(), 'browser language pl');
  116. $this->assertEquals('1 godzina', I18n::_('%d hours', 1), '1 hour in Polish');
  117. $this->assertEquals('2 godziny', I18n::_('%d hours', 2), '2 hours in Polish');
  118. $this->assertEquals('12 godzin', I18n::_('%d hours', 12), '12 hours in Polish');
  119. $this->assertEquals('22 godziny', I18n::_('%d hours', 22), '22 hours in Polish');
  120. $this->assertEquals('1 minuta', I18n::_('%d minutes', 1), '1 minute in Polish');
  121. $this->assertEquals('3 minuty', I18n::_('%d minutes', 3), '3 minutes in Polish');
  122. $this->assertEquals('13 minut', I18n::_('%d minutes', 13), '13 minutes in Polish');
  123. $this->assertEquals('23 minuty', I18n::_('%d minutes', 23), '23 minutes in Polish');
  124. }
  125. public function testBrowserLanguageRuDetection()
  126. {
  127. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'ru;q=0.8,en-GB;q=0.6,en-US;q=0.4,en;q=0.2';
  128. I18n::loadTranslations();
  129. $this->assertEquals('ru', I18n::getLanguage(), 'browser language ru');
  130. $this->assertEquals('1 минуту', I18n::_('%d minutes', 1), '1 minute in Russian');
  131. $this->assertEquals('3 минуты', I18n::_('%d minutes', 3), '3 minutes in Russian');
  132. $this->assertEquals('10 минут', I18n::_('%d minutes', 10), '10 minutes in Russian');
  133. $this->assertEquals('21 минуту', I18n::_('%d minutes', 21), '21 minutes in Russian');
  134. }
  135. public function testBrowserLanguageSlDetection()
  136. {
  137. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'sl;q=0.8,en-GB;q=0.6,en-US;q=0.4,en;q=0.2';
  138. I18n::loadTranslations();
  139. $this->assertEquals('sl', I18n::getLanguage(), 'browser language sl');
  140. $this->assertEquals('0 ura', I18n::_('%d hours', 0), '0 hours in Slovene');
  141. $this->assertEquals('1 uri', I18n::_('%d hours', 1), '1 hour in Slovene');
  142. $this->assertEquals('2 ure', I18n::_('%d hours', 2), '2 hours in Slovene');
  143. $this->assertEquals('3 ur', I18n::_('%d hours', 3), '3 hours in Slovene');
  144. $this->assertEquals('11 ura', I18n::_('%d hours', 11), '11 hours in Slovene');
  145. $this->assertEquals('101 uri', I18n::_('%d hours', 101), '101 hours in Slovene');
  146. $this->assertEquals('102 ure', I18n::_('%d hours', 102), '102 hours in Slovene');
  147. $this->assertEquals('104 ur', I18n::_('%d hours', 104), '104 hours in Slovene');
  148. }
  149. public function testBrowserLanguageCsDetection()
  150. {
  151. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'cs;q=0.8,en-GB;q=0.6,en-US;q=0.4,en;q=0.2';
  152. I18n::loadTranslations();
  153. $this->assertEquals('cs', I18n::getLanguage(), 'browser language cs');
  154. $this->assertEquals('1 hodina', I18n::_('%d hours', 1), '1 hour in Czech');
  155. $this->assertEquals('2 hodiny', I18n::_('%d hours', 2), '2 hours in Czech');
  156. $this->assertEquals('5 minut', I18n::_('%d minutes', 5), '5 minutes in Czech');
  157. $this->assertEquals('14 minut', I18n::_('%d minutes', 14), '14 minutes in Czech');
  158. }
  159. public function testBrowserLanguageAnyDetection()
  160. {
  161. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = '*';
  162. I18n::loadTranslations();
  163. $this->assertTrue(strlen(I18n::getLanguage()) >= 2, 'browser language any');
  164. }
  165. public function testVariableInjection()
  166. {
  167. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'foobar';
  168. I18n::loadTranslations();
  169. $this->assertEquals('some string + 1', I18n::_('some %s + %d', 'string', 1), 'browser language en');
  170. }
  171. public function testHtmlEntityEncoding()
  172. {
  173. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'foobar';
  174. I18n::loadTranslations();
  175. $input = '&<>"\'/`=';
  176. $result = htmlspecialchars($input, ENT_QUOTES | ENT_HTML5 | ENT_DISALLOWED, 'UTF-8', false);
  177. $this->assertEquals($result, I18n::encode($input), 'encodes HTML entities');
  178. $this->assertEquals('<a>some ' . $result . ' + 1</a>', I18n::_('<a>some %s + %d</a>', $input, 1), 'encodes parameters in translations');
  179. // Message ID should NOT be encoded (it comes from trusted source), only the parameter should be
  180. $this->assertEquals($input . $result, I18n::_($input . '%s', $input), 'encodes only parameters, not message ID');
  181. }
  182. public function testApostropheEncodngInMessage()
  183. {
  184. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'fr';
  185. I18n::loadTranslations();
  186. // For example, the French translation should not have the apostrophe encoded
  187. // See https://github.com/PrivateBin/PrivateBin/issues/1712
  188. $message = I18n::_('Document does not exist, has expired or has been deleted.');
  189. $this->assertFalse(strpos($message, '&apos;') !== false, 'French apostrophe should not be encoded in translation message');
  190. $this->assertTrue(strpos($message, "n'existe") !== false, 'French apostrophe should be present as literal character');
  191. }
  192. public function testFallbackAlwaysPresent()
  193. {
  194. $path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_i18n';
  195. if (!is_dir($path)) {
  196. mkdir($path);
  197. }
  198. $languageIterator = new AppendIterator();
  199. $languageIterator->append(new GlobIterator(I18nMock::getPath('??.json')));
  200. $languageIterator->append(new GlobIterator(I18nMock::getPath('???.json'))); // for jbo
  201. $languageCount = 0;
  202. foreach ($languageIterator as $file) {
  203. ++$languageCount;
  204. $this->assertTrue(copy($file->getPathname(), $path . DIRECTORY_SEPARATOR . $file->getBasename()));
  205. }
  206. I18nMock::resetPath($path);
  207. $languagesDevelopment = I18nMock::getAvailableLanguages();
  208. $this->assertEquals($languageCount, count($languagesDevelopment), 'all copied languages detected');
  209. $this->assertTrue(in_array('en', $languagesDevelopment), 'English fallback present');
  210. unlink($path . DIRECTORY_SEPARATOR . 'en.json');
  211. I18nMock::resetAvailableLanguages();
  212. $languagesDeployed = I18nMock::getAvailableLanguages();
  213. $this->assertEquals($languageCount, count($languagesDeployed), 'all copied languages detected, plus fallback');
  214. $this->assertTrue(in_array('en', $languagesDeployed), 'English fallback still present');
  215. I18nMock::resetAvailableLanguages();
  216. I18nMock::resetPath();
  217. Helper::rmDir($path);
  218. }
  219. public function testGetCopyHotkey()
  220. {
  221. $_SERVER['HTTP_USER_AGENT'] = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)';
  222. $this->assertEquals('Cmd', I18n::getCopyHotkey(), 'returns Cmd on macOS');
  223. $_SERVER['HTTP_USER_AGENT'] = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)';
  224. $this->assertEquals('Ctrl', I18n::getCopyHotkey(), 'returns Ctrl on Windows');
  225. $_SERVER['HTTP_USER_AGENT'] = 'Mozilla/5.0 (X11; Linux x86_64)';
  226. $this->assertEquals('Ctrl', I18n::getCopyHotkey(), 'returns Ctrl on Linux');
  227. unset($_SERVER['HTTP_USER_AGENT']);
  228. $this->assertEquals('Ctrl', I18n::getCopyHotkey(), 'returns Ctrl when user agent absent');
  229. }
  230. public function testMessageIdsExistInAllLanguages()
  231. {
  232. $messageIds = [];
  233. $languages = [];
  234. foreach (new DirectoryIterator(PATH . 'i18n') as $file) {
  235. $fileNameLength = strlen($file->getFilename());
  236. if ($fileNameLength === 7) { // xx.json
  237. $language = substr($file->getFilename(), 0, 2);
  238. } elseif ($fileNameLength === 8) { // jbo.json
  239. $language = substr($file->getFilename(), 0, 3);
  240. } else {
  241. continue;
  242. }
  243. $languageJson = file_get_contents($file->getPathname());
  244. $languageMessageIds = array_keys(Json::decode($languageJson));
  245. $messageIds = array_unique(array_merge($messageIds, $languageMessageIds));
  246. $languages[$language] = $languageMessageIds;
  247. }
  248. foreach ($messageIds as $messageId) {
  249. foreach (array_keys($languages) as $language) {
  250. // most languages don't translate the data size units, ignore those
  251. if ($messageId !== 'B' && strlen($messageId) !== 3 && strpos($messageId, 'B', 2) !== 2) {
  252. $this->assertContains(
  253. $messageId,
  254. $languages[$language],
  255. "message ID '$messageId' exists in translation file $language.json"
  256. );
  257. }
  258. }
  259. }
  260. }
  261. }