shlink/module/Common/test/Middleware/LocaleMiddlewareTest.php

64 lines
2.1 KiB
PHP
Raw Normal View History

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