mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 15:05:43 +02:00
[ticket/9983] get/put cache test moved to a base class.
PHPBB3-9983
This commit is contained in:
parent
829b75e5c8
commit
c3d1408c52
24
tests/cache/common_test_case.php
vendored
Normal file
24
tests/cache/common_test_case.php
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package testing
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
*
|
||||
*/
|
||||
|
||||
abstract class phpbb_cache_common_test_case extends phpbb_database_test_case
|
||||
{
|
||||
public function test_get_put()
|
||||
{
|
||||
$this->assertSame(false, $this->driver->get('test_key'));
|
||||
|
||||
$this->driver->put('test_key', 'test_value');
|
||||
|
||||
$this->assertEquals(
|
||||
'test_value',
|
||||
$this->driver->get('test_key'),
|
||||
'File ACM put and get'
|
||||
);
|
||||
}
|
||||
}
|
16
tests/cache/file_driver_test.php
vendored
16
tests/cache/file_driver_test.php
vendored
@ -7,7 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
class phpbb_cache_file_driver_test extends phpbb_database_test_case
|
||||
require_once dirname(__FILE__) . '/common_test_case.php';
|
||||
|
||||
class phpbb_cache_file_driver_test extends phpbb_cache_common_test_case
|
||||
{
|
||||
private $cache_dir;
|
||||
protected $driver;
|
||||
@ -65,18 +67,6 @@ class phpbb_cache_file_driver_test extends phpbb_database_test_case
|
||||
rmdir($this->cache_dir);
|
||||
}
|
||||
|
||||
public function test_cache_driver_file()
|
||||
{
|
||||
$this->driver->put('test_key', 'test_value');
|
||||
$this->driver->save();
|
||||
|
||||
$this->assertEquals(
|
||||
'test_value',
|
||||
$this->driver->get('test_key'),
|
||||
'File ACM put and get'
|
||||
);
|
||||
}
|
||||
|
||||
public function test_cache_sql_file()
|
||||
{
|
||||
global $db, $cache;
|
||||
|
10
tests/cache/null_driver_test.php
vendored
10
tests/cache/null_driver_test.php
vendored
@ -23,6 +23,16 @@ class phpbb_cache_null_driver_test extends phpbb_database_test_case
|
||||
$this->driver = new phpbb_cache_driver_null;
|
||||
}
|
||||
|
||||
public function test_get_put()
|
||||
{
|
||||
$this->assertSame(false, $this->driver->get('key'));
|
||||
|
||||
$this->driver->put('key', 'value');
|
||||
|
||||
// null driver does not cache
|
||||
$this->assertSame(false, $this->driver->get('key'));
|
||||
}
|
||||
|
||||
public function test_null_cache_sql()
|
||||
{
|
||||
global $db, $cache;
|
||||
|
4
tests/cache/redis_driver_test.php
vendored
4
tests/cache/redis_driver_test.php
vendored
@ -7,7 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
class phpbb_cache_redis_driver_test extends phpbb_database_test_case
|
||||
require_once dirname(__FILE__) . '/common_test_case.php';
|
||||
|
||||
class phpbb_cache_redis_driver_test extends phpbb_cache_common_test_case
|
||||
{
|
||||
protected static $config;
|
||||
protected $driver;
|
||||
|
Loading…
x
Reference in New Issue
Block a user