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
|
<?php
namespace Illuminate\Tests\Database;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\Pivot;
use Mockery as m;
use PHPUnit\Framework\TestCase;
class DatabaseEloquentCollectionQueueableTest extends TestCase
{
protected function tearDown(): void
{
m::close();
}
public function testSerializesPivotsEntitiesId()
{
$spy = m::spy(Pivot::class);
$c = new Collection([$spy]);
$c->getQueueableIds();
$spy->shouldHaveReceived()
->getQueueableId()
->once();
}
public function testSerializesModelEntitiesById()
{
$spy = m::spy(Model::class);
$c = new Collection([$spy]);
$c->getQueueableIds();
$spy->shouldHaveReceived()
->getQueueableId()
->once();
}
/**
* @throws \Exception
*/
public function testJsonSerializationOfCollectionQueueableIdsWorks()
{
// When the ID of a Model is binary instead of int or string, the Collection
// serialization + JSON encoding breaks because of UTF-8 issues. Encoding
// of a QueueableCollection must favor QueueableEntity::queueableId().
$mock = m::mock(Model::class, [
'getKey' => random_bytes(10),
'getQueueableId' => 'mocked',
]);
$c = new Collection([$mock]);
$payload = [
'ids' => $c->getQueueableIds(),
];
$this->assertNotFalse(
json_encode($payload),
'EloquentCollection is not using the QueueableEntity::getQueueableId() method.'
);
}
}
|