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_Stat tests.
|
|
|
|
*
|
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
|
|
|
|
2010-04-18 13:58:43 +00:00
|
|
|
class Resque_Tests_StatTest extends Resque_Tests_TestCase
|
|
|
|
{
|
2018-05-25 07:26:54 +00:00
|
|
|
public function testStatCanBeIncremented()
|
|
|
|
{
|
|
|
|
Resque_Stat::incr('test_incr');
|
|
|
|
Resque_Stat::incr('test_incr');
|
|
|
|
$this->assertEquals(2, $this->redis->get('resque:stat:test_incr'));
|
|
|
|
}
|
2010-04-18 13:58:43 +00:00
|
|
|
|
2018-05-25 07:26:54 +00:00
|
|
|
public function testStatCanBeIncrementedByX()
|
|
|
|
{
|
|
|
|
Resque_Stat::incr('test_incrX', 10);
|
|
|
|
Resque_Stat::incr('test_incrX', 11);
|
|
|
|
$this->assertEquals(21, $this->redis->get('resque:stat:test_incrX'));
|
|
|
|
}
|
2010-04-18 13:58:43 +00:00
|
|
|
|
2018-05-25 07:26:54 +00:00
|
|
|
public function testStatCanBeDecremented()
|
|
|
|
{
|
|
|
|
Resque_Stat::incr('test_decr', 22);
|
|
|
|
Resque_Stat::decr('test_decr');
|
|
|
|
$this->assertEquals(21, $this->redis->get('resque:stat:test_decr'));
|
|
|
|
}
|
2010-04-18 13:58:43 +00:00
|
|
|
|
2018-05-25 07:26:54 +00:00
|
|
|
public function testStatCanBeDecrementedByX()
|
|
|
|
{
|
|
|
|
Resque_Stat::incr('test_decrX', 22);
|
|
|
|
Resque_Stat::decr('test_decrX', 11);
|
|
|
|
$this->assertEquals(11, $this->redis->get('resque:stat:test_decrX'));
|
|
|
|
}
|
2010-04-18 13:58:43 +00:00
|
|
|
|
2018-05-25 07:26:54 +00:00
|
|
|
public function testGetStatByName()
|
|
|
|
{
|
|
|
|
Resque_Stat::incr('test_get', 100);
|
|
|
|
$this->assertEquals(100, Resque_Stat::get('test_get'));
|
|
|
|
}
|
2010-04-18 13:58:43 +00:00
|
|
|
|
2018-05-25 07:26:54 +00:00
|
|
|
public function testGetUnknownStatReturns0()
|
|
|
|
{
|
|
|
|
$this->assertEquals(0, Resque_Stat::get('test_get_unknown'));
|
|
|
|
}
|
2010-04-18 13:58:43 +00:00
|
|
|
}
|