Make tests skip redis integration if the extension is not installed

This commit is contained in:
Timothy Warren 2016-07-18 12:59:34 -04:00
parent f940606f0c
commit 672552a1e8
2 changed files with 38 additions and 14 deletions

View File

@ -15,22 +15,33 @@ class CacheRedisDriverTestTwo extends AnimeClient_TestCase {
{ {
parent::setUp(); parent::setUp();
// Setup config with port and password if ( ! class_exists('Redis'))
$container = new Container(); {
$container->set('config', new Config([ $this->markTestSkipped('Redis extension not installed');
'redis' => [ }
'host' => 'localhost', else
'port' => 6379, {
'password' => '', // Setup config with port and password
'database' => 13, $container = new Container();
] $container->set('config', new Config([
])); 'redis' => [
$this->driver = new RedisDriver($container); 'host' => 'localhost',
'port' => 6379,
'password' => '',
'database' => 13,
]
]));
$this->driver = new RedisDriver($container);
}
} }
public function tearDown() public function tearDown()
{ {
parent::tearDown(); parent::tearDown();
$this->driver->__destruct();
if ( ! is_null($this->driver))
{
$this->driver->__destruct();
}
} }
} }

View File

@ -12,12 +12,25 @@ class CacheRedisDriverTest extends AnimeClient_TestCase {
public function setUp() public function setUp()
{ {
parent::setUp(); parent::setUp();
$this->driver = new RedisDriver($this->container);
if ( ! class_exists('Redis'))
{
$this->markTestSkipped('Redis extension not installed');
}
else
{
$this->driver = new RedisDriver($this->container);
}
} }
public function tearDown() public function tearDown()
{ {
parent::tearDown(); parent::tearDown();
$this->driver->__destruct();
if ( ! is_null($this->driver))
{
$this->driver->__destruct();
}
} }
} }