mirror of
https://github.com/predis/predis.git
synced 2026-09-03 14:28:49 +00:00
Do not parse response to EXPIREAT into boolean value.
This commit is contained in:
@@ -24,12 +24,4 @@ class KeyExpireAt extends Command
|
||||
{
|
||||
return 'EXPIREAT';
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function parseResponse($data)
|
||||
{
|
||||
return (bool) $data;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -54,8 +54,8 @@ class KeyExpireAtTest extends PredisCommandTestCase
|
||||
{
|
||||
$command = $this->getCommand();
|
||||
|
||||
$this->assertTrue($command->parseResponse(1));
|
||||
$this->assertFalse($command->parseResponse(0));
|
||||
$this->assertSame(0, $command->parseResponse(0));
|
||||
$this->assertSame(1, $command->parseResponse(1));
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -65,7 +65,7 @@ class KeyExpireAtTest extends PredisCommandTestCase
|
||||
{
|
||||
$redis = $this->getClient();
|
||||
|
||||
$this->assertFalse($redis->expireat('foo', 2));
|
||||
$this->assertSame(0, $redis->expireat('foo', 2));
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -80,7 +80,7 @@ class KeyExpireAtTest extends PredisCommandTestCase
|
||||
$now = time();
|
||||
$redis->set('foo', 'bar');
|
||||
|
||||
$this->assertTrue($redis->expireat('foo', $now + 1));
|
||||
$this->assertSame(1, $redis->expireat('foo', $now + 1));
|
||||
$this->assertLessThanOrEqual(1, $redis->ttl('foo'));
|
||||
|
||||
$this->sleep(2);
|
||||
@@ -98,7 +98,7 @@ class KeyExpireAtTest extends PredisCommandTestCase
|
||||
$now = time();
|
||||
$redis->set('foo', 'bar');
|
||||
|
||||
$this->assertTrue($redis->expireat('foo', $now - 100));
|
||||
$this->assertSame(1, $redis->expireat('foo', $now - 100));
|
||||
$this->assertSame(0, $redis->exists('foo'));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -54,8 +54,8 @@ class KeyPreciseExpireAtTest extends PredisCommandTestCase
|
||||
{
|
||||
$command = $this->getCommand();
|
||||
|
||||
$this->assertTrue($command->parseResponse(1));
|
||||
$this->assertFalse($command->parseResponse(0));
|
||||
$this->assertSame(0, $command->parseResponse(0));
|
||||
$this->assertSame(1, $command->parseResponse(1));
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -70,7 +70,7 @@ class KeyPreciseExpireAtTest extends PredisCommandTestCase
|
||||
|
||||
$redis->set('foo', 'bar');
|
||||
|
||||
$this->assertTrue($redis->pexpireat('foo', time() + $ttl * 1000));
|
||||
$this->assertSame(1, $redis->pexpireat('foo', time() + $ttl * 1000));
|
||||
$this->assertLessThan($ttl * 1000, $redis->pttl('foo'));
|
||||
|
||||
$this->sleep($ttl + 0.5);
|
||||
@@ -87,7 +87,7 @@ class KeyPreciseExpireAtTest extends PredisCommandTestCase
|
||||
|
||||
$redis->set('foo', 'bar');
|
||||
|
||||
$this->assertTrue($redis->expireat('foo', time() - 100000));
|
||||
$this->assertSame(1, $redis->expireat('foo', time() - 100000));
|
||||
$this->assertSame(0, $redis->exists('foo'));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user