-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4c9dd22
commit e95b7a6
Showing
6 changed files
with
356 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
tests/Unit/Projection/Projector/MetadataProjectorAccessorRepositoryTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Patchlevel\EventSourcing\Tests\Unit\Projection\Projector; | ||
|
||
use Patchlevel\EventSourcing\Attribute\Projector; | ||
use Patchlevel\EventSourcing\Metadata\Projector\AttributeProjectorMetadataFactory; | ||
use Patchlevel\EventSourcing\Projection\Projector\MetadataProjectorAccessor; | ||
use Patchlevel\EventSourcing\Projection\Projector\MetadataProjectorAccessorRepository; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
final class MetadataProjectorAccessorRepositoryTest extends TestCase | ||
{ | ||
public function testEmpty(): void | ||
{ | ||
$repository = new MetadataProjectorAccessorRepository( | ||
[], | ||
); | ||
|
||
self::assertEquals([], $repository->all()); | ||
self::assertNull($repository->get('foo')); | ||
} | ||
|
||
public function testWithProjector(): void | ||
{ | ||
$projector = new #[Projector('foo')] | ||
class { | ||
}; | ||
$metadataFactory = new AttributeProjectorMetadataFactory(); | ||
|
||
$repository = new MetadataProjectorAccessorRepository( | ||
[$projector], | ||
$metadataFactory, | ||
); | ||
|
||
$accessor = new MetadataProjectorAccessor( | ||
$projector, | ||
$metadataFactory->metadata($projector::class), | ||
); | ||
|
||
self::assertEquals([$accessor], $repository->all()); | ||
self::assertEquals($accessor, $repository->get('foo')); | ||
} | ||
} |
206 changes: 206 additions & 0 deletions
206
tests/Unit/Projection/Projector/MetadataProjectorAccessorTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,206 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Patchlevel\EventSourcing\Tests\Unit\Projection\Projector; | ||
|
||
use Patchlevel\EventSourcing\Attribute\Projector; | ||
use Patchlevel\EventSourcing\Attribute\Setup; | ||
use Patchlevel\EventSourcing\Attribute\Subscribe; | ||
use Patchlevel\EventSourcing\Attribute\Teardown; | ||
use Patchlevel\EventSourcing\EventBus\Message; | ||
use Patchlevel\EventSourcing\Metadata\Projector\AttributeProjectorMetadataFactory; | ||
use Patchlevel\EventSourcing\Projection\Projection\RunMode; | ||
use Patchlevel\EventSourcing\Projection\Projector\MetadataProjectorAccessor; | ||
use Patchlevel\EventSourcing\Tests\Unit\Fixture\ProfileCreated; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
/** @covers \Patchlevel\EventSourcing\Projection\Projector\MetadataProjectorAccessor */ | ||
final class MetadataProjectorAccessorTest extends TestCase | ||
{ | ||
public function testId(): void | ||
{ | ||
$projector = new #[Projector('profile')] | ||
class { | ||
}; | ||
|
||
$accessor = new MetadataProjectorAccessor( | ||
$projector, | ||
(new AttributeProjectorMetadataFactory())->metadata($projector::class), | ||
); | ||
|
||
self::assertEquals('profile', $accessor->id()); | ||
} | ||
|
||
public function testGroup(): void | ||
{ | ||
$projector = new #[Projector('profile')] | ||
class { | ||
}; | ||
|
||
$accessor = new MetadataProjectorAccessor( | ||
$projector, | ||
(new AttributeProjectorMetadataFactory())->metadata($projector::class), | ||
); | ||
|
||
self::assertEquals('default', $accessor->group()); | ||
} | ||
|
||
public function testRunMode(): void | ||
{ | ||
$projector = new #[Projector('profile')] | ||
class { | ||
}; | ||
|
||
$accessor = new MetadataProjectorAccessor( | ||
$projector, | ||
(new AttributeProjectorMetadataFactory())->metadata($projector::class), | ||
); | ||
|
||
self::assertEquals(RunMode::FromBeginning, $accessor->runMode()); | ||
} | ||
|
||
public function testSubscribeMethod(): void | ||
{ | ||
$projector = new #[Projector('profile')] | ||
class { | ||
#[Subscribe(ProfileCreated::class)] | ||
public function onProfileCreated(Message $message): void | ||
{ | ||
} | ||
}; | ||
|
||
$accessor = new MetadataProjectorAccessor( | ||
$projector, | ||
(new AttributeProjectorMetadataFactory())->metadata($projector::class), | ||
); | ||
|
||
$result = $accessor->subscribeMethods(ProfileCreated::class); | ||
|
||
self::assertEquals([ | ||
$projector->onProfileCreated(...), | ||
], $result); | ||
} | ||
|
||
public function testMultipleSubscribeMethod(): void | ||
{ | ||
$projector = new #[Projector('profile')] | ||
class { | ||
#[Subscribe(ProfileCreated::class)] | ||
public function onProfileCreated(Message $message): void | ||
{ | ||
} | ||
|
||
#[Subscribe(ProfileCreated::class)] | ||
public function onFoo(Message $message): void | ||
{ | ||
} | ||
}; | ||
|
||
$accessor = new MetadataProjectorAccessor( | ||
$projector, | ||
(new AttributeProjectorMetadataFactory())->metadata($projector::class), | ||
); | ||
|
||
$result = $accessor->subscribeMethods(ProfileCreated::class); | ||
|
||
self::assertEquals([ | ||
$projector->onProfileCreated(...), | ||
$projector->onFoo(...), | ||
], $result); | ||
} | ||
|
||
public function testSubscribeAllMethod(): void | ||
{ | ||
$projector = new #[Projector('profile')] | ||
class { | ||
#[Subscribe('*')] | ||
public function onProfileCreated(Message $message): void | ||
{ | ||
} | ||
}; | ||
|
||
$accessor = new MetadataProjectorAccessor( | ||
$projector, | ||
(new AttributeProjectorMetadataFactory())->metadata($projector::class), | ||
); | ||
|
||
$result = $accessor->subscribeMethods(ProfileCreated::class); | ||
|
||
self::assertEquals([ | ||
$projector->onProfileCreated(...), | ||
], $result); | ||
} | ||
|
||
public function testSetupMethod(): void | ||
{ | ||
$projector = new #[Projector('profile')] | ||
class { | ||
#[Setup] | ||
public function method(): void | ||
{ | ||
} | ||
}; | ||
|
||
$accessor = new MetadataProjectorAccessor( | ||
$projector, | ||
(new AttributeProjectorMetadataFactory())->metadata($projector::class), | ||
); | ||
|
||
$result = $accessor->setupMethod(); | ||
|
||
self::assertEquals($projector->method(...), $result); | ||
} | ||
|
||
public function testNotSetupMethod(): void | ||
{ | ||
$projector = new #[Projector('profile')] | ||
class { | ||
}; | ||
|
||
$accessor = new MetadataProjectorAccessor( | ||
$projector, | ||
(new AttributeProjectorMetadataFactory())->metadata($projector::class), | ||
); | ||
|
||
$result = $accessor->setupMethod(); | ||
|
||
self::assertNull($result); | ||
} | ||
|
||
public function testTeardownMethod(): void | ||
{ | ||
$projector = new #[Projector('profile')] | ||
class { | ||
#[Teardown] | ||
public function method(): void | ||
{ | ||
} | ||
}; | ||
|
||
$accessor = new MetadataProjectorAccessor( | ||
$projector, | ||
(new AttributeProjectorMetadataFactory())->metadata($projector::class), | ||
); | ||
|
||
$result = $accessor->teardownMethod(); | ||
|
||
self::assertEquals($projector->method(...), $result); | ||
} | ||
|
||
public function testNotTeardownMethod(): void | ||
{ | ||
$projector = new #[Projector('profile')] | ||
class { | ||
}; | ||
|
||
$accessor = new MetadataProjectorAccessor( | ||
$projector, | ||
(new AttributeProjectorMetadataFactory())->metadata($projector::class), | ||
); | ||
|
||
$result = $accessor->teardownMethod(); | ||
|
||
self::assertNull($result); | ||
} | ||
} |
58 changes: 58 additions & 0 deletions
58
tests/Unit/Repository/MessageDecorator/TraceDecoratorTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Patchlevel\EventSourcing\Tests\Unit\Repository\MessageDecorator; | ||
|
||
use Patchlevel\EventSourcing\EventBus\HeaderNotFound; | ||
use Patchlevel\EventSourcing\EventBus\Message; | ||
use Patchlevel\EventSourcing\Repository\MessageDecorator\Trace; | ||
use Patchlevel\EventSourcing\Repository\MessageDecorator\TraceDecorator; | ||
use Patchlevel\EventSourcing\Repository\MessageDecorator\TraceStack; | ||
use PHPUnit\Framework\TestCase; | ||
use Prophecy\PhpUnit\ProphecyTrait; | ||
use stdClass; | ||
|
||
/** @covers \Patchlevel\EventSourcing\Repository\MessageDecorator\TraceDecorator */ | ||
final class TraceDecoratorTest extends TestCase | ||
{ | ||
use ProphecyTrait; | ||
|
||
public function testWithoutTrace(): void | ||
{ | ||
$this->expectException(HeaderNotFound::class); | ||
|
||
$stack = new TraceStack(); | ||
$decorator = new TraceDecorator($stack); | ||
|
||
$message = new Message(new stdClass()); | ||
|
||
$decoratedMessage = $decorator($message); | ||
|
||
self::assertEquals($message, $decoratedMessage); | ||
|
||
$decoratedMessage->header('trace'); | ||
} | ||
|
||
public function testWithTrace(): void | ||
{ | ||
$stack = new TraceStack(); | ||
$stack->add(new Trace('name', 'category')); | ||
|
||
$decorator = new TraceDecorator($stack); | ||
|
||
$message = new Message(new stdClass()); | ||
|
||
$decoratedMessage = $decorator($message); | ||
|
||
self::assertEquals( | ||
[ | ||
[ | ||
'name' => 'name', | ||
'category' => 'category', | ||
], | ||
], | ||
$decoratedMessage->header('trace'), | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Patchlevel\EventSourcing\Tests\Unit\Repository\MessageDecorator; | ||
|
||
use Patchlevel\EventSourcing\Repository\MessageDecorator\Trace; | ||
use Patchlevel\EventSourcing\Repository\MessageDecorator\TraceStack; | ||
use PHPUnit\Framework\TestCase; | ||
use Prophecy\PhpUnit\ProphecyTrait; | ||
|
||
/** @covers \Patchlevel\EventSourcing\Repository\MessageDecorator\TraceStack */ | ||
final class TraceStackTest extends TestCase | ||
{ | ||
use ProphecyTrait; | ||
|
||
public function testStack(): void | ||
{ | ||
$stack = new TraceStack(); | ||
|
||
self::assertEquals([], $stack->get()); | ||
|
||
$trace = new Trace('name', 'category'); | ||
|
||
$stack->add($trace); | ||
|
||
self::assertEquals([$trace], $stack->get()); | ||
|
||
$stack->remove($trace); | ||
|
||
self::assertEquals([], $stack->get()); | ||
} | ||
} |