Do not parse response to EXPIREAT into boolean value.

This commit is contained in:
Daniele Alessandri
2015-07-24 15:34:01 +02:00
parent b02e3f4911
commit 082c51146a
3 changed files with 9 additions and 17 deletions
-8
View File
@@ -24,12 +24,4 @@ class KeyExpireAt extends Command
{
return 'EXPIREAT';
}
/**
* {@inheritdoc}
*/
public function parseResponse($data)
{
return (bool) $data;
}
}
+5 -5
View File
@@ -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'));
}
}