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
|
<?php
declare(strict_types=1);
namespace Pheanstalk\Tests\Unit\Command;
use Pheanstalk\Command\ReserveCommand;
use Pheanstalk\Exception\DeadlineSoonException;
use Pheanstalk\Exception\TimedOutException;
use Pheanstalk\Values\RawResponse;
use Pheanstalk\Values\ResponseType;
use PHPUnit\Framework\Assert;
use PHPUnit\Framework\Attributes\CoversClass;
#[CoversClass(ReserveCommand::class)]
final class ReserveCommandTest extends CommandTestBase
{
public function testInterpretDeadlineSoon(): void
{
$this->expectException(DeadlineSoonException::class);
$this->getSubject()->interpret(new RawResponse(ResponseType::DeadlineSoon));
}
public function testInterpretTimedOut(): void
{
$this->expectException(TimedOutException::class);
$this->getSubject()->interpret(new RawResponse(ResponseType::TimedOut));
}
public function testInterpretReserved(): void
{
$id = "000112312311";
$data = <<<DATA
random stuff
DATA;
$job = $this->getSubject()->interpret(new RawResponse(ResponseType::Reserved, $id, $data));
Assert::assertSame($id, $job->getId());
Assert::assertSame($data, $job->getData());
}
protected static function getSupportedResponses(): array
{
return [ResponseType::DeadlineSoon, ResponseType::TimedOut, ResponseType::Reserved];
}
protected function getSubject(): ReserveCommand
{
return new ReserveCommand();
}
}
|