public function testFailedJobExceptionsAreCaught() { $payload = array('class' => FailingJob::className(), 'args' => null); $job = new Job('jobs', $payload); $job->worker = $this->worker; $this->worker->perform($job); $this->assertEquals(1, Stat::get('failed')); $this->assertEquals(1, Stat::get('failed:' . $this->worker)); }
public function testWorkerFailsUncompletedJobsOnExit() { $worker = new Worker('jobs'); $worker->registerWorker(); $payload = array('class' => TestJob::className()); $job = new Job('jobs', $payload); $worker->workingOn($job); $worker->unregisterWorker(); $this->assertEquals(1, Stat::get('failed')); }
public function testGetUnknownStatReturns0() { $this->assertEquals(0, Stat::get('test_get_unknown')); }
/** * Get a statistic belonging to this worker. * * @param string $stat Statistic to fetch. * @return int Statistic value. */ public function getStat($stat) { return Stat::get($stat . ':' . $this); }
/** * Mark the current job as having failed. * * @param $exception */ public function fail($exception) { Event::trigger('onFailure', array('exception' => $exception, 'job' => $this)); $this->updateStatus(Status::STATUS_FAILED); Failure::create($this->payload, $exception, $this->worker, $this->queue); Stat::incr('failed'); Stat::incr('failed:' . $this->worker); }