mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-05 02:44:27 +02:00
update configuration of disabled resource tests
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
/*
|
||||
* Smarty PHPUnit Bootstrap
|
||||
*/
|
||||
include_once __DIR__ . '/Config.php';
|
||||
// Locate Autoloader or SmartyBC class and load it
|
||||
if (is_file(__DIR__ . '/../smarty/libs/Autoloader.php')) {
|
||||
require_once __DIR__ . '/../smarty/libs/Autoloader.php';
|
||||
|
@@ -4,8 +4,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
include_once __DIR__ . '/Config.php';
|
||||
|
||||
/**
|
||||
* Smarty Test Case Fixture
|
||||
*/
|
||||
@@ -106,7 +104,7 @@ class PHPUnit_Smarty extends PHPUnit_Framework_TestCase
|
||||
define('individualFolders', true);
|
||||
}
|
||||
parent::__construct($name, $data, $dataName);
|
||||
$this->backupStaticAttributesBlacklist[get_class($this)] = array('init', 'config', 'pdo');
|
||||
$this->backupStaticAttributesBlacklist[ get_class($this) ] = array('init', 'config', 'pdo');
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -129,10 +127,10 @@ class PHPUnit_Smarty extends PHPUnit_Framework_TestCase
|
||||
mkdir($dir . '/configs');
|
||||
}
|
||||
if (individualFolders != 'true') {
|
||||
if (!isset($s_dir[$dir])) {
|
||||
if (!isset($s_dir[ $dir ])) {
|
||||
$this->cleanDir($dir . '/templates_c');
|
||||
$this->cleanDir($dir . '/cache');
|
||||
$s_dir[$dir] = true;
|
||||
$s_dir[ $dir ] = true;
|
||||
}
|
||||
$dir = __DIR__;
|
||||
}
|
||||
@@ -351,7 +349,8 @@ KEY `expire` (`expire`)
|
||||
case 'file':
|
||||
case 'filetest':
|
||||
if ($tpl instanceof Smarty) {
|
||||
return sha1($this->normalizePath($this->smarty->getTemplateDir(0) . $name) . $this->smarty->_joined_template_dir);
|
||||
return sha1($this->normalizePath($this->smarty->getTemplateDir(0) . $name) .
|
||||
$this->smarty->_joined_template_dir);
|
||||
}
|
||||
return sha1($tpl->source->filepath . $this->smarty->_joined_template_dir);
|
||||
case 'mysqltest':
|
||||
@@ -375,7 +374,7 @@ KEY `expire` (`expire`)
|
||||
*/
|
||||
public function normalizePath($path)
|
||||
{
|
||||
if ($path[0] == '.') {
|
||||
if ($path[ 0 ] == '.') {
|
||||
$path = getcwd() . DS . $path;
|
||||
}
|
||||
$path = preg_replace('#[\\\/]+([.][\\\/]+)*#', DS, $path);
|
||||
@@ -539,8 +538,8 @@ KEY `expire` (`expire`)
|
||||
$uid = $this->buildUid($tpl, $sp, $name, $type);
|
||||
$_compile_id = isset($compile_id) ? preg_replace('![^\w\|]+!', '_', $compile_id) : null;
|
||||
$_cache_id = isset($cache_id) ? preg_replace('![^\w\|]+!', '_', $cache_id) : null;
|
||||
return sha1($uid) . '#' . preg_replace('#[^\w\|]+#S', '_', $tpl->template_resource) . '#' .
|
||||
$_cache_id . '#' . $_compile_id;
|
||||
return sha1($uid) . '#' . preg_replace('#[^\w\|]+#S', '_', $tpl->template_resource) . '#' . $_cache_id .
|
||||
'#' . $_compile_id;
|
||||
|
||||
default:
|
||||
throw new Exception("Unhandled cache resource type '{$cacheType}'");
|
||||
|
@@ -5,18 +5,18 @@
|
||||
* @package PHPunit
|
||||
* @author Uwe Tews
|
||||
*/
|
||||
if (ApcCacheEnable == true) {
|
||||
include_once __DIR__ . '/../Memcache/CacheResourceCustomMemcacheTest.php';
|
||||
|
||||
include_once __DIR__ . '/../Memcache/CacheResourceCustomMemcacheTest.php';
|
||||
|
||||
/**
|
||||
/**
|
||||
* class for cache resource file tests
|
||||
*
|
||||
* @runTestsInSeparateProcess
|
||||
* @preserveGlobalState disabled
|
||||
* @backupStaticAttributes enabled
|
||||
*/
|
||||
class CacheResourceCustomApcTest extends CacheResourceCustomMemcacheTest
|
||||
{
|
||||
class CacheResourceCustomApcTest extends CacheResourceCustomMemcacheTest
|
||||
{
|
||||
public function setUp()
|
||||
{
|
||||
if (ApcCacheEnable != true) {
|
||||
@@ -31,5 +31,6 @@ class CacheResourceCustomApcTest extends CacheResourceCustomMemcacheTest
|
||||
$this->smarty->setCachingType('apc');
|
||||
$this->smarty->addPluginsDir(SMARTY_DIR . '../demo/plugins/');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -5,18 +5,19 @@
|
||||
* @package PHPunit
|
||||
* @author Uwe Tews
|
||||
*/
|
||||
if (MemCacheEnable == true) {
|
||||
|
||||
include_once __DIR__ . '/../_shared/CacheResourceTestCommon.php';
|
||||
include_once __DIR__ . '/../_shared/CacheResourceTestCommon.php';
|
||||
|
||||
/**
|
||||
/**
|
||||
* class for cache resource memcache tests
|
||||
*
|
||||
* @runTestsInSeparateProcess
|
||||
* @preserveGlobalState disabled
|
||||
* @backupStaticAttributes enabled
|
||||
*/
|
||||
class CacheResourceCustomMemcacheTest extends CacheResourceTestCommon
|
||||
{
|
||||
class CacheResourceCustomMemcacheTest extends CacheResourceTestCommon
|
||||
{
|
||||
/**
|
||||
* Sets up the fixture
|
||||
* This method is called before a test is executed.
|
||||
@@ -45,4 +46,5 @@ class CacheResourceCustomMemcacheTest extends CacheResourceTestCommon
|
||||
{
|
||||
$this->assertEquals(- 1, $b);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -5,18 +5,19 @@
|
||||
* @package PHPunit
|
||||
* @author Uwe Tews
|
||||
*/
|
||||
if (MysqlCacheEnable == true) {
|
||||
|
||||
include_once __DIR__ . '/../_shared/CacheResourceTestCommon.php';
|
||||
include_once __DIR__ . '/../_shared/CacheResourceTestCommon.php';
|
||||
|
||||
/**
|
||||
/**
|
||||
* class for cache resource file tests
|
||||
*
|
||||
* @runTestsInSeparateProcess
|
||||
* @preserveGlobalState disabled
|
||||
* @backupStaticAttributes enabled
|
||||
*/
|
||||
class CacheResourceCustomMysqlTest extends CacheResourceTestCommon
|
||||
{
|
||||
class CacheResourceCustomMysqlTest extends CacheResourceTestCommon
|
||||
{
|
||||
|
||||
public function setUp()
|
||||
{
|
||||
@@ -36,5 +37,6 @@ class CacheResourceCustomMysqlTest extends CacheResourceTestCommon
|
||||
$this->cleanDirs();
|
||||
$this->initMysqlCache();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -5,18 +5,19 @@
|
||||
* @package PHPunit
|
||||
* @author Uwe Tews
|
||||
*/
|
||||
if (PdoCacheEnable == true) {
|
||||
|
||||
include_once __DIR__ . '/../_shared/CacheResourceTestCommon.php';
|
||||
include_once __DIR__ . '/../_shared/CacheResourceTestCommon.php';
|
||||
|
||||
/**
|
||||
/**
|
||||
* class for cache resource file tests
|
||||
*
|
||||
* @runTestsInSeparateProcess
|
||||
* @preserveGlobalState disabled
|
||||
* @backupStaticAttributes enabled
|
||||
*/
|
||||
class CacheResourceCustomPDOTest extends CacheResourceTestCommon
|
||||
{
|
||||
class CacheResourceCustomPDOTest extends CacheResourceTestCommon
|
||||
{
|
||||
|
||||
public function setUp($dir = null, $clear = true)
|
||||
{
|
||||
@@ -30,8 +31,10 @@ class CacheResourceCustomPDOTest extends CacheResourceTestCommon
|
||||
parent::setUp();
|
||||
$this->smarty->setCachingType('pdo');
|
||||
$this->smarty->addPluginsDir(SMARTY_DIR . '../demo/plugins/');
|
||||
$this->assertTrue(false !== $this->smarty->loadPlugin('Smarty_CacheResource_Pdotest'), 'loadPlugin() could not load PDO cache resource');
|
||||
$this->smarty->registerCacheResource('pdo', new Smarty_CacheResource_Pdotest($this->getPDO(), 'output_cache'));
|
||||
$this->assertTrue(false !== $this->smarty->loadPlugin('Smarty_CacheResource_Pdotest'),
|
||||
'loadPlugin() could not load PDO cache resource');
|
||||
$this->smarty->registerCacheResource('pdo',
|
||||
new Smarty_CacheResource_Pdotest($this->getPDO(), 'output_cache'));
|
||||
}
|
||||
|
||||
public function testInit()
|
||||
@@ -39,5 +42,6 @@ class CacheResourceCustomPDOTest extends CacheResourceTestCommon
|
||||
$this->cleanDirs();
|
||||
$this->initMysqlCache();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -5,16 +5,17 @@
|
||||
* @package PHPunit
|
||||
* @author Uwe Tews
|
||||
*/
|
||||
if (PdoGzipCacheEnable == true) {
|
||||
|
||||
include_once __DIR__ . '/../_shared/CacheResourceTestCommon.php';
|
||||
include_once __DIR__ . '/../_shared/CacheResourceTestCommon.php';
|
||||
|
||||
/**
|
||||
/**
|
||||
* class for cache resource file tests
|
||||
*
|
||||
* @backupStaticAttributes enabled
|
||||
*/
|
||||
class CacheResourceCustomPDOGzipTest extends CacheResourceTestCommon
|
||||
{
|
||||
class CacheResourceCustomPDOGzipTest extends CacheResourceTestCommon
|
||||
{
|
||||
|
||||
public function setUp($dir = null, $clear = true)
|
||||
{
|
||||
@@ -28,8 +29,10 @@ class CacheResourceCustomPDOGzipTest extends CacheResourceTestCommon
|
||||
parent::setUp();
|
||||
$this->smarty->setCachingType('pdo');
|
||||
$this->smarty->addPluginsDir(SMARTY_DIR . '../demo/plugins/');
|
||||
$this->assertTrue(false !== $this->smarty->loadPlugin('Smarty_CacheResource_Pdo_Gziptest'), 'loadPlugin() could not load PDOGzip cache resource');
|
||||
$this->smarty->registerCacheResource('pdo', new Smarty_CacheResource_Pdo_Gziptest($this->getPDO(), 'output_cache'));
|
||||
$this->assertTrue(false !== $this->smarty->loadPlugin('Smarty_CacheResource_Pdo_Gziptest'),
|
||||
'loadPlugin() could not load PDOGzip cache resource');
|
||||
$this->smarty->registerCacheResource('pdo', new Smarty_CacheResource_Pdo_Gziptest($this->getPDO(),
|
||||
'output_cache'));
|
||||
}
|
||||
|
||||
public function testInit()
|
||||
@@ -37,5 +40,6 @@ class CacheResourceCustomPDOGzipTest extends CacheResourceTestCommon
|
||||
$this->cleanDirs();
|
||||
$this->initMysqlCache();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -5,17 +5,18 @@
|
||||
* @package PHPunit
|
||||
* @author Uwe Tews
|
||||
*/
|
||||
include_once __DIR__ . '/../_shared/CacheResourceTestCommon.php';
|
||||
if (MysqlCacheEnable == true) {
|
||||
include_once __DIR__ . '/../_shared/CacheResourceTestCommon.php';
|
||||
|
||||
/**
|
||||
/**
|
||||
* class for cache resource file tests
|
||||
*
|
||||
* @runTestsInSeparateProcess
|
||||
* @preserveGlobalState disabled
|
||||
* @backupStaticAttributes enabled
|
||||
*/
|
||||
class CacheResourceCustomRegisteredTest extends CacheResourceTestCommon
|
||||
{
|
||||
class CacheResourceCustomRegisteredTest extends CacheResourceTestCommon
|
||||
{
|
||||
public function setUp()
|
||||
{
|
||||
if (MysqlCacheEnable != true) {
|
||||
@@ -38,5 +39,6 @@ class CacheResourceCustomRegisteredTest extends CacheResourceTestCommon
|
||||
$this->cleanDirs();
|
||||
$this->initMysqlCache();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user