Skip to content

Instantly share code, notes, and snippets.

@JavierCane
Created November 20, 2016 12:39
Show Gist options
  • Save JavierCane/463ac50b669df63ad2f38dc0e56b450f to your computer and use it in GitHub Desktop.
Save JavierCane/463ac50b669df63ad2f38dc0e56b450f to your computer and use it in GitHub Desktop.
<?php
namespace CodelyTv\Context\Meetup\Module\Video\Tests\Behaviour;
use CodelyTv\Context\Meetup\Module\Video\Domain\Create\CreateVideoCommandHandler;
use CodelyTv\Context\Meetup\Module\Video\Domain\Create\VideoCreator;
use CodelyTv\Context\Meetup\Module\Video\Test\PhpUnit\VideoModuleUnitTestCase;
use CodelyTv\Context\Meetup\Module\Video\Test\Stub\CreateVideoCommandStub;
use CodelyTv\Context\Meetup\Module\Video\Test\Stub\VideoCreatedDomainEventStub;
use CodelyTv\Context\Meetup\Module\Video\Test\Stub\VideoIdStub;
use CodelyTv\Context\Meetup\Module\Video\Test\Stub\VideoStub;
use CodelyTv\Context\Meetup\Module\Video\Test\Stub\VideoTitleStub;
use CodelyTv\Context\Meetup\Module\Video\Test\Stub\VideoUrlStub;
use CodelyTv\Shared\Test\Stub\CourseIdStub;
final class CreateVideoTest extends VideoModuleUnitTestCase
{
/** @var CreateVideoCommandHandler */
private $handler;
protected function setUp()
{
parent::setUp();
$creator = new VideoCreator($this->repository(), $this->domainEventPublisher());
$this->handler = new CreateVideoCommandHandler($creator);
}
/** @test */
public function it_should_create_a_video()
{
$command = CreateVideoCommandStub::random();
$id = VideoIdStub::create($command->id());
$title = VideoTitleStub::create($command->title());
$url = VideoUrlStub::create($command->url());
$courseId = CourseIdStub::create($command->courseId());
$video = VideoStub::create($id, $title, $url, $courseId);
$domainEvent = VideoCreatedDomainEventStub::create($id, $title, $url, $courseId);
$this->shouldSaveVideo($video);
$this->shouldPublishDomainEvents([$domainEvent]);
$this->dispatch($command, $this->handler);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment