I18nTest.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  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 testBrowserLanguageZhHantDetection()
  112. {
  113. foreach ([
  114. 'zh-Hant,zh;q=0.8,en;q=0.2' => 'zh-tw',
  115. 'zh-Hant-TW,zh;q=0.8,en;q=0.2' => 'zh-tw',
  116. 'zh-TW,en;q=0.2' => 'zh-tw',
  117. 'zh-TW-u-nu-hanidec,en;q=0.2' => 'zh-tw',
  118. 'zh-HK,zh;q=0.8,en;q=0.2' => 'zh-tw',
  119. 'zh-MO,zh;q=0.8,en;q=0.2' => 'zh-tw',
  120. 'zh-Hant,zh-Hans;q=0.8,en;q=0.2' => 'zh-tw',
  121. 'zh-CN,zh-Hant;q=0.8,en;q=0.2' => 'zh',
  122. 'zh-Hans,zh-Hant;q=0.8,en;q=0.2' => 'zh',
  123. 'zh-Hans-CN,en;q=0.2' => 'zh',
  124. 'zh;q=0.9,zh-Hant;q=0.8,en;q=0.2' => 'zh',
  125. ] as $acceptedLanguage => $language) {
  126. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = $acceptedLanguage;
  127. I18n::loadTranslations();
  128. $this->assertEquals($language, I18n::getLanguage(), 'browser language ' . $acceptedLanguage);
  129. }
  130. }
  131. public function testBrowserLanguagePlDetection()
  132. {
  133. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'pl;q=0.8,en-GB;q=0.6,en-US;q=0.4,en;q=0.2';
  134. I18n::loadTranslations();
  135. $this->assertEquals('pl', I18n::getLanguage(), 'browser language pl');
  136. $this->assertEquals('1 godzina', I18n::_('%d hours', 1), '1 hour in Polish');
  137. $this->assertEquals('2 godziny', I18n::_('%d hours', 2), '2 hours in Polish');
  138. $this->assertEquals('12 godzin', I18n::_('%d hours', 12), '12 hours in Polish');
  139. $this->assertEquals('22 godziny', I18n::_('%d hours', 22), '22 hours in Polish');
  140. $this->assertEquals('1 minuta', I18n::_('%d minutes', 1), '1 minute in Polish');
  141. $this->assertEquals('3 minuty', I18n::_('%d minutes', 3), '3 minutes in Polish');
  142. $this->assertEquals('13 minut', I18n::_('%d minutes', 13), '13 minutes in Polish');
  143. $this->assertEquals('23 minuty', I18n::_('%d minutes', 23), '23 minutes in Polish');
  144. }
  145. public function testBrowserLanguageRuDetection()
  146. {
  147. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'ru;q=0.8,en-GB;q=0.6,en-US;q=0.4,en;q=0.2';
  148. I18n::loadTranslations();
  149. $this->assertEquals('ru', I18n::getLanguage(), 'browser language ru');
  150. $this->assertEquals('1 минуту', I18n::_('%d minutes', 1), '1 minute in Russian');
  151. $this->assertEquals('3 минуты', I18n::_('%d minutes', 3), '3 minutes in Russian');
  152. $this->assertEquals('10 минут', I18n::_('%d minutes', 10), '10 minutes in Russian');
  153. $this->assertEquals('21 минуту', I18n::_('%d minutes', 21), '21 minutes in Russian');
  154. }
  155. public function testBrowserLanguageSlDetection()
  156. {
  157. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'sl;q=0.8,en-GB;q=0.6,en-US;q=0.4,en;q=0.2';
  158. I18n::loadTranslations();
  159. $this->assertEquals('sl', I18n::getLanguage(), 'browser language sl');
  160. $this->assertEquals('0 ura', I18n::_('%d hours', 0), '0 hours in Slovene');
  161. $this->assertEquals('1 uri', I18n::_('%d hours', 1), '1 hour in Slovene');
  162. $this->assertEquals('2 ure', I18n::_('%d hours', 2), '2 hours in Slovene');
  163. $this->assertEquals('3 ur', I18n::_('%d hours', 3), '3 hours in Slovene');
  164. $this->assertEquals('11 ura', I18n::_('%d hours', 11), '11 hours in Slovene');
  165. $this->assertEquals('101 uri', I18n::_('%d hours', 101), '101 hours in Slovene');
  166. $this->assertEquals('102 ure', I18n::_('%d hours', 102), '102 hours in Slovene');
  167. $this->assertEquals('104 ur', I18n::_('%d hours', 104), '104 hours in Slovene');
  168. }
  169. public function testBrowserLanguageCsDetection()
  170. {
  171. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'cs;q=0.8,en-GB;q=0.6,en-US;q=0.4,en;q=0.2';
  172. I18n::loadTranslations();
  173. $this->assertEquals('cs', I18n::getLanguage(), 'browser language cs');
  174. $this->assertEquals('1 hodina', I18n::_('%d hours', 1), '1 hour in Czech');
  175. $this->assertEquals('2 hodiny', I18n::_('%d hours', 2), '2 hours in Czech');
  176. $this->assertEquals('5 minut', I18n::_('%d minutes', 5), '5 minutes in Czech');
  177. $this->assertEquals('14 minut', I18n::_('%d minutes', 14), '14 minutes in Czech');
  178. }
  179. public function testBrowserLanguageAnyDetection()
  180. {
  181. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = '*';
  182. I18n::loadTranslations();
  183. $this->assertTrue(strlen(I18n::getLanguage()) >= 2, 'browser language any');
  184. }
  185. public function testVariableInjection()
  186. {
  187. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'foobar';
  188. I18n::loadTranslations();
  189. $this->assertEquals('some string + 1', I18n::_('some %s + %d', 'string', 1), 'browser language en');
  190. }
  191. public function testHtmlEntityEncoding()
  192. {
  193. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'foobar';
  194. I18n::loadTranslations();
  195. $input = '&<>"\'/`=';
  196. $result = htmlspecialchars($input, ENT_QUOTES | ENT_HTML5 | ENT_DISALLOWED, 'UTF-8', false);
  197. $this->assertEquals($result, I18n::encode($input), 'encodes HTML entities');
  198. $this->assertEquals('<a>some ' . $result . ' + 1</a>', I18n::_('<a>some %s + %d</a>', $input, 1), 'encodes parameters in translations');
  199. // Message ID should NOT be encoded (it comes from trusted source), only the parameter should be
  200. $this->assertEquals($input . $result, I18n::_($input . '%s', $input), 'encodes only parameters, not message ID');
  201. }
  202. public function testApostropheEncodngInMessage()
  203. {
  204. $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'fr';
  205. I18n::loadTranslations();
  206. // For example, the French translation should not have the apostrophe encoded
  207. // See https://github.com/PrivateBin/PrivateBin/issues/1712
  208. $message = I18n::_('Document does not exist, has expired or has been deleted.');
  209. $this->assertFalse(str_contains($message, '&apos;'), 'French apostrophe should not be encoded in translation message');
  210. $this->assertTrue(str_contains($message, "n'existe"), 'French apostrophe should be present as literal character');
  211. }
  212. public function testFallbackAlwaysPresent()
  213. {
  214. $path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_i18n';
  215. if (!is_dir($path)) {
  216. mkdir($path);
  217. }
  218. $languageIterator = new AppendIterator();
  219. $languageIterator->append(new GlobIterator(I18nMock::getPath('??.json')));
  220. $languageIterator->append(new GlobIterator(I18nMock::getPath('???.json'))); // for jbo
  221. $languageIterator->append(new GlobIterator(I18nMock::getPath('??-??.json'))); // for regional variants like zh-tw
  222. $languageCount = 0;
  223. foreach ($languageIterator as $file) {
  224. ++$languageCount;
  225. $this->assertTrue(copy($file->getPathname(), $path . DIRECTORY_SEPARATOR . $file->getBasename()));
  226. }
  227. I18nMock::resetPath($path);
  228. $languagesDevelopment = I18nMock::getAvailableLanguages();
  229. $this->assertEquals($languageCount, count($languagesDevelopment), 'all copied languages detected');
  230. $this->assertTrue(in_array('en', $languagesDevelopment), 'English fallback present');
  231. unlink($path . DIRECTORY_SEPARATOR . 'en.json');
  232. I18nMock::resetAvailableLanguages();
  233. $languagesDeployed = I18nMock::getAvailableLanguages();
  234. $this->assertEquals($languageCount, count($languagesDeployed), 'all copied languages detected, plus fallback');
  235. $this->assertTrue(in_array('en', $languagesDeployed), 'English fallback still present');
  236. I18nMock::resetAvailableLanguages();
  237. I18nMock::resetPath();
  238. Helper::rmDir($path);
  239. }
  240. public function testGetCopyHotkey()
  241. {
  242. $_SERVER['HTTP_USER_AGENT'] = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)';
  243. $this->assertEquals('Cmd', I18n::getCopyHotkey(), 'returns Cmd on macOS');
  244. $_SERVER['HTTP_USER_AGENT'] = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)';
  245. $this->assertEquals('Ctrl', I18n::getCopyHotkey(), 'returns Ctrl on Windows');
  246. $_SERVER['HTTP_USER_AGENT'] = 'Mozilla/5.0 (X11; Linux x86_64)';
  247. $this->assertEquals('Ctrl', I18n::getCopyHotkey(), 'returns Ctrl on Linux');
  248. unset($_SERVER['HTTP_USER_AGENT']);
  249. $this->assertEquals('Ctrl', I18n::getCopyHotkey(), 'returns Ctrl when user agent absent');
  250. }
  251. public function testRightToLeftLanguages()
  252. {
  253. foreach (['ar', 'fa', 'he'] as $language) {
  254. $_COOKIE['lang'] = $language;
  255. I18n::loadTranslations();
  256. $this->assertTrue(I18n::isRtl(), "$language is right-to-left");
  257. }
  258. $_COOKIE['lang'] = 'en';
  259. I18n::loadTranslations();
  260. $this->assertFalse(I18n::isRtl(), 'English is left-to-right');
  261. }
  262. public function testMessageIdsExistInAllLanguages()
  263. {
  264. $messageIds = [];
  265. $languages = [];
  266. foreach (new DirectoryIterator(PATH . 'i18n') as $file) {
  267. $fileNameLength = strlen($file->getFilename());
  268. if ($fileNameLength === 7) { // xx.json
  269. $language = substr($file->getFilename(), 0, 2);
  270. } elseif ($fileNameLength === 8) { // jbo.json
  271. $language = substr($file->getFilename(), 0, 3);
  272. } elseif ($fileNameLength === 10) { // xx-xx.json
  273. $language = substr($file->getFilename(), 0, 5);
  274. } else {
  275. continue;
  276. }
  277. $languageJson = file_get_contents($file->getPathname());
  278. $languageMessageIds = array_keys(Json::decode($languageJson));
  279. $messageIds = array_unique(array_merge($messageIds, $languageMessageIds));
  280. $languages[$language] = $languageMessageIds;
  281. }
  282. foreach ($messageIds as $messageId) {
  283. foreach (array_keys($languages) as $language) {
  284. // most languages don't translate the data size units, ignore those
  285. if ($messageId !== 'B' && strlen($messageId) !== 3 && strpos($messageId, 'B', 2) !== 2) {
  286. $this->assertContains(
  287. $messageId,
  288. $languages[$language],
  289. "message ID '$messageId' exists in translation file $language.json"
  290. );
  291. }
  292. }
  293. }
  294. }
  295. }