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 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
|
<?php
namespace Illuminate\Tests\Queue;
use Illuminate\Container\Container;
use Illuminate\Database\Capsule\Manager as DB;
use Illuminate\Database\Eloquent\Model as Eloquent;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Queue\DatabaseQueue;
use Illuminate\Support\Carbon;
use PHPUnit\Framework\TestCase;
class QueueDatabaseQueueIntegrationTest extends TestCase
{
/**
* @var \Illuminate\Queue\DatabaseQueue
*/
protected $queue;
/**
* @var string The jobs table name.
*/
protected $table;
/**
* @var \Illuminate\Container\Container
*/
protected $container;
protected function setUp(): void
{
$db = new DB;
$db->addConnection([
'driver' => 'sqlite',
'database' => ':memory:',
]);
$db->bootEloquent();
$db->setAsGlobal();
$this->table = 'jobs';
$this->queue = new DatabaseQueue($this->connection(), $this->table);
$this->container = $this->createMock(Container::class);
$this->queue->setContainer($this->container);
$this->createSchema();
}
/**
* Setup the database schema.
*
* @return void
*/
public function createSchema()
{
$this->schema()->create($this->table, function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('queue');
$table->longText('payload');
$table->tinyInteger('attempts')->unsigned();
$table->unsignedInteger('reserved_at')->nullable();
$table->unsignedInteger('available_at');
$table->unsignedInteger('created_at');
$table->index(['queue', 'reserved_at']);
});
}
/**
* Get a database connection instance.
*
* @return \Illuminate\Database\Connection
*/
protected function connection()
{
return Eloquent::getConnectionResolver()->connection();
}
/**
* Get a schema builder instance.
*
* @return \Illuminate\Database\Schema\Builder
*/
protected function schema()
{
return $this->connection()->getSchemaBuilder();
}
/**
* Tear down the database schema.
*
* @return void
*/
protected function tearDown(): void
{
$this->schema()->drop('jobs');
}
/**
* Test that jobs that are not reserved and have an available_at value less then now, are popped.
*/
public function testAvailableAndUnReservedJobsArePopped()
{
$this->connection()
->table('jobs')
->insert([
'id' => 1,
'queue' => $mock_queue_name = 'mock_queue_name',
'payload' => 'mock_payload',
'attempts' => 0,
'reserved_at' => null,
'available_at' => Carbon::now()->subSeconds(1)->getTimestamp(),
'created_at' => Carbon::now()->getTimestamp(),
]);
$popped_job = $this->queue->pop($mock_queue_name);
$this->assertNotNull($popped_job);
}
/**
* Test that when jobs are popped, the attempts attribute is incremented.
*/
public function testPoppedJobsIncrementAttempts()
{
$job = [
'id' => 1,
'queue' => 'mock_queue_name',
'payload' => 'mock_payload',
'attempts' => 0,
'reserved_at' => null,
'available_at' => Carbon::now()->subSeconds(1)->getTimestamp(),
'created_at' => Carbon::now()->getTimestamp(),
];
$this->connection()->table('jobs')->insert($job);
$popped_job = $this->queue->pop($job['queue']);
$database_record = $this->connection()->table('jobs')->find($job['id']);
$this->assertEquals(1, $database_record->attempts, 'Job attempts not updated in the database!');
$this->assertEquals(1, $popped_job->attempts(), 'The "attempts" attribute of the Job object was not updated by pop!');
}
/**
* Test that the queue can be cleared.
*/
public function testThatQueueCanBeCleared()
{
$this->connection()
->table('jobs')
->insert([[
'id' => 1,
'queue' => $mock_queue_name = 'mock_queue_name',
'payload' => 'mock_payload',
'attempts' => 0,
'reserved_at' => Carbon::now()->addDay()->getTimestamp(),
'available_at' => Carbon::now()->subDay()->getTimestamp(),
'created_at' => Carbon::now()->getTimestamp(),
], [
'id' => 2,
'queue' => $mock_queue_name,
'payload' => 'mock_payload 2',
'attempts' => 0,
'reserved_at' => null,
'available_at' => Carbon::now()->subSeconds(1)->getTimestamp(),
'created_at' => Carbon::now()->getTimestamp(),
]]);
$this->assertEquals(2, $this->queue->clear($mock_queue_name));
$this->assertEquals(0, $this->queue->size());
}
/**
* Test that jobs that are not reserved and have an available_at value in the future, are not popped.
*/
public function testUnavailableJobsAreNotPopped()
{
$this->connection()
->table('jobs')
->insert([
'id' => 1,
'queue' => $mock_queue_name = 'mock_queue_name',
'payload' => 'mock_payload',
'attempts' => 0,
'reserved_at' => null,
'available_at' => Carbon::now()->addSeconds(60)->getTimestamp(),
'created_at' => Carbon::now()->getTimestamp(),
]);
$popped_job = $this->queue->pop($mock_queue_name);
$this->assertNull($popped_job);
}
/**
* Test that jobs that are reserved and have expired are popped.
*/
public function testThatReservedAndExpiredJobsArePopped()
{
$this->connection()
->table('jobs')
->insert([
'id' => 1,
'queue' => $mock_queue_name = 'mock_queue_name',
'payload' => 'mock_payload',
'attempts' => 0,
'reserved_at' => Carbon::now()->subDay()->getTimestamp(),
'available_at' => Carbon::now()->addDay()->getTimestamp(),
'created_at' => Carbon::now()->getTimestamp(),
]);
$popped_job = $this->queue->pop($mock_queue_name);
$this->assertNotNull($popped_job);
}
/**
* Test that jobs that are reserved and not expired and available are not popped.
*/
public function testThatReservedJobsAreNotPopped()
{
$this->connection()
->table('jobs')
->insert([
'id' => 1,
'queue' => $mock_queue_name = 'mock_queue_name',
'payload' => 'mock_payload',
'attempts' => 0,
'reserved_at' => Carbon::now()->addDay()->getTimestamp(),
'available_at' => Carbon::now()->subDay()->getTimestamp(),
'created_at' => Carbon::now()->getTimestamp(),
]);
$popped_job = $this->queue->pop($mock_queue_name);
$this->assertNull($popped_job);
}
}
|