1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-05 21:22:57 +02:00

Session setOptions() test and themeHandler test class added.

This commit is contained in:
Cameron 2019-02-07 17:11:17 -08:00
parent 40f6c66923
commit 2868748c8a
3 changed files with 229 additions and 3 deletions

View File

@ -23,7 +23,7 @@
}
catch (Exception $e)
{
$this->assertTrue(false, "Couldn't e107_plugi object");
$this->assertTrue(false, "Couldn't e107_plugin object");
}
}

View File

@ -11,12 +11,44 @@
class e_sessionTest extends \Codeception\Test\Unit
{
/*
public function testSetOption()
/** @var e_session */
private $sess;
protected function _before()
{
try
{
$this->sess = $this->make('e_session');
}
catch (Exception $e)
{
$this->assertTrue(false, "Couldn't load e_session object");
}
}
public function testSetOption()
{
$opt = array(
'lifetime' => 3600 ,
'path' => '/',
'domain' => 'test.com',
'secure' => false,
'httponly' => true,
'_dummy' => 'not here'
);
$this->sess->setOptions($opt);
$newOpt = $this->sess->getOptions();
unset($opt['_dummy']);
$this->assertEquals($opt,$newOpt);
}
/*
public function testGetOption()
{

View File

@ -0,0 +1,194 @@
<?php
/**
* Created by PhpStorm.
* Date: 2/7/2019
* Time: 5:03 PM
*/
class themeHandlerTest extends \Codeception\Test\Unit
{
/** @var themeHandler */
protected $th;
protected function _before()
{
try
{
$this->th = $this->make('themeHandler');
}
catch(Exception $e)
{
$this->assertTrue(false, "Couldn't load themeHandler object");
}
}
public function testSetThemeConfig()
{
}
/*
public function testTheme_adminlog()
{
}
public function testPostObserver()
{
}
public function testInstallContent()
{
}
public function testRenderTheme()
{
}
public function testSetAdminStyle()
{
}
public function testRenderThemeInfo()
{
}
public function testRenderUploadForm()
{
}
public function testFindDefault()
{
}
public function testGetThemes()
{
}
public function testRenderOnline()
{
}
public function testShowThemes()
{
}
public function testSetLayouts()
{
}
public function testRenderThemeConfig()
{
}
public function testGetThemeCategory()
{
}
public function testShowPreview()
{
}
public function testLoadThemeConfig()
{
}
public function testParse_theme_php()
{
}
public function testRenderThemeHelp()
{
}
public function testSetAdminTheme()
{
}
public function testRefreshPage()
{
}
public function testParse_theme_xml()
{
}
public function testThemeUpload()
{
}
public function testInstallContentCheck()
{
}
public function testSetStyle()
{
}
public function testGetMarketplace()
{
}
public function testRenderPresets()
{
}
public function testRenderPlugins()
{
}
public function testThemePreview()
{
}
public function testSetCustomPages()
{
}
public function testGetThemeInfo()
{
}
public function testSetTheme()
{
}
*/
}