I18nTest.php 14 KB

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