1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-29 09:10:23 +02:00

Extra tests and minor cleanup for PHP 8.3.

This commit is contained in:
camer0n
2023-11-28 12:17:53 -08:00
parent ab64f0f7bf
commit ea8a814ab4
6 changed files with 179 additions and 138 deletions

View File

@@ -7,4 +7,33 @@ namespace Helper;
class Functional extends E107Base
{
protected $deployer_components = ['db'];
public function _beforeSuite($settings = array())
{
parent::_beforeSuite($settings);
global $_E107;
$_E107 = array();
$_E107['cli'] = true;
$_E107['debug'] = true;
codecept_debug("Loading ".APP_PATH."/class2.php…");
define('E107_DEBUG_LEVEL', 1 << 0);
require_once(APP_PATH."/class2.php");
$create_dir = array(e_MEDIA,e_MEDIA_IMAGE,e_MEDIA_ICON,e_SYSTEM,e_CACHE,e_CACHE_CONTENT,e_CACHE_IMAGE, e_CACHE_DB, e_LOG, e_BACKUP, e_CACHE_URL, e_TEMP, e_IMPORT);
foreach($create_dir as $dr)
{
if(!is_dir($dr))
{
if(mkdir($dr, 0755))
{
// echo "\n(Creating ".$dr.")";
}
}
}
}
}

View File

@@ -382,10 +382,13 @@
}
*/
/*
public function testSetConfig()
/* public function testSetConfig()
{
$cfg = e107::getConfig();
$cfg = e107::getConfig('core',true, true);
$this->assertIsObject($cfg);
$before = $cfg->get('sitename');
$this->ui->setConfig($cfg);
@@ -394,8 +397,8 @@
$this->assertSame($after, $before);
}
*/
}*/

View File

@@ -26,7 +26,7 @@
}
catch (Exception $e)
{
$this->assertTrue(false, "Couldn't load e_plugin object: $e");
static::fail("Couldn't load e_plugin object: $e");
}
}
@@ -221,12 +221,18 @@
{
}
*/
public function testGetIcon()
{
$result = $this->ep->clearCache()->load('gallery')->getIcon(32);
$expected = "<img src='./e107_plugins/gallery/images/gallery_32.png' alt=\"Gallery\" class='icon S32' />";
self::assertSame($expected, $result);
$result = $this->ep->clearCache()->load('gallery')->getIcon(32, 'path');
$expected = '{e_PLUGIN}gallery/images/gallery_32.png';
self::assertSame($expected, $result);
}
*/
public function testGetInstalled()
{
$result = $this->ep->clearCache()->getInstalled();