2010-04-18 13:58:43 +00:00
|
|
|
<?php
|
2018-05-25 07:26:54 +00:00
|
|
|
|
2010-04-18 13:58:43 +00:00
|
|
|
/**
|
|
|
|
* Resque test case class. Contains setup and teardown methods.
|
|
|
|
*
|
2018-05-25 07:26:54 +00:00
|
|
|
* @package Resque/Tests
|
|
|
|
* @author Chris Boulton <chris@bigcommerce.com>
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php
|
2010-04-18 13:58:43 +00:00
|
|
|
*/
|
2018-05-25 07:26:54 +00:00
|
|
|
|
|
|
|
class Resque_Tests_TestCase extends PHPUnit\Framework\TestCase
|
2010-04-18 13:58:43 +00:00
|
|
|
{
|
2018-05-25 07:26:54 +00:00
|
|
|
protected $resque;
|
|
|
|
protected $redis;
|
2010-04-18 13:58:43 +00:00
|
|
|
|
2018-05-25 07:26:54 +00:00
|
|
|
public static function setUpBeforeClass()
|
|
|
|
{
|
|
|
|
date_default_timezone_set('UTC');
|
|
|
|
}
|
2016-10-06 01:49:15 +00:00
|
|
|
|
2018-05-25 07:26:54 +00:00
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
// $config = file_get_contents(REDIS_CONF);
|
|
|
|
// preg_match('#^\s*port\s+([0-9]+)#m', $config, $matches);
|
2018-05-25 07:53:55 +00:00
|
|
|
$this->redis = new Redis();
|
2018-05-25 07:26:54 +00:00
|
|
|
$this->redis->connect('localhost');
|
|
|
|
$this->redis->select(9);
|
2010-04-18 13:58:43 +00:00
|
|
|
|
2018-05-25 07:26:54 +00:00
|
|
|
Resque::setBackend('localhost', 9);
|
2015-02-02 22:00:16 +00:00
|
|
|
|
2018-05-25 07:26:54 +00:00
|
|
|
// Flush redis
|
|
|
|
$this->redis->flushAll();
|
|
|
|
}
|
2016-10-06 01:49:15 +00:00
|
|
|
}
|