2016-01-15 18:24:31 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2016 Joas Schilling <nickvergessen@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Test\L10N;
|
|
|
|
|
|
|
|
use OC\L10N\Factory;
|
2017-04-07 11:52:17 +03:00
|
|
|
use OC\L10N\LanguageNotFoundException;
|
2016-09-04 14:15:46 +03:00
|
|
|
use OCP\IConfig;
|
|
|
|
use OCP\IRequest;
|
|
|
|
use OCP\IUser;
|
|
|
|
use OCP\IUserSession;
|
2018-07-05 01:41:59 +03:00
|
|
|
use OCP\L10N\ILanguageIterator;
|
2016-01-15 18:24:31 +03:00
|
|
|
use Test\TestCase;
|
|
|
|
|
|
|
|
/**
|
2016-01-18 11:53:25 +03:00
|
|
|
* Class FactoryTest
|
|
|
|
*
|
|
|
|
* @package Test\L10N
|
2016-01-15 18:24:31 +03:00
|
|
|
*/
|
|
|
|
class FactoryTest extends TestCase {
|
2016-01-18 11:53:25 +03:00
|
|
|
|
2016-09-04 14:15:46 +03:00
|
|
|
/** @var IConfig|\PHPUnit_Framework_MockObject_MockObject */
|
2016-01-18 11:53:25 +03:00
|
|
|
protected $config;
|
|
|
|
|
2016-09-04 14:15:46 +03:00
|
|
|
/** @var IRequest|\PHPUnit_Framework_MockObject_MockObject */
|
2016-01-15 18:24:31 +03:00
|
|
|
protected $request;
|
|
|
|
|
2016-09-04 14:15:46 +03:00
|
|
|
/** @var IUserSession|\PHPUnit_Framework_MockObject_MockObject */
|
2016-01-27 17:54:57 +03:00
|
|
|
protected $userSession;
|
|
|
|
|
2016-03-18 15:59:44 +03:00
|
|
|
/** @var string */
|
|
|
|
protected $serverRoot;
|
|
|
|
|
2019-11-27 17:27:18 +03:00
|
|
|
protected function setUp(): void {
|
2016-01-15 18:24:31 +03:00
|
|
|
parent::setUp();
|
|
|
|
|
2016-09-04 14:15:46 +03:00
|
|
|
$this->config = $this->getMockBuilder(IConfig::class)
|
2016-01-18 11:53:25 +03:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
2016-09-04 14:15:46 +03:00
|
|
|
$this->request = $this->getMockBuilder(IRequest::class)
|
2016-01-15 18:24:31 +03:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2016-01-27 17:54:57 +03:00
|
|
|
|
2016-09-04 14:15:46 +03:00
|
|
|
$this->userSession = $this->getMockBuilder(IUserSession::class)
|
2016-08-25 23:37:14 +03:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2016-03-18 15:59:44 +03:00
|
|
|
|
|
|
|
$this->serverRoot = \OC::$SERVERROOT;
|
2016-01-15 18:24:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array $methods
|
2018-01-12 16:15:12 +03:00
|
|
|
* @param bool $mockRequestGetHeaderMethod
|
2016-01-15 18:24:31 +03:00
|
|
|
* @return Factory|\PHPUnit_Framework_MockObject_MockObject
|
|
|
|
*/
|
2018-01-12 16:15:12 +03:00
|
|
|
protected function getFactory(array $methods = [], $mockRequestGetHeaderMethod = false) {
|
|
|
|
if ($mockRequestGetHeaderMethod) {
|
|
|
|
$this->request->expects($this->any())
|
|
|
|
->method('getHeader')
|
|
|
|
->willReturn('');
|
|
|
|
}
|
|
|
|
|
2016-01-15 18:24:31 +03:00
|
|
|
if (!empty($methods)) {
|
2016-09-04 14:15:46 +03:00
|
|
|
return $this->getMockBuilder(Factory::class)
|
2016-01-15 18:24:31 +03:00
|
|
|
->setConstructorArgs([
|
2016-01-18 11:53:25 +03:00
|
|
|
$this->config,
|
2016-01-15 18:24:31 +03:00
|
|
|
$this->request,
|
2016-03-18 15:59:44 +03:00
|
|
|
$this->userSession,
|
|
|
|
$this->serverRoot,
|
2016-01-15 18:24:31 +03:00
|
|
|
])
|
|
|
|
->setMethods($methods)
|
|
|
|
->getMock();
|
|
|
|
} else {
|
2016-03-18 15:59:44 +03:00
|
|
|
return new Factory($this->config, $this->request, $this->userSession, $this->serverRoot);
|
2016-01-15 18:24:31 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-27 17:54:57 +03:00
|
|
|
public function dataFindAvailableLanguages() {
|
2016-01-18 11:53:25 +03:00
|
|
|
return [
|
2016-01-27 17:54:57 +03:00
|
|
|
[null],
|
|
|
|
['files'],
|
2016-01-18 11:53:25 +03:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2016-01-27 17:54:57 +03:00
|
|
|
public function testFindLanguageWithExistingRequestLanguageAndNoApp() {
|
|
|
|
$factory = $this->getFactory(['languageExists']);
|
|
|
|
$this->invokePrivate($factory, 'requestLanguage', ['de']);
|
|
|
|
$factory->expects($this->once())
|
|
|
|
->method('languageExists')
|
|
|
|
->with(null, 'de')
|
|
|
|
->willReturn(true);
|
2016-01-18 11:53:25 +03:00
|
|
|
|
2016-01-27 17:54:57 +03:00
|
|
|
$this->assertSame('de', $factory->findLanguage());
|
|
|
|
}
|
2016-01-18 11:53:25 +03:00
|
|
|
|
2016-01-27 17:54:57 +03:00
|
|
|
public function testFindLanguageWithExistingRequestLanguageAndApp() {
|
|
|
|
$factory = $this->getFactory(['languageExists']);
|
|
|
|
$this->invokePrivate($factory, 'requestLanguage', ['de']);
|
|
|
|
$factory->expects($this->once())
|
|
|
|
->method('languageExists')
|
|
|
|
->with('MyApp', 'de')
|
|
|
|
->willReturn(true);
|
2016-01-18 11:53:25 +03:00
|
|
|
|
2016-01-27 17:54:57 +03:00
|
|
|
$this->assertSame('de', $factory->findLanguage('MyApp'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testFindLanguageWithNotExistingRequestLanguageAndExistingStoredUserLanguage() {
|
|
|
|
$factory = $this->getFactory(['languageExists']);
|
|
|
|
$this->invokePrivate($factory, 'requestLanguage', ['de']);
|
|
|
|
$factory->expects($this->at(0))
|
|
|
|
->method('languageExists')
|
|
|
|
->with('MyApp', 'de')
|
|
|
|
->willReturn(false);
|
|
|
|
$this->config
|
2018-05-09 13:05:46 +03:00
|
|
|
->expects($this->at(0))
|
|
|
|
->method('getSystemValue')
|
|
|
|
->with('force_language', false)
|
|
|
|
->willReturn(false);
|
|
|
|
$this->config
|
|
|
|
->expects($this->at(1))
|
2016-01-18 11:53:25 +03:00
|
|
|
->method('getSystemValue')
|
2016-01-27 17:54:57 +03:00
|
|
|
->with('installed', false)
|
|
|
|
->willReturn(true);
|
2016-09-04 14:15:46 +03:00
|
|
|
$user = $this->getMockBuilder(IUser::class)
|
2016-08-25 23:37:14 +03:00
|
|
|
->getMock();
|
2016-01-27 17:54:57 +03:00
|
|
|
$user->expects($this->once())
|
|
|
|
->method('getUID')
|
|
|
|
->willReturn('MyUserUid');
|
|
|
|
$this->userSession
|
|
|
|
->expects($this->exactly(2))
|
|
|
|
->method('getUser')
|
|
|
|
->willReturn($user);
|
|
|
|
$this->config
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getUserValue')
|
|
|
|
->with('MyUserUid', 'core', 'lang', null)
|
|
|
|
->willReturn('jp');
|
|
|
|
$factory->expects($this->at(1))
|
|
|
|
->method('languageExists')
|
|
|
|
->with('MyApp', 'jp')
|
|
|
|
->willReturn(true);
|
2016-01-18 11:53:25 +03:00
|
|
|
|
2016-01-27 17:54:57 +03:00
|
|
|
$this->assertSame('jp', $factory->findLanguage('MyApp'));
|
2016-01-18 11:53:25 +03:00
|
|
|
}
|
|
|
|
|
2016-01-27 17:54:57 +03:00
|
|
|
public function testFindLanguageWithNotExistingRequestLanguageAndNotExistingStoredUserLanguage() {
|
2018-01-12 16:15:12 +03:00
|
|
|
$factory = $this->getFactory(['languageExists'], true);
|
2016-01-27 17:54:57 +03:00
|
|
|
$this->invokePrivate($factory, 'requestLanguage', ['de']);
|
|
|
|
$factory->expects($this->at(0))
|
|
|
|
->method('languageExists')
|
|
|
|
->with('MyApp', 'de')
|
|
|
|
->willReturn(false);
|
|
|
|
$this->config
|
2018-05-09 13:05:46 +03:00
|
|
|
->expects($this->at(0))
|
|
|
|
->method('getSystemValue')
|
|
|
|
->with('force_language', false)
|
|
|
|
->willReturn(false);
|
|
|
|
$this->config
|
|
|
|
->expects($this->at(1))
|
2016-01-27 17:54:57 +03:00
|
|
|
->method('getSystemValue')
|
|
|
|
->with('installed', false)
|
|
|
|
->willReturn(true);
|
2016-09-04 14:15:46 +03:00
|
|
|
$user = $this->getMockBuilder(IUser::class)
|
2016-08-25 23:37:14 +03:00
|
|
|
->getMock();
|
2016-01-27 17:54:57 +03:00
|
|
|
$user->expects($this->once())
|
|
|
|
->method('getUID')
|
|
|
|
->willReturn('MyUserUid');
|
|
|
|
$this->userSession
|
|
|
|
->expects($this->exactly(2))
|
|
|
|
->method('getUser')
|
|
|
|
->willReturn($user);
|
|
|
|
$this->config
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getUserValue')
|
|
|
|
->with('MyUserUid', 'core', 'lang', null)
|
|
|
|
->willReturn('jp');
|
|
|
|
$factory->expects($this->at(1))
|
|
|
|
->method('languageExists')
|
|
|
|
->with('MyApp', 'jp')
|
|
|
|
->willReturn(false);
|
|
|
|
$this->config
|
2018-05-09 13:05:46 +03:00
|
|
|
->expects($this->at(3))
|
2016-01-27 17:54:57 +03:00
|
|
|
->method('getSystemValue')
|
|
|
|
->with('default_language', false)
|
|
|
|
->willReturn('es');
|
|
|
|
$factory->expects($this->at(2))
|
|
|
|
->method('languageExists')
|
|
|
|
->with('MyApp', 'es')
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$this->assertSame('es', $factory->findLanguage('MyApp'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testFindLanguageWithNotExistingRequestLanguageAndNotExistingStoredUserLanguageAndNotExistingDefault() {
|
2018-01-12 16:15:12 +03:00
|
|
|
$factory = $this->getFactory(['languageExists'], true);
|
2016-01-27 17:54:57 +03:00
|
|
|
$this->invokePrivate($factory, 'requestLanguage', ['de']);
|
|
|
|
$factory->expects($this->at(0))
|
|
|
|
->method('languageExists')
|
|
|
|
->with('MyApp', 'de')
|
|
|
|
->willReturn(false);
|
|
|
|
$this->config
|
2018-05-09 13:05:46 +03:00
|
|
|
->expects($this->at(0))
|
|
|
|
->method('getSystemValue')
|
|
|
|
->with('force_language', false)
|
|
|
|
->willReturn(false);
|
|
|
|
$this->config
|
|
|
|
->expects($this->at(1))
|
2016-01-27 17:54:57 +03:00
|
|
|
->method('getSystemValue')
|
|
|
|
->with('installed', false)
|
|
|
|
->willReturn(true);
|
2016-09-04 14:15:46 +03:00
|
|
|
$user = $this->getMockBuilder(IUser::class)
|
2016-08-25 23:37:14 +03:00
|
|
|
->getMock();
|
2016-01-27 17:54:57 +03:00
|
|
|
$user->expects($this->once())
|
|
|
|
->method('getUID')
|
|
|
|
->willReturn('MyUserUid');
|
|
|
|
$this->userSession
|
|
|
|
->expects($this->exactly(2))
|
|
|
|
->method('getUser')
|
|
|
|
->willReturn($user);
|
|
|
|
$this->config
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getUserValue')
|
|
|
|
->with('MyUserUid', 'core', 'lang', null)
|
|
|
|
->willReturn('jp');
|
|
|
|
$factory->expects($this->at(1))
|
|
|
|
->method('languageExists')
|
|
|
|
->with('MyApp', 'jp')
|
|
|
|
->willReturn(false);
|
|
|
|
$this->config
|
2018-05-09 13:05:46 +03:00
|
|
|
->expects($this->at(3))
|
2016-01-27 17:54:57 +03:00
|
|
|
->method('getSystemValue')
|
|
|
|
->with('default_language', false)
|
|
|
|
->willReturn('es');
|
|
|
|
$factory->expects($this->at(2))
|
|
|
|
->method('languageExists')
|
|
|
|
->with('MyApp', 'es')
|
|
|
|
->willReturn(false);
|
|
|
|
$this->config
|
|
|
|
->expects($this->never())
|
|
|
|
->method('setUserValue');
|
|
|
|
|
|
|
|
$this->assertSame('en', $factory->findLanguage('MyApp'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testFindLanguageWithNotExistingRequestLanguageAndNotExistingStoredUserLanguageAndNotExistingDefaultAndNoAppInScope() {
|
2018-01-12 16:15:12 +03:00
|
|
|
$factory = $this->getFactory(['languageExists'], true);
|
2016-01-27 17:54:57 +03:00
|
|
|
$this->invokePrivate($factory, 'requestLanguage', ['de']);
|
|
|
|
$factory->expects($this->at(0))
|
|
|
|
->method('languageExists')
|
|
|
|
->with('MyApp', 'de')
|
|
|
|
->willReturn(false);
|
|
|
|
$this->config
|
2018-05-09 13:05:46 +03:00
|
|
|
->expects($this->at(0))
|
|
|
|
->method('getSystemValue')
|
|
|
|
->with('force_language', false)
|
|
|
|
->willReturn(false);
|
|
|
|
$this->config
|
|
|
|
->expects($this->at(1))
|
2016-01-27 17:54:57 +03:00
|
|
|
->method('getSystemValue')
|
|
|
|
->with('installed', false)
|
|
|
|
->willReturn(true);
|
2016-09-04 14:15:46 +03:00
|
|
|
$user = $this->getMockBuilder(IUser::class)
|
2016-08-25 23:37:14 +03:00
|
|
|
->getMock();
|
2016-01-27 17:54:57 +03:00
|
|
|
$user->expects($this->once())
|
|
|
|
->method('getUID')
|
|
|
|
->willReturn('MyUserUid');
|
|
|
|
$this->userSession
|
|
|
|
->expects($this->exactly(2))
|
|
|
|
->method('getUser')
|
|
|
|
->willReturn($user);
|
|
|
|
$this->config
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getUserValue')
|
|
|
|
->with('MyUserUid', 'core', 'lang', null)
|
|
|
|
->willReturn('jp');
|
|
|
|
$factory->expects($this->at(1))
|
|
|
|
->method('languageExists')
|
|
|
|
->with('MyApp', 'jp')
|
|
|
|
->willReturn(false);
|
|
|
|
$this->config
|
2018-05-09 13:05:46 +03:00
|
|
|
->expects($this->at(3))
|
2016-01-27 17:54:57 +03:00
|
|
|
->method('getSystemValue')
|
|
|
|
->with('default_language', false)
|
|
|
|
->willReturn('es');
|
|
|
|
$factory->expects($this->at(2))
|
|
|
|
->method('languageExists')
|
|
|
|
->with('MyApp', 'es')
|
|
|
|
->willReturn(false);
|
|
|
|
$this->config
|
|
|
|
->expects($this->never())
|
|
|
|
->method('setUserValue')
|
|
|
|
->with('MyUserUid', 'core', 'lang', 'en');
|
|
|
|
|
|
|
|
|
|
|
|
$this->assertSame('en', $factory->findLanguage('MyApp'));
|
2016-01-18 12:00:29 +03:00
|
|
|
}
|
|
|
|
|
2018-05-09 13:05:46 +03:00
|
|
|
public function testFindLanguageWithForcedLanguage() {
|
|
|
|
$factory = $this->getFactory(['languageExists']);
|
|
|
|
$this->config
|
|
|
|
->expects($this->at(0))
|
|
|
|
->method('getSystemValue')
|
|
|
|
->with('force_language', false)
|
|
|
|
->willReturn('de');
|
|
|
|
|
|
|
|
$factory->expects($this->once())
|
|
|
|
->method('languageExists')
|
|
|
|
->with('MyApp', 'de')
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$this->assertSame('de', $factory->findLanguage('MyApp'));
|
|
|
|
}
|
|
|
|
|
2016-01-18 12:00:29 +03:00
|
|
|
/**
|
|
|
|
* @dataProvider dataFindAvailableLanguages
|
|
|
|
*
|
|
|
|
* @param string|null $app
|
|
|
|
*/
|
|
|
|
public function testFindAvailableLanguages($app) {
|
|
|
|
$factory = $this->getFactory(['findL10nDir']);
|
|
|
|
$factory->expects($this->once())
|
|
|
|
->method('findL10nDir')
|
|
|
|
->with($app)
|
|
|
|
->willReturn(\OC::$SERVERROOT . '/tests/data/l10n/');
|
|
|
|
|
2020-07-23 14:38:49 +03:00
|
|
|
$this->assertEqualsCanonicalizing(['cs', 'de', 'en', 'ru'], $factory->findAvailableLanguages($app));
|
2016-01-18 12:00:29 +03:00
|
|
|
}
|
|
|
|
|
2016-01-15 18:24:31 +03:00
|
|
|
public function dataLanguageExists() {
|
|
|
|
return [
|
|
|
|
[null, 'en', [], true],
|
|
|
|
[null, 'de', [], false],
|
|
|
|
[null, 'de', ['ru'], false],
|
|
|
|
[null, 'de', ['ru', 'de'], true],
|
|
|
|
['files', 'en', [], true],
|
|
|
|
['files', 'de', [], false],
|
|
|
|
['files', 'de', ['ru'], false],
|
|
|
|
['files', 'de', ['de', 'ru'], true],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2016-03-17 18:15:37 +03:00
|
|
|
public function testFindAvailableLanguagesWithThemes() {
|
2016-03-18 15:59:44 +03:00
|
|
|
$this->serverRoot .= '/tests/data';
|
2016-03-17 18:15:37 +03:00
|
|
|
$app = 'files';
|
|
|
|
|
|
|
|
$factory = $this->getFactory(['findL10nDir']);
|
|
|
|
$factory->expects($this->once())
|
|
|
|
->method('findL10nDir')
|
|
|
|
->with($app)
|
2016-03-18 15:59:44 +03:00
|
|
|
->willReturn($this->serverRoot . '/apps/files/l10n/');
|
2016-03-17 18:15:37 +03:00
|
|
|
$this->config
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getSystemValue')
|
|
|
|
->with('theme')
|
|
|
|
->willReturn('abc');
|
|
|
|
|
2020-07-23 14:38:49 +03:00
|
|
|
$this->assertEqualsCanonicalizing(['en', 'zz'], $factory->findAvailableLanguages($app));
|
2016-03-17 18:15:37 +03:00
|
|
|
}
|
|
|
|
|
2016-01-15 18:24:31 +03:00
|
|
|
/**
|
|
|
|
* @dataProvider dataLanguageExists
|
|
|
|
*
|
|
|
|
* @param string|null $app
|
|
|
|
* @param string $lang
|
|
|
|
* @param string[] $availableLanguages
|
|
|
|
* @param string $expected
|
|
|
|
*/
|
|
|
|
public function testLanguageExists($app, $lang, array $availableLanguages, $expected) {
|
|
|
|
$factory = $this->getFactory(['findAvailableLanguages']);
|
|
|
|
$factory->expects(($lang === 'en') ? $this->never() : $this->once())
|
|
|
|
->method('findAvailableLanguages')
|
|
|
|
->with($app)
|
|
|
|
->willReturn($availableLanguages);
|
|
|
|
|
|
|
|
$this->assertSame($expected, $factory->languageExists($app, $lang));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dataSetLanguageFromRequest() {
|
|
|
|
return [
|
|
|
|
// Language is available
|
2017-04-07 11:52:17 +03:00
|
|
|
[null, 'de', ['de'], 'de'],
|
|
|
|
[null, 'de,en', ['de'], 'de'],
|
|
|
|
[null, 'de-DE,en-US;q=0.8,en;q=0.6', ['de'], 'de'],
|
2016-01-15 18:24:31 +03:00
|
|
|
// Language is not available
|
2017-04-07 11:52:17 +03:00
|
|
|
[null, 'de', ['ru'], new LanguageNotFoundException()],
|
|
|
|
[null, 'de,en', ['ru', 'en'], 'en'],
|
|
|
|
[null, 'de-DE,en-US;q=0.8,en;q=0.6', ['ru', 'en'], 'en'],
|
|
|
|
|
|
|
|
// Language for app
|
|
|
|
['files_pdfviewer', 'de', ['de'], 'de'],
|
|
|
|
['files_pdfviewer', 'de,en', ['de'], 'de'],
|
|
|
|
['files_pdfviewer', 'de-DE,en-US;q=0.8,en;q=0.6', ['de'], 'de'],
|
|
|
|
// Language for app is not available
|
|
|
|
['files_pdfviewer', 'de', ['ru'], new LanguageNotFoundException()],
|
|
|
|
['files_pdfviewer', 'de,en', ['ru', 'en'], 'en'],
|
|
|
|
['files_pdfviewer', 'de-DE,en-US;q=0.8,en;q=0.6', ['ru', 'en'], 'en'],
|
2016-01-15 18:24:31 +03:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataSetLanguageFromRequest
|
|
|
|
*
|
|
|
|
* @param string|null $app
|
|
|
|
* @param string $header
|
|
|
|
* @param string[] $availableLanguages
|
|
|
|
* @param string $expected
|
|
|
|
*/
|
2017-04-07 11:52:17 +03:00
|
|
|
public function testGetLanguageFromRequest($app, $header, array $availableLanguages, $expected) {
|
2017-11-30 14:47:55 +03:00
|
|
|
$factory = $this->getFactory(['findAvailableLanguages', 'respectDefaultLanguage']);
|
2016-01-15 18:24:31 +03:00
|
|
|
$factory->expects($this->once())
|
|
|
|
->method('findAvailableLanguages')
|
|
|
|
->with($app)
|
|
|
|
->willReturn($availableLanguages);
|
|
|
|
|
2017-11-30 14:47:55 +03:00
|
|
|
$factory->expects($this->any())
|
2020-04-09 14:53:40 +03:00
|
|
|
->method('respectDefaultLanguage')->willReturnCallback(function ($app, $lang) {
|
2017-11-30 14:47:55 +03:00
|
|
|
return $lang;
|
|
|
|
});
|
|
|
|
|
2016-01-15 18:24:31 +03:00
|
|
|
$this->request->expects($this->once())
|
|
|
|
->method('getHeader')
|
|
|
|
->with('ACCEPT_LANGUAGE')
|
|
|
|
->willReturn($header);
|
|
|
|
|
2017-04-07 11:52:17 +03:00
|
|
|
if ($expected instanceof LanguageNotFoundException) {
|
2018-01-24 20:10:16 +03:00
|
|
|
$this->expectException(LanguageNotFoundException::class);
|
2017-04-07 11:52:17 +03:00
|
|
|
self::invokePrivate($factory, 'getLanguageFromRequest', [$app]);
|
|
|
|
} else {
|
|
|
|
$this->assertSame($expected, self::invokePrivate($factory, 'getLanguageFromRequest', [$app]), 'Asserting returned language');
|
2016-01-15 18:24:31 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dataGetL10nFilesForApp() {
|
|
|
|
return [
|
|
|
|
[null, 'de', [\OC::$SERVERROOT . '/core/l10n/de.json']],
|
|
|
|
['core', 'ru', [\OC::$SERVERROOT . '/core/l10n/ru.json']],
|
|
|
|
['lib', 'ru', [\OC::$SERVERROOT . '/lib/l10n/ru.json']],
|
2019-09-17 17:33:27 +03:00
|
|
|
['settings', 'de', [\OC::$SERVERROOT . '/apps/settings/l10n/de.json']],
|
2016-01-15 18:24:31 +03:00
|
|
|
['files', 'de', [\OC::$SERVERROOT . '/apps/files/l10n/de.json']],
|
|
|
|
['files', '_lang_never_exists_', []],
|
|
|
|
['_app_never_exists_', 'de', [\OC::$SERVERROOT . '/core/l10n/de.json']],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataGetL10nFilesForApp
|
|
|
|
*
|
|
|
|
* @param string|null $app
|
|
|
|
* @param string $expected
|
|
|
|
*/
|
|
|
|
public function testGetL10nFilesForApp($app, $lang, $expected) {
|
|
|
|
$factory = $this->getFactory();
|
|
|
|
$this->assertSame($expected, $this->invokePrivate($factory, 'getL10nFilesForApp', [$app, $lang]));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dataFindL10NDir() {
|
|
|
|
return [
|
|
|
|
[null, \OC::$SERVERROOT . '/core/l10n/'],
|
|
|
|
['core', \OC::$SERVERROOT . '/core/l10n/'],
|
|
|
|
['lib', \OC::$SERVERROOT . '/lib/l10n/'],
|
2019-09-17 17:33:27 +03:00
|
|
|
['settings', \OC::$SERVERROOT . '/apps/settings/l10n/'],
|
2016-01-15 18:24:31 +03:00
|
|
|
['files', \OC::$SERVERROOT . '/apps/files/l10n/'],
|
|
|
|
['_app_never_exists_', \OC::$SERVERROOT . '/core/l10n/'],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataFindL10NDir
|
|
|
|
*
|
|
|
|
* @param string|null $app
|
|
|
|
* @param string $expected
|
|
|
|
*/
|
|
|
|
public function testFindL10NDir($app, $expected) {
|
|
|
|
$factory = $this->getFactory();
|
|
|
|
$this->assertSame($expected, $this->invokePrivate($factory, 'findL10nDir', [$app]));
|
|
|
|
}
|
|
|
|
|
2016-09-04 14:15:46 +03:00
|
|
|
public function dataFindLanguage() {
|
|
|
|
return [
|
|
|
|
// Not logged in
|
|
|
|
[false, [], 'en'],
|
|
|
|
[false, ['fr'], 'fr'],
|
|
|
|
[false, ['de', 'fr'], 'de'],
|
|
|
|
[false, ['nl', 'de', 'fr'], 'de'],
|
|
|
|
|
|
|
|
[true, [], 'en'],
|
|
|
|
[true, ['fr'], 'fr'],
|
|
|
|
[true, ['de', 'fr'], 'de'],
|
|
|
|
[true, ['nl', 'de', 'fr'], 'nl'],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataFindLanguage
|
|
|
|
*
|
|
|
|
* @param bool $loggedIn
|
|
|
|
* @param array $availableLang
|
|
|
|
* @param string $expected
|
|
|
|
*/
|
|
|
|
public function testFindLanguage($loggedIn, $availableLang, $expected) {
|
|
|
|
$userLang = 'nl';
|
|
|
|
$browserLang = 'de';
|
|
|
|
$defaultLang = 'fr';
|
|
|
|
|
|
|
|
$this->config->expects($this->any())
|
|
|
|
->method('getSystemValue')
|
2020-04-09 14:53:40 +03:00
|
|
|
->willReturnCallback(function ($var, $default) use ($defaultLang) {
|
2016-09-04 14:15:46 +03:00
|
|
|
if ($var === 'installed') {
|
|
|
|
return true;
|
2020-04-10 11:35:09 +03:00
|
|
|
} elseif ($var === 'default_language') {
|
2016-09-04 14:15:46 +03:00
|
|
|
return $defaultLang;
|
|
|
|
} else {
|
|
|
|
return $default;
|
|
|
|
}
|
2020-03-26 00:21:27 +03:00
|
|
|
});
|
2016-09-04 14:15:46 +03:00
|
|
|
|
|
|
|
if ($loggedIn) {
|
|
|
|
$user = $this->getMockBuilder(IUser::class)
|
|
|
|
->getMock();
|
|
|
|
$user->expects($this->any())
|
|
|
|
->method('getUID')
|
|
|
|
->willReturn('MyUserUid');
|
|
|
|
$this->userSession
|
|
|
|
->expects($this->any())
|
|
|
|
->method('getUser')
|
|
|
|
->willReturn($user);
|
|
|
|
$this->config->expects($this->any())
|
|
|
|
->method('getUserValue')
|
|
|
|
->with('MyUserUid', 'core', 'lang', null)
|
|
|
|
->willReturn($userLang);
|
|
|
|
} else {
|
|
|
|
$this->userSession
|
|
|
|
->expects($this->any())
|
|
|
|
->method('getUser')
|
|
|
|
->willReturn(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->request->expects($this->any())
|
|
|
|
->method('getHeader')
|
|
|
|
->with($this->equalTo('ACCEPT_LANGUAGE'))
|
|
|
|
->willReturn($browserLang);
|
|
|
|
|
2017-11-30 14:47:55 +03:00
|
|
|
$factory = $this->getFactory(['languageExists', 'findAvailableLanguages', 'respectDefaultLanguage']);
|
2016-09-04 14:15:46 +03:00
|
|
|
$factory->expects($this->any())
|
|
|
|
->method('languageExists')
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturnCallback(function ($app, $lang) use ($availableLang) {
|
2016-09-04 14:15:46 +03:00
|
|
|
return in_array($lang, $availableLang);
|
2020-03-26 00:21:27 +03:00
|
|
|
});
|
2016-09-04 14:15:46 +03:00
|
|
|
$factory->expects($this->any())
|
|
|
|
->method('findAvailableLanguages')
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturnCallback(function ($app) use ($availableLang) {
|
2016-09-04 14:15:46 +03:00
|
|
|
return $availableLang;
|
2020-03-26 00:21:27 +03:00
|
|
|
});
|
2017-11-30 14:47:55 +03:00
|
|
|
$factory->expects($this->any())
|
2020-04-09 14:53:40 +03:00
|
|
|
->method('respectDefaultLanguage')->willReturnCallback(function ($app, $lang) {
|
2020-04-10 15:19:56 +03:00
|
|
|
return $lang;
|
2017-11-30 14:47:55 +03:00
|
|
|
});
|
2016-09-04 14:15:46 +03:00
|
|
|
|
|
|
|
$lang = $factory->findLanguage(null);
|
|
|
|
$this->assertSame($expected, $lang);
|
|
|
|
}
|
2017-11-30 14:47:55 +03:00
|
|
|
|
|
|
|
public function dataTestRespectDefaultLanguage() {
|
|
|
|
return [
|
|
|
|
['de', 'de_DE', true, 'de_DE'],
|
|
|
|
['de', 'de', true, 'de'],
|
|
|
|
['de', false, true, 'de'],
|
|
|
|
['fr', 'de_DE', true, 'fr'],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* test if we respect default language if possible
|
|
|
|
*
|
|
|
|
* @dataProvider dataTestRespectDefaultLanguage
|
|
|
|
*
|
|
|
|
* @param string $lang
|
|
|
|
* @param string $defaultLanguage
|
|
|
|
* @param bool $langExists
|
|
|
|
* @param string $expected
|
|
|
|
*/
|
|
|
|
public function testRespectDefaultLanguage($lang, $defaultLanguage, $langExists, $expected) {
|
|
|
|
$factory = $this->getFactory(['languageExists']);
|
|
|
|
$factory->expects($this->any())
|
|
|
|
->method('languageExists')->willReturn($langExists);
|
|
|
|
$this->config->expects($this->any())
|
|
|
|
->method('getSystemValue')->with('default_language', false)->willReturn($defaultLanguage);
|
|
|
|
|
|
|
|
$result = $this->invokePrivate($factory, 'respectDefaultLanguage', ['app', $lang]);
|
|
|
|
$this->assertSame($expected, $result);
|
|
|
|
}
|
|
|
|
|
2018-07-05 01:41:59 +03:00
|
|
|
public function languageIteratorRequestProvider():array {
|
|
|
|
return [
|
|
|
|
[ true, $this->createMock(IUser::class)],
|
|
|
|
[ false, $this->createMock(IUser::class)],
|
|
|
|
[ false, null]
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider languageIteratorRequestProvider
|
|
|
|
*/
|
|
|
|
public function testGetLanguageIterator(bool $hasSession, IUser $iUserMock = null) {
|
|
|
|
$factory = $this->getFactory();
|
|
|
|
|
2020-04-10 15:19:56 +03:00
|
|
|
if ($iUserMock === null) {
|
2018-07-05 01:41:59 +03:00
|
|
|
$matcher = $this->userSession->expects($this->once())
|
|
|
|
->method('getUser');
|
|
|
|
|
2020-04-10 15:19:56 +03:00
|
|
|
if ($hasSession) {
|
2018-07-05 01:41:59 +03:00
|
|
|
$matcher->willReturn($this->createMock(IUser::class));
|
|
|
|
} else {
|
|
|
|
$this->expectException(\RuntimeException::class);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$iterator = $factory->getLanguageIterator($iUserMock);
|
|
|
|
$this->assertInstanceOf(ILanguageIterator::class, $iterator);
|
|
|
|
}
|
2016-01-15 18:24:31 +03:00
|
|
|
}
|