예제 #1
0
 public function testRejectItemSync()
 {
     $queue = new Queue($this->redis, 'test', [Base::OPT_SLAVES_SYNC_ENABLED => true, Base::OPT_SLAVES_SYNC_REQUIRED_COUNT => 5], $this->getTimeMock());
     $processingQueue = sprintf('test-processing-%s[%d][%d]', gethostname(), getmypid(), self::TIME_MOCK);
     $this->redis->lpush($processingQueue, [1, 5, 5, 3]);
     $this->redis->hset('test-timeouts', $processingQueue, self::MICRO_TIME_MOCK);
     try {
         $queue->rejectItem(5);
     } catch (\PhpRQ\Exception\NotEnoughSlavesSynced $e) {
     }
     // order of the items is lost when using Queue:rejectItem, be aware of that
     $this->assertSame(['5'], $this->redis->lrange('test', 0, 5));
     $this->assertSame(['3', '5', '1'], $this->redis->lrange($processingQueue, 0, 5));
     $this->assertSame([$processingQueue => (string) self::MICRO_TIME_MOCK], $this->redis->hgetall('test-timeouts'));
     $this->assertKeys(['test', $processingQueue, 'test-timeouts']);
 }
예제 #2
0
 public function testRejectItem()
 {
     $time = time();
     $queue = new Queue($this->redis, 'test');
     $processingQueue = sprintf('test-processing-%s[%d][%d]', gethostname(), getmypid(), $time);
     $this->redis->lpush($processingQueue, [1, 5, 5, 3]);
     $uTime = microtime(true);
     $this->redis->hset('test-timeouts', $processingQueue, $uTime);
     $queue->rejectItem(1);
     $queue->rejectItem(5);
     $queue->rejectItem(1);
     // order of the items is lost when using Queue:rejectItem, be aware of that
     $this->assertSame(['1', '5'], $this->redis->lrange('test', 0, 5));
     $this->assertSame(['3', '5'], $this->redis->lrange($processingQueue, 0, 5));
     $this->assertSame([$processingQueue => (string) $uTime], $this->redis->hgetall('test-timeouts'));
     $this->assertKeys(['test', $processingQueue, 'test-timeouts']);
     $queue->rejectItem(3);
     $queue->rejectItem(5);
     // order of the items is lost when using Queue:rejectItem, be aware of that
     $this->assertSame(['1', '5', '3', '5'], $this->redis->lrange('test', 0, 5));
     $this->assertKeys(['test']);
     $this->redis->lpush($processingQueue, 1);
     $uTime = microtime(true);
     $this->redis->hset('test-timeouts', $processingQueue, $uTime);
     $queue->rejectItem(1);
     // order of the items is lost when using Queue:rejectItem, be aware of that
     $this->assertSame(['1', '5', '3', '5', '1'], $this->redis->lrange('test', 0, 5));
     $this->assertKeys(['test']);
 }
예제 #3
0
 public function testRejectItem()
 {
     $queue = new Queue($this->redis, 'test', [], $this->getTimeMock());
     $processingQueue = sprintf('test-processing-%s[%d][%d]', gethostname(), getmypid(), self::TIME_MOCK);
     $this->redis->lpush($processingQueue, [1, 5, 5, 3]);
     $this->redis->hset('test-timeouts', $processingQueue, self::MICRO_TIME_MOCK);
     $queue->rejectItem(1);
     $queue->rejectItem(5);
     $queue->rejectItem(1);
     // order of the items is lost when using Queue:rejectItem, be aware of that
     $this->assertSame(['1', '5'], $this->redis->lrange('test', 0, 5));
     $this->assertSame(['3', '5'], $this->redis->lrange($processingQueue, 0, 5));
     $this->assertSame([$processingQueue => (string) self::MICRO_TIME_MOCK], $this->redis->hgetall('test-timeouts'));
     $this->assertKeys(['test', $processingQueue, 'test-timeouts']);
     $queue->rejectItem(3);
     $queue->rejectItem(5);
     // order of the items is lost when using Queue:rejectItem, be aware of that
     $this->assertSame(['1', '5', '3', '5'], $this->redis->lrange('test', 0, 5));
     $this->assertKeys(['test']);
     $this->redis->lpush($processingQueue, 1);
     $this->redis->hset('test-timeouts', $processingQueue, self::MICRO_TIME_MOCK);
     $queue->rejectItem(1);
     // order of the items is lost when using Queue:rejectItem, be aware of that
     $this->assertSame(['1', '5', '3', '5', '1'], $this->redis->lrange('test', 0, 5));
     $this->assertKeys(['test']);
 }