1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
namespace spec\Loevgaard\SyliusBarcodePlugin\BarcodeChecker; |
6
|
|
|
|
7
|
|
|
use Loevgaard\SyliusBarcodePlugin\BarcodeChecker\BarcodeChecker; |
8
|
|
|
use Loevgaard\SyliusBarcodePlugin\Event\PostBarcodeCheckEvent; |
9
|
|
|
use Loevgaard\SyliusBarcodePlugin\Event\PreBarcodeCheckEvent; |
10
|
|
|
use Loevgaard\SyliusBarcodePlugin\Model\BarcodeAwareInterface; |
11
|
|
|
use PhpSpec\ObjectBehavior; |
12
|
|
|
use Prophecy\Argument; |
13
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface; |
14
|
|
|
|
15
|
|
|
class BarcodeCheckerSpec extends ObjectBehavior |
16
|
|
|
{ |
17
|
|
|
public function it_is_initializable(): void |
18
|
|
|
{ |
19
|
|
|
$this->shouldHaveType(BarcodeChecker::class); |
20
|
|
|
} |
21
|
|
|
|
22
|
|
|
public function let(EventDispatcherInterface $eventDispatcher): void |
23
|
|
|
{ |
24
|
|
|
$this->beConstructedWith($eventDispatcher); |
25
|
|
|
} |
26
|
|
|
|
27
|
|
|
public function it_invalidates(BarcodeAwareInterface $barcodeAware): void |
28
|
|
|
{ |
29
|
|
|
$barcodeAware->getBarcode()->willReturn('invalid'); |
30
|
|
|
$barcodeAware->markBarcodeAsChecked(false)->shouldBeCalled(); |
|
|
|
|
31
|
|
|
|
32
|
|
|
$this->check($barcodeAware); |
|
|
|
|
33
|
|
|
} |
34
|
|
|
|
35
|
|
|
public function it_validates(BarcodeAwareInterface $barcodeAware): void |
36
|
|
|
{ |
37
|
|
|
$barcodeAware->getBarcode()->willReturn('4006381333931'); |
38
|
|
|
$barcodeAware->markBarcodeAsChecked(true)->shouldBeCalled(); |
|
|
|
|
39
|
|
|
|
40
|
|
|
$this->check($barcodeAware); |
41
|
|
|
} |
42
|
|
|
|
43
|
|
|
public function it_dispatches_events(EventDispatcherInterface $eventDispatcher, BarcodeAwareInterface $barcodeAware): void |
44
|
|
|
{ |
45
|
|
|
$eventDispatcher->dispatch(Argument::type(PreBarcodeCheckEvent::class), PreBarcodeCheckEvent::NAME)->shouldBeCalledOnce(); |
|
|
|
|
46
|
|
|
$eventDispatcher->dispatch(Argument::type(PostBarcodeCheckEvent::class), PostBarcodeCheckEvent::NAME)->shouldBeCalledOnce(); |
|
|
|
|
47
|
|
|
|
48
|
|
|
$this->check($barcodeAware); |
49
|
|
|
} |
50
|
|
|
} |
51
|
|
|
|
This check looks for function or method calls that always return null and whose return value is used.
The method
getObject()
can return nothing but null, so it makes no sense to use the return value.The reason is most likely that a function or method is imcomplete or has been reduced for debug purposes.