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\Component\Grid\Definition; |
13
|
|
|
|
14
|
|
|
use PhpSpec\ObjectBehavior; |
15
|
|
|
use Sylius\Component\Grid\Definition\Action; |
16
|
|
|
|
17
|
|
|
/** |
18
|
|
|
* @author Paweł Jędrzejewski <[email protected]> |
19
|
|
|
*/ |
20
|
|
|
final class ActionSpec extends ObjectBehavior |
21
|
|
|
{ |
22
|
|
|
function let() |
23
|
|
|
{ |
24
|
|
|
$this->beConstructedThrough('fromNameAndType', ['view', 'link']); |
25
|
|
|
} |
26
|
|
|
|
27
|
|
|
function it_is_initializable() |
28
|
|
|
{ |
29
|
|
|
$this->shouldHaveType(Action::class); |
30
|
|
|
} |
31
|
|
|
|
32
|
|
|
function it_has_name() |
33
|
|
|
{ |
34
|
|
|
$this->getName()->shouldReturn('view'); |
35
|
|
|
} |
36
|
|
|
|
37
|
|
|
function it_has_type() |
38
|
|
|
{ |
39
|
|
|
$this->getType()->shouldReturn('link'); |
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
function it_has_no_label_by_default() |
43
|
|
|
{ |
44
|
|
|
$this->getLabel()->shouldReturn(null); |
45
|
|
|
} |
46
|
|
|
|
47
|
|
|
function its_label_is_mutable() |
48
|
|
|
{ |
49
|
|
|
$this->setLabel('Read book'); |
50
|
|
|
$this->getLabel()->shouldReturn('Read book'); |
51
|
|
|
} |
52
|
|
|
|
53
|
|
|
function it_has_no_icon_by_default() |
54
|
|
|
{ |
55
|
|
|
$this->getIcon()->shouldReturn(null); |
56
|
|
|
} |
57
|
|
|
|
58
|
|
|
function its_icon_is_mutable() |
59
|
|
|
{ |
60
|
|
|
$this->setIcon('checkmark'); |
61
|
|
|
$this->getIcon()->shouldReturn('checkmark'); |
62
|
|
|
} |
63
|
|
|
|
64
|
|
|
function it_has_no_options_by_default() |
65
|
|
|
{ |
66
|
|
|
$this->getOptions()->shouldReturn([]); |
67
|
|
|
} |
68
|
|
|
|
69
|
|
|
function it_can_have_options() |
70
|
|
|
{ |
71
|
|
|
$this->setOptions(['route' => 'sylius_admin_product_update']); |
72
|
|
|
$this->getOptions()->shouldReturn(['route' => 'sylius_admin_product_update']); |
73
|
|
|
} |
74
|
|
|
} |
75
|
|
|
|