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\Association\Model; |
13
|
|
|
|
14
|
|
|
use Doctrine\Common\Collections\Collection; |
15
|
|
|
use PhpSpec\ObjectBehavior; |
16
|
|
|
use Prophecy\Argument; |
17
|
|
|
use Sylius\Component\Association\Model\AssociableInterface; |
18
|
|
|
use Sylius\Component\Association\Model\AssociationInterface; |
19
|
|
|
use Sylius\Component\Association\Model\AssociationType; |
20
|
|
|
use Sylius\Component\Product\Model\ProductInterface; |
21
|
|
|
|
22
|
|
|
/** |
23
|
|
|
* @author Leszek Prabucki <[email protected]> |
24
|
|
|
* @author Łukasz Chruściel <[email protected]> |
25
|
|
|
*/ |
26
|
|
|
class AssociationSpec extends ObjectBehavior |
27
|
|
|
{ |
28
|
|
|
function it_is_initializable() |
29
|
|
|
{ |
30
|
|
|
$this->shouldHaveType('Sylius\Component\Association\Model\Association'); |
31
|
|
|
} |
32
|
|
|
|
33
|
|
|
function it_implements_association_interface() |
34
|
|
|
{ |
35
|
|
|
$this->shouldHaveType(AssociationInterface::class); |
36
|
|
|
} |
37
|
|
|
|
38
|
|
|
function it_has_owner_object(ProductInterface $product) |
39
|
|
|
{ |
40
|
|
|
$this->setOwner($product); |
41
|
|
|
$this->getOwner()->shouldReturn($product); |
42
|
|
|
} |
43
|
|
|
|
44
|
|
|
function it_has_association_type_object(AssociationType $associationType) |
45
|
|
|
{ |
46
|
|
|
$this->setType($associationType); |
47
|
|
|
$this->getType()->shouldReturn($associationType); |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
function it_adds_association_objects(AssociableInterface $product) |
51
|
|
|
{ |
52
|
|
|
$this->addAssociatedObject($product); |
53
|
|
|
$this->getAssociatedObjects()->shouldHaveCount(1); |
54
|
|
|
} |
55
|
|
|
|
56
|
|
|
function it_checks_if_product_is_associated(AssociableInterface $product) |
57
|
|
|
{ |
58
|
|
|
$this->hasAssociatedObject($product)->shouldReturn(false); |
59
|
|
|
$this->addAssociatedObject($product); |
60
|
|
|
$this->hasAssociatedObject($product)->shouldReturn(true); |
61
|
|
|
$this->removeAssociatedObject($product); |
62
|
|
|
$this->hasAssociatedObject($product)->shouldReturn(false); |
63
|
|
|
} |
64
|
|
|
} |
65
|
|
|
|