|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/* |
|
4
|
|
|
* This file is part of the Sylius package. |
|
5
|
|
|
* |
|
6
|
|
|
* (c) Paweł Jędrzejewski |
|
7
|
|
|
* |
|
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
|
9
|
|
|
* file that was distributed with this source code. |
|
10
|
|
|
*/ |
|
11
|
|
|
|
|
12
|
|
|
namespace spec\Sylius\Bundle\LocaleBundle\Templating\Helper; |
|
13
|
|
|
|
|
14
|
|
|
use PhpSpec\ObjectBehavior; |
|
15
|
|
|
use Sylius\Bundle\LocaleBundle\Templating\Helper\LocaleHelper; |
|
16
|
|
|
use Sylius\Bundle\LocaleBundle\Templating\Helper\LocaleHelperInterface; |
|
17
|
|
|
use Sylius\Component\Locale\Context\LocaleContextInterface; |
|
18
|
|
|
use Symfony\Component\Templating\Helper\Helper; |
|
19
|
|
|
|
|
20
|
|
|
/** |
|
21
|
|
|
* @mixin LocaleHelper |
|
22
|
|
|
* |
|
23
|
|
|
* @author Arnaud Langlade <[email protected]> |
|
24
|
|
|
*/ |
|
25
|
|
|
class LocaleHelperSpec extends ObjectBehavior |
|
26
|
|
|
{ |
|
27
|
|
|
function let(LocaleContextInterface $localeContext) |
|
28
|
|
|
{ |
|
29
|
|
|
$this->beConstructedWith($localeContext); |
|
30
|
|
|
} |
|
31
|
|
|
|
|
32
|
|
|
function it_is_initializable() |
|
33
|
|
|
{ |
|
34
|
|
|
$this->shouldHaveType('Sylius\Bundle\LocaleBundle\Templating\Helper\LocaleHelper'); |
|
35
|
|
|
} |
|
36
|
|
|
|
|
37
|
|
|
function it_is_a_helper() |
|
38
|
|
|
{ |
|
39
|
|
|
$this->shouldHaveType(Helper::class); |
|
40
|
|
|
} |
|
41
|
|
|
|
|
42
|
|
|
function it_implements_current_locale_helper_interface() |
|
43
|
|
|
{ |
|
44
|
|
|
$this->shouldImplement(LocaleHelperInterface::class); |
|
45
|
|
|
} |
|
46
|
|
|
|
|
47
|
|
|
function it_has_locale(LocaleContextInterface $localeContext) |
|
48
|
|
|
{ |
|
49
|
|
|
$localeContext->getCurrentLocale()->shouldBeCalled()->willReturn('fr_FR'); |
|
50
|
|
|
|
|
51
|
|
|
$this->getCurrentLocale()->shouldReturn('fr_FR'); |
|
52
|
|
|
} |
|
53
|
|
|
|
|
54
|
|
|
function it_converts_locales_code_to_name(LocaleContextInterface $localeContext) |
|
55
|
|
|
{ |
|
56
|
|
|
$localeContext->getCurrentLocale()->shouldBeCalled()->willReturn('en_US'); |
|
57
|
|
|
|
|
58
|
|
|
$this->convertToName('fr_FR')->shouldReturn('French (France)'); |
|
59
|
|
|
} |
|
60
|
|
|
|
|
61
|
|
|
function it_has_name() |
|
62
|
|
|
{ |
|
63
|
|
|
$this->getName()->shouldReturn('sylius_locale'); |
|
64
|
|
|
} |
|
65
|
|
|
} |
|
66
|
|
|
|