TYPO3 CMS  TYPO3_8-7
LocalesTest.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
19 
23 class LocalesTest extends \TYPO3\TestingFramework\Core\Unit\UnitTestCase
24 {
28  protected $subject;
29 
30  protected function setUp()
31  {
32  $this->subject = GeneralUtility::makeInstance(Locales::class);
33  Locales::initialize();
34  }
35 
40  {
41  return [
42  'german' => [
43  'de-DE,de;q=0.8,en-US;q=0.6,en;q=0.4',
44  'de',
45  ],
46  'english as default' => [
47  'en-US;q=0.8,en;q=0.6;de-DE,de;q=0.4',
48  'default',
49  ],
50  'chinese simplified' => [
51  'zh-CN,en-US;q=0.5,en;q=0.3',
52  'ch'
53  ],
54  'chinese simplified han' => [
55  'zh-Hans-CN,zh-Hans;q=0.8,en-US;q=0.5,en;q=0.3',
56  'ch'
57  ],
58  ];
59  }
60 
68  public function browserLanguageDetectionWorks(string $acceptLanguageHeader, string $expected)
69  {
70  $detectedLanguage = $this->subject->getPreferredClientLanguage(
71  $acceptLanguageHeader
72  );
73  $this->assertSame($expected, $detectedLanguage);
74  }
75 }
browserLanguageDetectionWorks(string $acceptLanguageHeader, string $expected)
Definition: LocalesTest.php:68
static makeInstance($className,... $constructorArguments)