aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/private/L10N/Factory.php80
-rw-r--r--lib/public/L10N/IFactory.php35
-rw-r--r--tests/lib/L10N/FactoryTest.php355
3 files changed, 321 insertions, 149 deletions
diff --git a/lib/private/L10N/Factory.php b/lib/private/L10N/Factory.php
index caa26d81cc4..8aa09ab87bc 100644
--- a/lib/private/L10N/Factory.php
+++ b/lib/private/L10N/Factory.php
@@ -1,4 +1,7 @@
<?php
+
+declare(strict_types=1);
+
/**
* @copyright Copyright (c) 2016, ownCloud, Inc.
* @copyright 2016 Roeland Jago Douma <roeland@famdouma.nl>
@@ -42,6 +45,7 @@ use OCP\IUser;
use OCP\IUserSession;
use OCP\L10N\IFactory;
use OCP\L10N\ILanguageIterator;
+use function is_null;
/**
* A factory that generates language instances
@@ -157,21 +161,24 @@ class Factory implements IFactory {
/**
* Find the best language
*
- * @param string|null $app App id or null for core
+ * @param string|null $appId App id or null for core
+ *
* @return string language If nothing works it returns 'en'
*/
- public function findLanguage($app = null) {
+ public function findLanguage(?string $appId = null): string {
+ // Step 1: Forced language always has precedence over anything else
$forceLang = $this->config->getSystemValue('force_language', false);
if (is_string($forceLang)) {
$this->requestLanguage = $forceLang;
}
- if ($this->requestLanguage !== '' && $this->languageExists($app, $this->requestLanguage)) {
+ // Step 2: Return cached language
+ if ($this->requestLanguage !== '' && $this->languageExists($appId, $this->requestLanguage)) {
return $this->requestLanguage;
}
/**
- * At this point Nextcloud might not yet be installed and thus the lookup
+ * Step 3: At this point Nextcloud might not yet be installed and thus the lookup
* in the preferences table might fail. For this reason we need to check
* whether the instance has already been installed
*
@@ -188,30 +195,67 @@ class Factory implements IFactory {
$userId = null;
$userLang = null;
}
-
if ($userLang) {
$this->requestLanguage = $userLang;
- if ($this->languageExists($app, $userLang)) {
+ if ($this->languageExists($appId, $userLang)) {
return $userLang;
}
}
+ // Step 4: Check the request headers
try {
// Try to get the language from the Request
- $lang = $this->getLanguageFromRequest($app);
- if ($userId !== null && $app === null && !$userLang) {
+ $lang = $this->getLanguageFromRequest($appId);
+ if ($userId !== null && $appId === null && !$userLang) {
$this->config->setUserValue($userId, 'core', 'lang', $lang);
}
return $lang;
} catch (LanguageNotFoundException $e) {
// Finding language from request failed fall back to default language
$defaultLanguage = $this->config->getSystemValue('default_language', false);
- if ($defaultLanguage !== false && $this->languageExists($app, $defaultLanguage)) {
+ if ($defaultLanguage !== false && $this->languageExists($appId, $defaultLanguage)) {
return $defaultLanguage;
}
}
- // We could not find any language so fall back to english
+ // Step 5: fall back to English
+ return 'en';
+ }
+
+ public function findGenericLanguage(string $appId = null): string {
+ // Step 1: Forced language always has precedence over anything else
+ $forcedLanguage = $this->config->getSystemValue('force_language', false);
+ if ($forcedLanguage !== false) {
+ return $forcedLanguage;
+ }
+
+ // Step 2: Check if we have a default language
+ $defaultLanguage = $this->config->getSystemValue('default_language', false);
+ if ($defaultLanguage !== false && $this->languageExists($appId, $defaultLanguage)) {
+ return $defaultLanguage;
+ }
+
+ // Step 3.1: Check if Nextcloud is already installed before we try to access user info
+ if (!$this->config->getSystemValue('installed', false)) {
+ return 'en';
+ }
+ // Step 3.2: Check the current user (if any) for their preferred language
+ $user = $this->userSession->getUser();
+ if ($user !== null) {
+ $userLang = $this->config->getUserValue($user->getUID(), 'core', 'lang', null);
+ if ($userLang !== null) {
+ return $userLang;
+ }
+ }
+
+ // Step 4: Check the request headers
+ try {
+ return $this->getLanguageFromRequest($appId);
+ } catch (LanguageNotFoundException $e) {
+ // Ignore and continue
+ }
+
+ // Step 5: fall back to English
return 'en';
}
@@ -280,9 +324,9 @@ class Factory implements IFactory {
* Find all available languages for an app
*
* @param string|null $app App id or null for core
- * @return array an array of available languages
+ * @return string[] an array of available languages
*/
- public function findAvailableLanguages($app = null) {
+ public function findAvailableLanguages($app = null): array {
$key = $app;
if ($key === null) {
$key = 'null';
@@ -352,7 +396,7 @@ class Factory implements IFactory {
}
$languages = $this->findAvailableLanguages($app);
- return array_search($lang, $languages) !== false;
+ return in_array($lang, $languages);
}
public function getLanguageIterator(IUser $user = null): ILanguageIterator {
@@ -406,11 +450,9 @@ class Factory implements IFactory {
}
/**
- * @param string|null $app
- * @return string
* @throws LanguageNotFoundException
*/
- private function getLanguageFromRequest($app) {
+ private function getLanguageFromRequest(?string $app = null): string {
$header = $this->request->getHeader('ACCEPT_LANGUAGE');
if ($header !== '') {
$available = $this->findAvailableLanguages($app);
@@ -444,12 +486,8 @@ class Factory implements IFactory {
/**
* if default language is set to de_DE (formal German) this should be
* preferred to 'de' (non-formal German) if possible
- *
- * @param string|null $app
- * @param string $lang
- * @return string
*/
- protected function respectDefaultLanguage($app, $lang) {
+ protected function respectDefaultLanguage(?string $app, string $lang): string {
$result = $lang;
$defaultLanguage = $this->config->getSystemValue('default_language', false);
diff --git a/lib/public/L10N/IFactory.php b/lib/public/L10N/IFactory.php
index 3fe212edb9c..69b7d2281ce 100644
--- a/lib/public/L10N/IFactory.php
+++ b/lib/public/L10N/IFactory.php
@@ -1,4 +1,7 @@
<?php
+
+declare(strict_types=1);
+
/**
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
@@ -46,13 +49,35 @@ interface IFactory {
public function get($app, $lang = null, $locale = null);
/**
- * Find the best language
+ * Find the best language for the context of the current user
*
- * @param string|null $app App id or null for core
- * @return string language If nothing works it returns 'en'
+ * This method will try to find the most specific language based on info
+ * from the user who is logged into the current process and will fall
+ * back to system settings and heuristics otherwise.
+ *
+ * @param string|null $appId specify if you only want a language a specific app supports
+ *
+ * @return string language code, defaults to 'en' if no other matches are found
* @since 9.0.0
*/
- public function findLanguage($app = null);
+ public function findLanguage(?string $appId = null): string;
+
+ /**
+ * Try to find the best language for generic tasks
+ *
+ * This method will try to find the most generic language based on system
+ * settings, independent of the user logged into the current process. This
+ * is useful for tasks that are run for another user. E.g. the current user
+ * sends an email to someone else, then we don't want the current user's
+ * language to be picked but rather a instance-wide default that likely fits
+ * the target user
+ *
+ * @param string|null $appId specify if you only want a language a specific app supports
+ *
+ * @return string language code, defaults to 'en' if no other matches are found
+ * @since 23.0.0
+ */
+ public function findGenericLanguage(string $appId = null): string;
/**
* @param string|null $lang user language as default locale
@@ -78,7 +103,7 @@ interface IFactory {
* @return string[] an array of available languages
* @since 9.0.0
*/
- public function findAvailableLanguages($app = null);
+ public function findAvailableLanguages($app = null): array;
/**
* @return array an array of available
diff --git a/tests/lib/L10N/FactoryTest.php b/tests/lib/L10N/FactoryTest.php
index 33094f053d8..a2c1e8b5261 100644
--- a/tests/lib/L10N/FactoryTest.php
+++ b/tests/lib/L10N/FactoryTest.php
@@ -1,4 +1,7 @@
<?php
+
+declare(strict_types=1);
+
/**
* Copyright (c) 2016 Joas Schilling <nickvergessen@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
@@ -15,22 +18,18 @@ use OCP\IRequest;
use OCP\IUser;
use OCP\IUserSession;
use OCP\L10N\ILanguageIterator;
+use PHPUnit\Framework\MockObject\MockObject;
use Test\TestCase;
-/**
- * Class FactoryTest
- *
- * @package Test\L10N
- */
class FactoryTest extends TestCase {
- /** @var IConfig|\PHPUnit\Framework\MockObject\MockObject */
+ /** @var IConfig|MockObject */
protected $config;
- /** @var IRequest|\PHPUnit\Framework\MockObject\MockObject */
+ /** @var IRequest|MockObject */
protected $request;
- /** @var IUserSession|\PHPUnit\Framework\MockObject\MockObject */
+ /** @var IUserSession|MockObject */
protected $userSession;
/** @var string */
@@ -39,29 +38,22 @@ class FactoryTest extends TestCase {
protected function setUp(): void {
parent::setUp();
- $this->config = $this->getMockBuilder(IConfig::class)
- ->disableOriginalConstructor()
- ->getMock();
-
- $this->request = $this->getMockBuilder(IRequest::class)
- ->disableOriginalConstructor()
- ->getMock();
-
- $this->userSession = $this->getMockBuilder(IUserSession::class)
- ->disableOriginalConstructor()
- ->getMock();
+ $this->config = $this->createMock(IConfig::class);
+ $this->request = $this->createMock(IRequest::class);
+ $this->userSession = $this->createMock(IUserSession::class);
$this->serverRoot = \OC::$SERVERROOT;
}
/**
- * @param array $methods
+ * @param string[] $methods
* @param bool $mockRequestGetHeaderMethod
- * @return Factory|\PHPUnit\Framework\MockObject\MockObject
+ *
+ * @return Factory|MockObject
*/
protected function getFactory(array $methods = [], $mockRequestGetHeaderMethod = false) {
if ($mockRequestGetHeaderMethod) {
- $this->request->expects($this->any())
+ $this->request->expects(self::any())
->method('getHeader')
->willReturn('');
}
@@ -76,245 +68,245 @@ class FactoryTest extends TestCase {
])
->setMethods($methods)
->getMock();
- } else {
- return new Factory($this->config, $this->request, $this->userSession, $this->serverRoot);
}
+
+ return new Factory($this->config, $this->request, $this->userSession, $this->serverRoot);
}
- public function dataFindAvailableLanguages() {
+ public function dataFindAvailableLanguages(): array {
return [
[null],
['files'],
];
}
- public function testFindLanguageWithExistingRequestLanguageAndNoApp() {
+ public function testFindLanguageWithExistingRequestLanguageAndNoApp(): void {
$factory = $this->getFactory(['languageExists']);
$this->invokePrivate($factory, 'requestLanguage', ['de']);
- $factory->expects($this->once())
+ $factory->expects(self::once())
->method('languageExists')
->with(null, 'de')
->willReturn(true);
- $this->assertSame('de', $factory->findLanguage());
+ self::assertSame('de', $factory->findLanguage());
}
- public function testFindLanguageWithExistingRequestLanguageAndApp() {
+ public function testFindLanguageWithExistingRequestLanguageAndApp(): void {
$factory = $this->getFactory(['languageExists']);
$this->invokePrivate($factory, 'requestLanguage', ['de']);
- $factory->expects($this->once())
+ $factory->expects(self::once())
->method('languageExists')
->with('MyApp', 'de')
->willReturn(true);
- $this->assertSame('de', $factory->findLanguage('MyApp'));
+ self::assertSame('de', $factory->findLanguage('MyApp'));
}
- public function testFindLanguageWithNotExistingRequestLanguageAndExistingStoredUserLanguage() {
+ public function testFindLanguageWithNotExistingRequestLanguageAndExistingStoredUserLanguage(): void {
$factory = $this->getFactory(['languageExists']);
$this->invokePrivate($factory, 'requestLanguage', ['de']);
- $factory->expects($this->at(0))
+ $factory->expects(self::at(0))
->method('languageExists')
->with('MyApp', 'de')
->willReturn(false);
$this->config
- ->expects($this->at(0))
+ ->expects(self::at(0))
->method('getSystemValue')
->with('force_language', false)
->willReturn(false);
$this->config
- ->expects($this->at(1))
+ ->expects(self::at(1))
->method('getSystemValue')
->with('installed', false)
->willReturn(true);
$user = $this->getMockBuilder(IUser::class)
->getMock();
- $user->expects($this->once())
+ $user->expects(self::once())
->method('getUID')
->willReturn('MyUserUid');
$this->userSession
- ->expects($this->exactly(2))
+ ->expects(self::exactly(2))
->method('getUser')
->willReturn($user);
$this->config
- ->expects($this->once())
+ ->expects(self::once())
->method('getUserValue')
->with('MyUserUid', 'core', 'lang', null)
->willReturn('jp');
- $factory->expects($this->at(1))
+ $factory->expects(self::at(1))
->method('languageExists')
->with('MyApp', 'jp')
->willReturn(true);
- $this->assertSame('jp', $factory->findLanguage('MyApp'));
+ self::assertSame('jp', $factory->findLanguage('MyApp'));
}
- public function testFindLanguageWithNotExistingRequestLanguageAndNotExistingStoredUserLanguage() {
+ public function testFindLanguageWithNotExistingRequestLanguageAndNotExistingStoredUserLanguage(): void {
$factory = $this->getFactory(['languageExists'], true);
$this->invokePrivate($factory, 'requestLanguage', ['de']);
- $factory->expects($this->at(0))
+ $factory->expects(self::at(0))
->method('languageExists')
->with('MyApp', 'de')
->willReturn(false);
$this->config
- ->expects($this->at(0))
+ ->expects(self::at(0))
->method('getSystemValue')
->with('force_language', false)
->willReturn(false);
$this->config
- ->expects($this->at(1))
+ ->expects(self::at(1))
->method('getSystemValue')
->with('installed', false)
->willReturn(true);
$user = $this->getMockBuilder(IUser::class)
->getMock();
- $user->expects($this->once())
+ $user->expects(self::once())
->method('getUID')
->willReturn('MyUserUid');
$this->userSession
- ->expects($this->exactly(2))
+ ->expects(self::exactly(2))
->method('getUser')
->willReturn($user);
$this->config
- ->expects($this->once())
+ ->expects(self::once())
->method('getUserValue')
->with('MyUserUid', 'core', 'lang', null)
->willReturn('jp');
- $factory->expects($this->at(1))
+ $factory->expects(self::at(1))
->method('languageExists')
->with('MyApp', 'jp')
->willReturn(false);
$this->config
- ->expects($this->at(3))
+ ->expects(self::at(3))
->method('getSystemValue')
->with('default_language', false)
->willReturn('es');
- $factory->expects($this->at(2))
+ $factory->expects(self::at(2))
->method('languageExists')
->with('MyApp', 'es')
->willReturn(true);
- $this->assertSame('es', $factory->findLanguage('MyApp'));
+ self::assertSame('es', $factory->findLanguage('MyApp'));
}
- public function testFindLanguageWithNotExistingRequestLanguageAndNotExistingStoredUserLanguageAndNotExistingDefault() {
+ public function testFindLanguageWithNotExistingRequestLanguageAndNotExistingStoredUserLanguageAndNotExistingDefault(): void {
$factory = $this->getFactory(['languageExists'], true);
$this->invokePrivate($factory, 'requestLanguage', ['de']);
- $factory->expects($this->at(0))
+ $factory->expects(self::at(0))
->method('languageExists')
->with('MyApp', 'de')
->willReturn(false);
$this->config
- ->expects($this->at(0))
+ ->expects(self::at(0))
->method('getSystemValue')
->with('force_language', false)
->willReturn(false);
$this->config
- ->expects($this->at(1))
+ ->expects(self::at(1))
->method('getSystemValue')
->with('installed', false)
->willReturn(true);
$user = $this->getMockBuilder(IUser::class)
->getMock();
- $user->expects($this->once())
+ $user->expects(self::once())
->method('getUID')
->willReturn('MyUserUid');
$this->userSession
- ->expects($this->exactly(2))
+ ->expects(self::exactly(2))
->method('getUser')
->willReturn($user);
$this->config
- ->expects($this->once())
+ ->expects(self::once())
->method('getUserValue')
->with('MyUserUid', 'core', 'lang', null)
->willReturn('jp');
- $factory->expects($this->at(1))
+ $factory->expects(self::at(1))
->method('languageExists')
->with('MyApp', 'jp')
->willReturn(false);
$this->config
- ->expects($this->at(3))
+ ->expects(self::at(3))
->method('getSystemValue')
->with('default_language', false)
->willReturn('es');
- $factory->expects($this->at(2))
+ $factory->expects(self::at(2))
->method('languageExists')
->with('MyApp', 'es')
->willReturn(false);
$this->config
- ->expects($this->never())
+ ->expects(self::never())
->method('setUserValue');
- $this->assertSame('en', $factory->findLanguage('MyApp'));
+ self::assertSame('en', $factory->findLanguage('MyApp'));
}
- public function testFindLanguageWithNotExistingRequestLanguageAndNotExistingStoredUserLanguageAndNotExistingDefaultAndNoAppInScope() {
+ public function testFindLanguageWithNotExistingRequestLanguageAndNotExistingStoredUserLanguageAndNotExistingDefaultAndNoAppInScope(): void {
$factory = $this->getFactory(['languageExists'], true);
$this->invokePrivate($factory, 'requestLanguage', ['de']);
- $factory->expects($this->at(0))
+ $factory->expects(self::at(0))
->method('languageExists')
->with('MyApp', 'de')
->willReturn(false);
$this->config
- ->expects($this->at(0))
+ ->expects(self::at(0))
->method('getSystemValue')
->with('force_language', false)
->willReturn(false);
$this->config
- ->expects($this->at(1))
+ ->expects(self::at(1))
->method('getSystemValue')
->with('installed', false)
->willReturn(true);
$user = $this->getMockBuilder(IUser::class)
->getMock();
- $user->expects($this->once())
+ $user->expects(self::once())
->method('getUID')
->willReturn('MyUserUid');
$this->userSession
- ->expects($this->exactly(2))
+ ->expects(self::exactly(2))
->method('getUser')
->willReturn($user);
$this->config
- ->expects($this->once())
+ ->expects(self::once())
->method('getUserValue')
->with('MyUserUid', 'core', 'lang', null)
->willReturn('jp');
- $factory->expects($this->at(1))
+ $factory->expects(self::at(1))
->method('languageExists')
->with('MyApp', 'jp')
->willReturn(false);
$this->config
- ->expects($this->at(3))
+ ->expects(self::at(3))
->method('getSystemValue')
->with('default_language', false)
->willReturn('es');
- $factory->expects($this->at(2))
+ $factory->expects(self::at(2))
->method('languageExists')
->with('MyApp', 'es')
->willReturn(false);
$this->config
- ->expects($this->never())
+ ->expects(self::never())
->method('setUserValue')
->with('MyUserUid', 'core', 'lang', 'en');
- $this->assertSame('en', $factory->findLanguage('MyApp'));
+ self::assertSame('en', $factory->findLanguage('MyApp'));
}
- public function testFindLanguageWithForcedLanguage() {
+ public function testFindLanguageWithForcedLanguage(): void {
$factory = $this->getFactory(['languageExists']);
$this->config
- ->expects($this->at(0))
+ ->expects(self::at(0))
->method('getSystemValue')
->with('force_language', false)
->willReturn('de');
- $factory->expects($this->once())
+ $factory->expects(self::once())
->method('languageExists')
->with('MyApp', 'de')
->willReturn(true);
- $this->assertSame('de', $factory->findLanguage('MyApp'));
+ self::assertSame('de', $factory->findLanguage('MyApp'));
}
/**
@@ -322,17 +314,17 @@ class FactoryTest extends TestCase {
*
* @param string|null $app
*/
- public function testFindAvailableLanguages($app) {
+ public function testFindAvailableLanguages($app): void {
$factory = $this->getFactory(['findL10nDir']);
- $factory->expects($this->once())
+ $factory->expects(self::once())
->method('findL10nDir')
->with($app)
->willReturn(\OC::$SERVERROOT . '/tests/data/l10n/');
- $this->assertEqualsCanonicalizing(['cs', 'de', 'en', 'ru'], $factory->findAvailableLanguages($app));
+ self::assertEqualsCanonicalizing(['cs', 'de', 'en', 'ru'], $factory->findAvailableLanguages($app));
}
- public function dataLanguageExists() {
+ public function dataLanguageExists(): array {
return [
[null, 'en', [], true],
[null, 'de', [], false],
@@ -345,22 +337,22 @@ class FactoryTest extends TestCase {
];
}
- public function testFindAvailableLanguagesWithThemes() {
+ public function testFindAvailableLanguagesWithThemes(): void {
$this->serverRoot .= '/tests/data';
$app = 'files';
$factory = $this->getFactory(['findL10nDir']);
- $factory->expects($this->once())
+ $factory->expects(self::once())
->method('findL10nDir')
->with($app)
->willReturn($this->serverRoot . '/apps/files/l10n/');
$this->config
- ->expects($this->once())
+ ->expects(self::once())
->method('getSystemValue')
->with('theme')
->willReturn('abc');
- $this->assertEqualsCanonicalizing(['en', 'zz'], $factory->findAvailableLanguages($app));
+ self::assertEqualsCanonicalizing(['en', 'zz'], $factory->findAvailableLanguages($app));
}
/**
@@ -371,17 +363,17 @@ class FactoryTest extends TestCase {
* @param string[] $availableLanguages
* @param string $expected
*/
- public function testLanguageExists($app, $lang, array $availableLanguages, $expected) {
+ public function testLanguageExists($app, $lang, array $availableLanguages, $expected): void {
$factory = $this->getFactory(['findAvailableLanguages']);
- $factory->expects(($lang === 'en') ? $this->never() : $this->once())
+ $factory->expects(($lang === 'en') ? self::never() : self::once())
->method('findAvailableLanguages')
->with($app)
->willReturn($availableLanguages);
- $this->assertSame($expected, $factory->languageExists($app, $lang));
+ self::assertSame($expected, $factory->languageExists($app, $lang));
}
- public function dataSetLanguageFromRequest() {
+ public function dataSetLanguageFromRequest(): array {
return [
// Language is available
[null, 'de', ['de'], 'de'],
@@ -411,19 +403,19 @@ class FactoryTest extends TestCase {
* @param string[] $availableLanguages
* @param string $expected
*/
- public function testGetLanguageFromRequest($app, $header, array $availableLanguages, $expected) {
+ public function testGetLanguageFromRequest($app, $header, array $availableLanguages, $expected): void {
$factory = $this->getFactory(['findAvailableLanguages', 'respectDefaultLanguage']);
- $factory->expects($this->once())
+ $factory->expects(self::once())
->method('findAvailableLanguages')
->with($app)
->willReturn($availableLanguages);
- $factory->expects($this->any())
+ $factory->expects(self::any())
->method('respectDefaultLanguage')->willReturnCallback(function ($app, $lang) {
return $lang;
});
- $this->request->expects($this->once())
+ $this->request->expects(self::once())
->method('getHeader')
->with('ACCEPT_LANGUAGE')
->willReturn($header);
@@ -432,11 +424,11 @@ class FactoryTest extends TestCase {
$this->expectException(LanguageNotFoundException::class);
self::invokePrivate($factory, 'getLanguageFromRequest', [$app]);
} else {
- $this->assertSame($expected, self::invokePrivate($factory, 'getLanguageFromRequest', [$app]), 'Asserting returned language');
+ self::assertSame($expected, self::invokePrivate($factory, 'getLanguageFromRequest', [$app]), 'Asserting returned language');
}
}
- public function dataGetL10nFilesForApp() {
+ public function dataGetL10nFilesForApp(): array {
return [
[null, 'de', [\OC::$SERVERROOT . '/core/l10n/de.json']],
['core', 'ru', [\OC::$SERVERROOT . '/core/l10n/ru.json']],
@@ -454,12 +446,12 @@ class FactoryTest extends TestCase {
* @param string|null $app
* @param string $expected
*/
- public function testGetL10nFilesForApp($app, $lang, $expected) {
+ public function testGetL10nFilesForApp($app, $lang, $expected): void {
$factory = $this->getFactory();
- $this->assertSame($expected, $this->invokePrivate($factory, 'getL10nFilesForApp', [$app, $lang]));
+ self::assertSame($expected, $this->invokePrivate($factory, 'getL10nFilesForApp', [$app, $lang]));
}
- public function dataFindL10NDir() {
+ public function dataFindL10NDir(): array {
return [
[null, \OC::$SERVERROOT . '/core/l10n/'],
['core', \OC::$SERVERROOT . '/core/l10n/'],
@@ -476,12 +468,12 @@ class FactoryTest extends TestCase {
* @param string|null $app
* @param string $expected
*/
- public function testFindL10NDir($app, $expected) {
+ public function testFindL10NDir($app, $expected): void {
$factory = $this->getFactory();
- $this->assertSame($expected, $this->invokePrivate($factory, 'findL10nDir', [$app]));
+ self::assertSame($expected, $this->invokePrivate($factory, 'findL10nDir', [$app]));
}
- public function dataFindLanguage() {
+ public function dataFindLanguage(): array {
return [
// Not logged in
[false, [], 'en'],
@@ -503,12 +495,12 @@ class FactoryTest extends TestCase {
* @param array $availableLang
* @param string $expected
*/
- public function testFindLanguage($loggedIn, $availableLang, $expected) {
+ public function testFindLanguage($loggedIn, $availableLang, $expected): void {
$userLang = 'nl';
$browserLang = 'de';
$defaultLang = 'fr';
- $this->config->expects($this->any())
+ $this->config->expects(self::any())
->method('getSystemValue')
->willReturnCallback(function ($var, $default) use ($defaultLang) {
if ($var === 'installed') {
@@ -523,50 +515,167 @@ class FactoryTest extends TestCase {
if ($loggedIn) {
$user = $this->getMockBuilder(IUser::class)
->getMock();
- $user->expects($this->any())
+ $user->expects(self::any())
->method('getUID')
->willReturn('MyUserUid');
$this->userSession
- ->expects($this->any())
+ ->expects(self::any())
->method('getUser')
->willReturn($user);
- $this->config->expects($this->any())
+ $this->config->expects(self::any())
->method('getUserValue')
->with('MyUserUid', 'core', 'lang', null)
->willReturn($userLang);
} else {
$this->userSession
- ->expects($this->any())
+ ->expects(self::any())
->method('getUser')
->willReturn(null);
}
- $this->request->expects($this->any())
+ $this->request->expects(self::any())
->method('getHeader')
->with($this->equalTo('ACCEPT_LANGUAGE'))
->willReturn($browserLang);
$factory = $this->getFactory(['languageExists', 'findAvailableLanguages', 'respectDefaultLanguage']);
- $factory->expects($this->any())
+ $factory->expects(self::any())
->method('languageExists')
->willReturnCallback(function ($app, $lang) use ($availableLang) {
return in_array($lang, $availableLang);
});
- $factory->expects($this->any())
+ $factory->expects(self::any())
->method('findAvailableLanguages')
->willReturnCallback(function ($app) use ($availableLang) {
return $availableLang;
});
- $factory->expects($this->any())
+ $factory->expects(self::any())
->method('respectDefaultLanguage')->willReturnCallback(function ($app, $lang) {
return $lang;
});
- $lang = $factory->findLanguage(null);
- $this->assertSame($expected, $lang);
+ $lang = $factory->findLanguage();
+
+ self::assertSame($expected, $lang);
+ }
+
+ public function testFindGenericLanguageByEnforcedLanguage(): void {
+ $factory = $this->getFactory();
+ $this->config->expects(self::once())
+ ->method('getSystemValue')
+ ->with('force_language', false)
+ ->willReturn('cz');
+
+ $lang = $factory->findGenericLanguage();
+
+ self::assertSame('cz', $lang);
+ }
+
+ public function testFindGenericLanguageByDefaultLanguage(): void {
+ $factory = $this->getFactory(['languageExists']);
+ $this->config->expects(self::exactly(2))
+ ->method('getSystemValue')
+ ->willReturnMap([
+ ['force_language', false, false,],
+ ['default_language', false, 'cz',],
+ ]);
+ $factory->expects(self::once())
+ ->method('languageExists')
+ ->with(null, 'cz')
+ ->willReturn(true);
+
+ $lang = $factory->findGenericLanguage();
+
+ self::assertSame('cz', $lang);
+ }
+
+ public function testFindGenericLanguageByUserLanguage(): void {
+ $factory = $this->getFactory();
+ $this->config->expects(self::exactly(3))
+ ->method('getSystemValue')
+ ->willReturnMap([
+ ['force_language', false, false,],
+ ['default_language', false, false,],
+ ['installed', false, true],
+ ]);
+ $user = $this->createMock(IUser::class);
+ $this->userSession->expects(self::once())
+ ->method('getUser')
+ ->willReturn($user);
+ $user->method('getUID')->willReturn('user123');
+ $this->config->expects(self::once())
+ ->method('getUserValue')
+ ->with('user123', 'core', 'lang', null)
+ ->willReturn('cz');
+
+ $lang = $factory->findGenericLanguage();
+
+ self::assertSame('cz', $lang);
+ }
+
+ public function testFindGenericLanguageByRequestLanguage(): void {
+ $factory = $this->getFactory(['findAvailableLanguages', 'languageExists']);
+ $this->config->method('getSystemValue')
+ ->willReturnMap([
+ ['force_language', false, false,],
+ ['default_language', false, false,],
+ ['installed', false, true],
+ ]);
+ $user = $this->createMock(IUser::class);
+ $this->userSession->expects(self::once())
+ ->method('getUser')
+ ->willReturn($user);
+ $user->method('getUID')->willReturn('user123');
+ $this->config->expects(self::once())
+ ->method('getUserValue')
+ ->with('user123', 'core', 'lang', null)
+ ->willReturn(null);
+ $this->request->expects(self::once())
+ ->method('getHeader')
+ ->with('ACCEPT_LANGUAGE')
+ ->willReturn('cz');
+ $factory->expects(self::once())
+ ->method('findAvailableLanguages')
+ ->with(null)
+ ->willReturn(['cz']);
+
+ $lang = $factory->findGenericLanguage();
+
+ self::assertSame('cz', $lang);
+ }
+
+ public function testFindGenericLanguageFallback(): void {
+ $factory = $this->getFactory(['findAvailableLanguages', 'languageExists']);
+ $this->config->method('getSystemValue')
+ ->willReturnMap([
+ ['force_language', false, false,],
+ ['default_language', false, false,],
+ ['installed', false, true],
+ ]);
+ $user = $this->createMock(IUser::class);
+ $this->userSession->expects(self::once())
+ ->method('getUser')
+ ->willReturn($user);
+ $user->method('getUID')->willReturn('user123');
+ $this->config->expects(self::once())
+ ->method('getUserValue')
+ ->with('user123', 'core', 'lang', null)
+ ->willReturn(null);
+ $this->request->expects(self::once())
+ ->method('getHeader')
+ ->with('ACCEPT_LANGUAGE')
+ ->willReturn('');
+ $factory->expects(self::never())
+ ->method('findAvailableLanguages');
+ $factory->expects(self::never())
+ ->method('languageExists');
+
+ $lang = $factory->findGenericLanguage();
+
+ self::assertSame('en', $lang);
}
- public function dataTestRespectDefaultLanguage() {
+ public function dataTestRespectDefaultLanguage(): array {
return [
['de', 'de_DE', true, 'de_DE'],
['de', 'de', true, 'de'],
@@ -585,15 +694,15 @@ class FactoryTest extends TestCase {
* @param bool $langExists
* @param string $expected
*/
- public function testRespectDefaultLanguage($lang, $defaultLanguage, $langExists, $expected) {
+ public function testRespectDefaultLanguage($lang, $defaultLanguage, $langExists, $expected): void {
$factory = $this->getFactory(['languageExists']);
- $factory->expects($this->any())
+ $factory->expects(self::any())
->method('languageExists')->willReturn($langExists);
- $this->config->expects($this->any())
+ $this->config->expects(self::any())
->method('getSystemValue')->with('default_language', false)->willReturn($defaultLanguage);
$result = $this->invokePrivate($factory, 'respectDefaultLanguage', ['app', $lang]);
- $this->assertSame($expected, $result);
+ self::assertSame($expected, $result);
}
public function languageIteratorRequestProvider():array {
@@ -607,11 +716,11 @@ class FactoryTest extends TestCase {
/**
* @dataProvider languageIteratorRequestProvider
*/
- public function testGetLanguageIterator(bool $hasSession, IUser $iUserMock = null) {
+ public function testGetLanguageIterator(bool $hasSession, IUser $iUserMock = null): void {
$factory = $this->getFactory();
if ($iUserMock === null) {
- $matcher = $this->userSession->expects($this->once())
+ $matcher = $this->userSession->expects(self::once())
->method('getUser');
if ($hasSession) {
@@ -622,6 +731,6 @@ class FactoryTest extends TestCase {
}
$iterator = $factory->getLanguageIterator($iUserMock);
- $this->assertInstanceOf(ILanguageIterator::class, $iterator);
+ self::assertInstanceOf(ILanguageIterator::class, $iterator);
}
}