-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDelayedListenerTest.php
154 lines (124 loc) · 4.61 KB
/
DelayedListenerTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?php
namespace Biig\Component\Domain\Tests\Event;
use Biig\Component\Domain\Event\DelayedListener;
use Biig\Component\Domain\Event\DomainEvent;
use Biig\Component\Domain\Event\DomainEventDispatcher;
use Biig\Component\Domain\Exception\InvalidDomainEvent;
use Biig\Component\Domain\Model\DomainModel;
use Biig\Component\Domain\Rule\PostPersistDomainRuleInterface;
use Biig\Component\Domain\Tests\fixtures\Entity\FakeModel;
use Biig\Component\Domain\Tests\SetupDatabaseTrait;
use Doctrine\ORM\EntityManager;
use PHPUnit\Framework\TestCase;
class DelayedListenerTest extends TestCase
{
use SetupDatabaseTrait;
public function testICanInstantiateDelayedListener()
{
$delayedListener = new DelayedListener('foo', function () {});
$this->assertInstanceOf(DelayedListener::class, $delayedListener);
}
public function testItProcessEventOnlyOneTime()
{
$count = 0;
$delayedListener = new DelayedListener('foo', function () use (&$count) {
++$count;
});
$fakeModel = new FakeDomainModel();
$event = new DomainEvent($fakeModel);
$delayedListener->occur($event);
$delayedListener->occur(new DomainEvent($fakeModel));
$this->assertTrue($delayedListener->shouldOccur($fakeModel));
$delayedListener->process($fakeModel);
$this->assertFalse($delayedListener->shouldOccur($fakeModel));
$this->assertEquals(2, $count);
$delayedListener->process($fakeModel);
$this->assertEquals(2, $count);
$this->assertTrue($event->isDelayed());
}
public function testItFailsToRegisterOtherThanCurrentModel()
{
$model = new class() {
public $foo;
};
$this->expectException(InvalidDomainEvent::class);
$listener = new DelayedListener('foo', function () {});
$listener->occur(new DomainEvent($model));
}
public function testItInsertInBddAfterFlushing()
{
$dispatcher = new DomainEventDispatcher();
$entityManager = $this->setupDatabase($dispatcher, 'testItInsertInBddAfterFlushing');
$model = new FakeModel();
$model->setFoo('Model1');
$model->setDispatcher($dispatcher);
$rule = new class($entityManager) implements PostPersistDomainRuleInterface {
private $entityManager;
public function __construct(EntityManager $entityManager)
{
$this->entityManager = $entityManager;
}
public function after()
{
return [FakeModel::class => 'action'];
}
public function execute(DomainEvent $event)
{
$model = new FakeModel();
$model->setFoo('RulePostPersist');
$this->entityManager->persist($model);
$this->entityManager->flush($model);
}
};
$dispatcher->addRule($rule);
$model->doAction();
$entityManager->persist($model);
$entityManager->flush($model);
// 3 because the database was already containing 1 entry
$this->assertEquals(3, count($entityManager->getRepository(FakeModel::class)->findAll()));
$this->dropDatabase();
}
public function testItDoesNotExecuteManyTimesSameEvent()
{
// Test setup
$dispatcher = new DomainEventDispatcher();
$entityManager = $this->setupDatabase($dispatcher, 'testItDoesNotExecuteManyTimesSameEvent');
$model = new FakeModel();
$model->setFoo(0);
$model->setDispatcher($dispatcher);
$rule = new CountAndInsertRule($entityManager);
$dispatcher->addRule($rule);
// Test: the rule should be trigger 2 times
$model->doAction();
$model->doAction();
$entityManager->persist($model);
$entityManager->flush($model);
$this->assertEquals(2, $model->getFoo());
$this->dropDatabase();
}
}
class FakeDomainModel extends DomainModel
{
}
class CountAndInsertRule implements PostPersistDomainRuleInterface
{
private $entityManager;
public function __construct(EntityManager $entityManager)
{
$this->entityManager = $entityManager;
}
public function after()
{
return [FakeModel::class => 'action'];
}
public function execute(DomainEvent $event)
{
// Count times of execution
$event->getSubject()->setFoo($event->getSubject()->getFoo() + 1);
// Trigger flush
$model = new FakeModel();
$model->setFoo('Something new to insert');
$this->entityManager->persist($model);
$this->entityManager->flush($model);
}
}