Completed
Push — master ( 1671b1...4e9462 )
by Kamil
23:39
created

PromotionContextSpec::it_gets_coupon_by_its_code()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 7
rs 9.4285
cc 1
eloc 4
nc 1
nop 2
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\Behat\Context\Transform;
13
14
use Behat\Behat\Context\Context;
15
use PhpSpec\ObjectBehavior;
16
use Prophecy\Argument;
17
use Sylius\Behat\Context\Transform\PromotionContext;
18
use Sylius\Component\Promotion\Model\CouponInterface;
19
use Sylius\Component\Promotion\Model\PromotionInterface;
20
use Sylius\Component\Promotion\Repository\PromotionRepositoryInterface;
21
use Sylius\Component\Resource\Repository\RepositoryInterface;
22
23
/**
24
 * @mixin PromotionContext
25
 *
26
 * @author Jan Góralski <[email protected]>
27
 */
28
class PromotionContextSpec extends ObjectBehavior
29
{
30
    function let(PromotionRepositoryInterface $promotionRepository, RepositoryInterface $couponRepository)
31
    {
32
        $this->beConstructedWith($promotionRepository, $couponRepository);
33
    }
34
35
    function it_is_initializable()
36
    {
37
        $this->shouldHaveType('Sylius\Behat\Context\Transform\PromotionContext');
38
    }
39
40
    function it_implements_context_interface()
41
    {
42
        $this->shouldImplement(Context::class);
43
    }
44
45
    function it_gets_promotion_by_its_name(
46
        PromotionRepositoryInterface $promotionRepository,
47
        PromotionInterface $promotion
48
    ) {
49
        $promotion->getName()->willReturn('Best Promotion');
50
        $promotionRepository->findOneBy(['name' => 'Best Promotion'])->willReturn($promotion);
51
52
        $this->getPromotionByName('Best Promotion');
53
    }
54
55
    function it_throws_exception_when_promotion_with_given_name_was_not_found(
56
        PromotionRepositoryInterface $promotionRepository
57
    ) {
58
        $promotionRepository->findOneBy(['name' => 'Wrong Promotion'])->willReturn(null);
59
60
        $this->shouldThrow(\InvalidArgumentException::class)->during('getPromotionByName', ['Wrong Promotion']);
61
    }
62
63
    function it_gets_coupon_by_its_code(RepositoryInterface $couponRepository, CouponInterface $coupon)
64
    {
65
        $coupon->getCode()->willReturn('BEST-CODE');
66
        $couponRepository->findOneBy(['code' => 'BEST-CODE'])->willReturn($coupon);
67
68
        $this->getCouponByCode('BEST-CODE');
69
    }
70
71
    function it_throws_exception_when_coupon_with_given_code_was_not_found(RepositoryInterface $couponRepository)
72
    {
73
        $couponRepository->findOneBy(['code' => 'NO-CODE'])->willReturn(null);
74
75
        $this->shouldThrow(\InvalidArgumentException::class)->during('getCouponByCode', ['NO-CODE']);
76
    }
77
}
78