mirror of
https://github.com/predis/predis.git
synced 2026-08-28 03:02:04 +00:00
[tests] Exlude persistent connections tests under PHP 5.3.
The get_resource_type() function does not differentiate between normal streams and persistent streams, so we cannot really test this case.
This commit is contained in:
@@ -24,13 +24,10 @@ class StreamConnectionTest extends PredisConnectionTestCase
|
||||
|
||||
/**
|
||||
* @group connected
|
||||
* @requires PHP 5.4
|
||||
*/
|
||||
public function testPersistentParameterWithFalseLikeValues()
|
||||
{
|
||||
if ($this->isHHVM()) {
|
||||
$this->markTestSkipped('This test does not currently work on HHVM.');
|
||||
}
|
||||
|
||||
$connection1 = $this->createConnectionWithParams(array('persistent' => 0));
|
||||
$this->assertNonPersistentConnection($connection1);
|
||||
|
||||
@@ -46,13 +43,10 @@ class StreamConnectionTest extends PredisConnectionTestCase
|
||||
|
||||
/**
|
||||
* @group connected
|
||||
* @requires PHP 5.4
|
||||
*/
|
||||
public function testPersistentParameterWithTrueLikeValues()
|
||||
{
|
||||
if ($this->isHHVM()) {
|
||||
$this->markTestSkipped('This test does not currently work on HHVM.');
|
||||
}
|
||||
|
||||
$connection1 = $this->createConnectionWithParams(array('persistent' => 1));
|
||||
$this->assertPersistentConnection($connection1);
|
||||
|
||||
@@ -70,13 +64,10 @@ class StreamConnectionTest extends PredisConnectionTestCase
|
||||
|
||||
/**
|
||||
* @group connected
|
||||
* @requires PHP 5.4
|
||||
*/
|
||||
public function testPersistentConnectionsToSameNodeShareResource()
|
||||
{
|
||||
if ($this->isHHVM()) {
|
||||
$this->markTestSkipped('This test does not currently work on HHVM.');
|
||||
}
|
||||
|
||||
$connection1 = $this->createConnectionWithParams(array('persistent' => true));
|
||||
$connection2 = $this->createConnectionWithParams(array('persistent' => true));
|
||||
|
||||
@@ -90,13 +81,10 @@ class StreamConnectionTest extends PredisConnectionTestCase
|
||||
|
||||
/**
|
||||
* @group connected
|
||||
* @requires PHP 5.4
|
||||
*/
|
||||
public function testPersistentConnectionsToSameNodeDoNotShareResourceUsingDifferentPersistentID()
|
||||
{
|
||||
if ($this->isHHVM()) {
|
||||
$this->markTestSkipped('This test does not currently work on HHVM.');
|
||||
}
|
||||
|
||||
$connection1 = $this->createConnectionWithParams(array('persistent' => 'conn1'));
|
||||
$connection2 = $this->createConnectionWithParams(array('persistent' => 'conn2'));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user