2016-07-30 17:17:21 +02:00
|
|
|
<?php
|
2017-10-12 10:13:20 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2016-07-30 17:17:21 +02:00
|
|
|
namespace ShlinkioTest\Shlink\Common\Middleware;
|
|
|
|
|
2017-03-24 20:34:18 +01:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-07-30 17:17:21 +02:00
|
|
|
use Shlinkio\Shlink\Common\Middleware\LocaleMiddleware;
|
2017-03-24 21:49:31 +01:00
|
|
|
use ShlinkioTest\Shlink\Common\Util\TestUtils;
|
2018-12-25 23:01:30 +01:00
|
|
|
use Zend\Diactoros\ServerRequest;
|
2016-07-30 17:17:21 +02:00
|
|
|
use Zend\I18n\Translator\Translator;
|
|
|
|
|
|
|
|
class LocaleMiddlewareTest extends TestCase
|
|
|
|
{
|
2018-11-20 19:30:27 +01:00
|
|
|
/** @var LocaleMiddleware */
|
2018-11-20 19:37:22 +01:00
|
|
|
private $middleware;
|
2018-11-20 19:30:27 +01:00
|
|
|
/** @var Translator */
|
2018-11-20 19:37:22 +01:00
|
|
|
private $translator;
|
2016-07-30 17:17:21 +02:00
|
|
|
|
2019-02-16 10:53:45 +01:00
|
|
|
public function setUp(): void
|
2016-07-30 17:17:21 +02:00
|
|
|
{
|
|
|
|
$this->translator = Translator::factory(['locale' => 'ru']);
|
|
|
|
$this->middleware = new LocaleMiddleware($this->translator);
|
|
|
|
}
|
|
|
|
|
2019-02-17 20:28:34 +01:00
|
|
|
/** @test */
|
|
|
|
public function whenNoHeaderIsPresentLocaleIsNotChanged(): void
|
2016-07-30 17:17:21 +02:00
|
|
|
{
|
|
|
|
$this->assertEquals('ru', $this->translator->getLocale());
|
2018-12-25 23:01:30 +01:00
|
|
|
$this->middleware->process(new ServerRequest(), TestUtils::createReqHandlerMock()->reveal());
|
2016-07-30 17:17:21 +02:00
|
|
|
$this->assertEquals('ru', $this->translator->getLocale());
|
|
|
|
}
|
|
|
|
|
2019-02-17 20:28:34 +01:00
|
|
|
/** @test */
|
|
|
|
public function whenTheHeaderIsPresentLocaleIsChanged(): void
|
2016-07-30 17:17:21 +02:00
|
|
|
{
|
|
|
|
$this->assertEquals('ru', $this->translator->getLocale());
|
2018-12-25 23:01:30 +01:00
|
|
|
$request = (new ServerRequest())->withHeader('Accept-Language', 'es');
|
2018-03-26 19:02:41 +02:00
|
|
|
$this->middleware->process($request, TestUtils::createReqHandlerMock()->reveal());
|
2016-07-30 17:17:21 +02:00
|
|
|
$this->assertEquals('es', $this->translator->getLocale());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
2018-11-18 17:00:23 +01:00
|
|
|
* @dataProvider provideLanguages
|
2016-07-30 17:17:21 +02:00
|
|
|
*/
|
2019-02-17 20:28:34 +01:00
|
|
|
public function localeGetsNormalized(string $lang, string $expected): void
|
2016-07-30 17:17:21 +02:00
|
|
|
{
|
2018-11-18 17:00:23 +01:00
|
|
|
$handler = TestUtils::createReqHandlerMock();
|
2017-03-24 21:49:31 +01:00
|
|
|
|
2016-07-30 17:17:21 +02:00
|
|
|
$this->assertEquals('ru', $this->translator->getLocale());
|
|
|
|
|
2018-12-25 23:01:30 +01:00
|
|
|
$request = (new ServerRequest())->withHeader('Accept-Language', $lang);
|
2018-11-18 17:00:23 +01:00
|
|
|
$this->middleware->process($request, $handler->reveal());
|
|
|
|
$this->assertEquals($expected, $this->translator->getLocale());
|
|
|
|
}
|
2016-07-30 17:17:21 +02:00
|
|
|
|
2019-02-17 20:28:34 +01:00
|
|
|
public function provideLanguages(): iterable
|
2018-11-18 17:00:23 +01:00
|
|
|
{
|
2019-02-17 20:28:34 +01:00
|
|
|
yield 'language only' => ['ru', 'ru'];
|
|
|
|
yield 'country and language with underscore' => ['es_ES', 'es'];
|
|
|
|
yield 'country and language with dash' => ['en-US', 'en'];
|
2016-07-30 17:17:21 +02:00
|
|
|
}
|
|
|
|
}
|