public function testReEnqueueTimedOutItems() { $time = time(); $uTime = microtime(true); $queue = new UniqueQueue($this->redis, 'test', [Base::OPT_SLAVES_SYNC_ENABLED => true, Base::OPT_SLAVES_SYNC_REQUIRED_COUNT => 5]); $processingQueue1 = sprintf('test-processing-%s[%d][%d]', gethostname(), getmypid(), $time - 15); $this->redis->lpush($processingQueue1, [1, 5, 3]); $this->redis->hset('test-timeouts', $processingQueue1, $uTime - 15); $processingQueue2 = sprintf('test-processing-%s[%d][%d]', gethostname(), getmypid(), $time - 10); $this->redis->lpush($processingQueue2, [1, 4, 6]); $this->redis->hset('test-timeouts', $processingQueue2, $uTime - 10); $processingQueue3 = sprintf('test-processing-%s[%d][%d]', gethostname(), getmypid(), $time - 5); $this->redis->lpush($processingQueue3, [4, 7, 8]); $this->redis->hset('test-timeouts', $processingQueue3, $uTime - 5); try { $queue->reEnqueueTimedOutItems(7); } catch (\PhpRQ\Exception\NotEnoughSlavesSynced $e) { } $this->assertSame(['6', '4', '3', '5', '1'], $this->redis->lrange('test', 0, 10)); $items = $this->redis->smembers('test-unique'); $this->assertCount(5, $items); $this->assertTrue(in_array('1', $items, true)); $this->assertTrue(in_array('3', $items, true)); $this->assertTrue(in_array('4', $items, true)); $this->assertTrue(in_array('5', $items, true)); $this->assertTrue(in_array('6', $items, true)); $this->assertSame(['8', '7', '4'], $this->redis->lrange($processingQueue3, 0, 5)); $this->assertSame([$processingQueue3 => (string) ($uTime - 5)], $this->redis->hgetall('test-timeouts')); $this->assertKeys(['test', 'test-unique', 'test-timeouts', $processingQueue3]); }
public function testReEnqueueTimedOutItems() { $time = time(); $uTime = microtime(true); $queue = new UniqueQueue($this->redis, 'test'); $processingQueue1 = sprintf('test-processing-%s[%d][%d]', gethostname(), getmypid(), $time - 15); $this->redis->lpush($processingQueue1, [1, 5, 3]); $this->redis->hset('test-timeouts', $processingQueue1, $uTime - 15); $processingQueue2 = sprintf('test-processing-%s[%d][%d]', gethostname(), getmypid(), $time - 10); $this->redis->lpush($processingQueue2, [1, 4, 6]); $this->redis->hset('test-timeouts', $processingQueue2, $uTime - 10); $processingQueue3 = sprintf('test-processing-%s[%d][%d]', gethostname(), getmypid(), $time - 5); $this->redis->lpush($processingQueue3, [4, 7, 8]); $this->redis->hset('test-timeouts', $processingQueue3, $uTime - 5); $queue->reEnqueueTimedOutItems(7); $this->assertSame(['6', '4', '3', '5', '1'], $this->redis->lrange('test', 0, 10)); $items = $this->redis->smembers('test-unique'); $this->assertCount(5, $items); $this->assertTrue(in_array('1', $items, true)); $this->assertTrue(in_array('3', $items, true)); $this->assertTrue(in_array('4', $items, true)); $this->assertTrue(in_array('5', $items, true)); $this->assertTrue(in_array('6', $items, true)); $this->assertSame(['8', '7', '4'], $this->redis->lrange($processingQueue3, 0, 5)); $this->assertSame([$processingQueue3 => (string) ($uTime - 5)], $this->redis->hgetall('test-timeouts')); $this->assertKeys(['test', 'test-unique', 'test-timeouts', $processingQueue3]); $queue->reEnqueueTimedOutItems(0); $this->assertSame(['6', '3', '5', '1', '8', '7', '4'], $this->redis->lrange('test', 0, 10)); $items = $this->redis->smembers('test-unique'); $this->assertCount(7, $items); $this->assertTrue(in_array('1', $items, true)); $this->assertTrue(in_array('3', $items, true)); $this->assertTrue(in_array('4', $items, true)); $this->assertTrue(in_array('5', $items, true)); $this->assertTrue(in_array('6', $items, true)); $this->assertTrue(in_array('7', $items, true)); $this->assertTrue(in_array('8', $items, true)); $this->assertKeys(['test', 'test-unique']); }