1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-05 13:12:56 +02:00

New test placeholders.

This commit is contained in:
Cameron 2019-02-19 10:15:26 -08:00
parent 917f486d18
commit d71c20cb38
4 changed files with 572 additions and 4 deletions

View File

@ -342,7 +342,7 @@
$qry = "INSERT INTO #core_media_cat(media_cat_owner,media_cat_title,media_cat_sef,media_cat_diz,media_cat_class,media_cat_image,media_cat_order) SELECT media_cat_owner,media_cat_title,media_cat_sef,media_cat_diz,media_cat_class,media_cat_image,media_cat_order FROM #core_media_cat WHERE media_cat_id = 1";
$result = $this->db->db_Select_gen($qry);
$this->db->db_Select_gen($qry);
$qry = "INSERT INTO #core_media_cat(media_cat_owner,media_cat_title,media_cat_sef,media_cat_diz,media_cat_class,media_cat_image,media_cat_order) SELECT media_cat_owner,media_cat_title,media_cat_sef,media_cat_diz,media_cat_class,media_cat_image,media_cat_order FROM #core_media_cat WHERE media_cat_id = 1";
@ -352,7 +352,7 @@
$result = $this->db->db_Query("INSERT INTO ".MPREFIX."core_media_cat(media_cat_owner,media_cat_title,media_cat_category,media_cat_sef,media_cat_diz,media_cat_class,media_cat_image,media_cat_order) SELECT media_cat_owner,media_cat_title,media_cat_category,media_cat_sef,media_cat_diz,media_cat_class,media_cat_image,media_cat_order FROM ".MPREFIX."core_media_cat WHERE media_cat_id = 1");
$err = $this->db->getLastErrorText();
$this->assertFalse($result);
$this->assertFalse($result, $err);
}
@ -764,7 +764,7 @@
$result = $this->db->max('generic', 'gen_user_id', "gen_ip = '127.0.0.1'");
$this->assertEquals('555', $result);
}
@ -1054,7 +1054,7 @@
}
/**
/**
* @desc Test primary methods against a secondary database (ensures mysqlPrefix is working correctly)
*/
public function testSecondaryDatabase()

View File

@ -0,0 +1,256 @@
<?php
/**
* e107 website system
*
* Copyright (C) 2008-2019 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*/
class e_jsmanagerTest extends \Codeception\Test\Unit
{
/** @var e_jsmanager */
protected $js;
protected function _before()
{
try
{
$this->js = $this->make('e_jsmanager');
} catch(Exception $e)
{
$this->assertTrue(false, "Couldn't load e_jsmanager object");
}
}
/*
public function testHeaderPlugin()
{
}
public function testTryHeaderInline()
{
}
*/
public function testIsInAdmin()
{
$result = $this->js->isInAdmin();
$this->assertFalse($result);
}
/*
public function testRequireCoreLib()
{
}
public function testSetInAdmin()
{
}
public function testCoreCSS()
{
}
public function testResetDependency()
{
}
public function testJsSettings()
{
}
public function testGetInstance()
{
}
public function testFooterFile()
{
}
public function testSetData()
{
}
public function testLibraryCSS()
{
}
public function testTryHeaderFile()
{
}
public function testThemeCSS()
{
}
public function testOtherCSS()
{
}
public function testSetLastModfied()
{
}
public function testRenderLinks()
{
}
public function testThemeLib()
{
}
public function testRenderFile()
{
}
public function testHeaderCore()
{
}
public function testRenderInline()
{
}
public function testFooterTheme()
{
}
public function testGetData()
{
}
public function testRequirePluginLib()
{
}
public function testGetCacheId()
{
}
public function testHeaderTheme()
{
}
public function testInlineCSS()
{
}
public function testHeaderFile()
{
}
public function testSetDependency()
{
}
public function testHeaderInline()
{
}
public function testGetLastModfied()
{
}
public function testSetCacheId()
{
}
public function testGetCurrentTheme()
{
}
public function testPluginCSS()
{
}
public function testCheckLibDependence()
{
}
public function testRenderCached()
{
}
public function testGetCurrentLocation()
{
}
public function testFooterInline()
{
}
public function testAddLibPref()
{
}
public function testAddLink()
{
}
public function testLibDisabled()
{
}
public function testArrayMergeDeepArray()
{
}
public function testRenderJs()
{
}
public function testRemoveLibPref()
{
}
*/
}

125
tests/unit/e_userTest.php Normal file
View File

@ -0,0 +1,125 @@
<?php
/**
* e107 website system
*
* Copyright (C) 2008-2019 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*/
class e_userTest extends \Codeception\Test\Unit
{
protected $user;
protected function _before()
{
try
{
$this->user = $this->make('e_user');
}
catch (Exception $e)
{
$this->assertTrue(false, "Couldn't load e_user object");
}
}
/*
public function testIsCurrent()
{
}
public function testGetProvider()
{
}
public function testLogoutAs()
{
}
public function testInitProvider()
{
}
public function testSetSessionData()
{
}
public function test__construct()
{
}
public function testLogin()
{
}
public function testLogout()
{
}
public function testHasProvider()
{
}
public function testSetProvider()
{
}
public function testGetSessionDataAs()
{
}
public function testLoginProvider()
{
}
public function testLoginAs()
{
}
public function testTryProviderSession()
{
}
public function testLoad()
{
}
public function testLoadAs()
{
}
public function testGetParentId()
{
}
public function testDestroy()
{
}
public function testHasSessionError()
{
}*/
}

View File

@ -0,0 +1,187 @@
<?php
/**
* e107 website system
*
* Copyright (C) 2008-2019 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*/
class user_classTest extends \Codeception\Test\Unit
{
protected $uc;
protected function _before()
{
try
{
$this->uc = $this->make('user_class');
}
catch (Exception $e)
{
$this->assertTrue(false, "Couldn't load user_class object");
}
}
/*
public function testGetFixedClassDescription()
{
}
public function testGet_all_user_classes()
{
}
public function testUc_get_classname()
{
}
public function testUc_required_class_list()
{
}
public function testGetIdentifier()
{
}
public function testGetID()
{
}
public function testUcAdd()
{
}
public function testUc_get_classlist()
{
}
public function testCheckbox()
{
}
public function testGet_users_in_class()
{
}
public function testGet_editable_classes()
{
}
public function testCheckbox_desc()
{
}
public function testIsEditableClass()
{
}
public function testGetClassList()
{
}
public function testGetClassFromKey()
{
}
public function testStripFixedClasses()
{
}
public function testUc_get_classdescription()
{
}
public function testUcRemove()
{
}
public function testReadTree()
{
}
public function testIsAdmin()
{
}
public function testUc_get_classicon()
{
}
public function testClearCache()
{
}
public function testGetDescription()
{
}
public function testUc_dropdown()
{
}
public function testUc_checkboxes()
{
}
public function testNormalise_classes()
{
}
public function testSelect()
{
}
public function testMergeClassLists()
{
}
public function testGetName()
{
}
public function testUcGetClassIDFromName()
{
}
public function testVetted_tree()
{
}
*/
}