mirror of
https://github.com/e107inc/e107.git
synced 2025-07-12 02:26:21 +02:00
Search test class placeholder added. Simple table parsing test added to db_verify test.
This commit is contained in:
@ -11,6 +11,22 @@
|
|||||||
|
|
||||||
class db_verifyTest extends \Codeception\Test\Unit
|
class db_verifyTest extends \Codeception\Test\Unit
|
||||||
{
|
{
|
||||||
|
|
||||||
|
/** @var db_verify */
|
||||||
|
private $dbv;
|
||||||
|
|
||||||
|
protected function _before()
|
||||||
|
{
|
||||||
|
require_once(e_HANDLER."db_verify_class.php");
|
||||||
|
try
|
||||||
|
{
|
||||||
|
$this->dbv = $this->make('db_verify');
|
||||||
|
}
|
||||||
|
catch (Exception $e)
|
||||||
|
{
|
||||||
|
$this->fail("Couldn't load db_verify object");
|
||||||
|
}
|
||||||
|
}
|
||||||
/*
|
/*
|
||||||
public function testGetFields()
|
public function testGetFields()
|
||||||
{
|
{
|
||||||
@ -91,12 +107,212 @@
|
|||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
public function testGetSqlFileTables()
|
public function testGetSqlFileTables()
|
||||||
{
|
{
|
||||||
|
$tests = array(
|
||||||
|
|
||||||
|
'user_extended' =>
|
||||||
|
"CREATE TABLE `e107_user_extended` (
|
||||||
|
`user_extended_id` int(10) unsigned NOT NULL DEFAULT '0',
|
||||||
|
`user_hidden_fields` text,
|
||||||
|
`user_country` varchar(255) DEFAULT NULL,
|
||||||
|
`user_szulido` date NOT NULL,
|
||||||
|
`user_tag` varchar(255) DEFAULT 'Tagsága nem él. (((',
|
||||||
|
`user_jegyzet` text,
|
||||||
|
`user_homepage` varchar(255) DEFAULT NULL,
|
||||||
|
`user_tagimappa` varchar(255) DEFAULT NULL,
|
||||||
|
`user_belepesi` varchar(255) DEFAULT 'Egyeztetés alatt',
|
||||||
|
`user_timezone` varchar(255) DEFAULT '+0',
|
||||||
|
PRIMARY KEY (`user_extended_id`)
|
||||||
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;",
|
||||||
|
|
||||||
|
'banlist' =>
|
||||||
|
"CREATE TABLE `e107_banlist` (
|
||||||
|
`banlist_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||||
|
`banlist_ip` varchar(100) NOT NULL DEFAULT '',
|
||||||
|
`banlist_bantype` tinyint(3) NOT NULL DEFAULT '0',
|
||||||
|
`banlist_datestamp` int(10) unsigned NOT NULL DEFAULT '0',
|
||||||
|
`banlist_banexpires` int(10) unsigned NOT NULL DEFAULT '0',
|
||||||
|
`banlist_admin` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||||
|
`banlist_reason` tinytext NOT NULL,
|
||||||
|
`banlist_notes` tinytext NOT NULL,
|
||||||
|
PRIMARY KEY (`banlist_id`),
|
||||||
|
KEY `banlist_datestamp` (`banlist_datestamp`),
|
||||||
|
KEY `banlist_banexpires` (`banlist_banexpires`),
|
||||||
|
KEY `banlist_ip` (`banlist_ip`)
|
||||||
|
) ENGINE=MyISAM AUTO_INCREMENT=182 DEFAULT CHARSET=utf8;",
|
||||||
|
|
||||||
|
'test_comment' =>
|
||||||
|
"CREATE TABLE `e107_test_comment` (
|
||||||
|
`eml_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||||
|
`eml_hash` varchar(20) NOT NULL,
|
||||||
|
`eml_datestamp` int(11) unsigned NOT NULL,
|
||||||
|
`eml_from` varchar(50) NOT NULL COMMENT 'This is the from field',
|
||||||
|
`eml_to` varchar(50) NOT NULL,
|
||||||
|
PRIMARY KEY (`eml_id`),
|
||||||
|
UNIQUE KEY `eml_hash` (`eml_hash`)
|
||||||
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;",
|
||||||
|
|
||||||
|
'multiple' =>
|
||||||
|
|
||||||
|
"CREATE TABLE e107_plugin (
|
||||||
|
plugin_id int(10) unsigned NOT NULL auto_increment,
|
||||||
|
plugin_name varchar(100) NOT NULL default '',
|
||||||
|
plugin_version varchar(10) NOT NULL default '',
|
||||||
|
plugin_path varchar(100) NOT NULL default '',
|
||||||
|
plugin_installflag tinyint(1) unsigned NOT NULL default '0',
|
||||||
|
plugin_addons text NOT NULL,
|
||||||
|
plugin_category varchar(100) NOT NULL default '',
|
||||||
|
PRIMARY KEY (plugin_id),
|
||||||
|
UNIQUE KEY plugin_path (plugin_path)
|
||||||
|
) ENGINE=MyISAM;
|
||||||
|
CREATE TABLE e107_rate (
|
||||||
|
rate_id int(10) unsigned NOT NULL auto_increment,
|
||||||
|
rate_table varchar(100) NOT NULL default '',
|
||||||
|
rate_itemid int(10) unsigned NOT NULL default '0',
|
||||||
|
rate_rating int(10) unsigned NOT NULL default '0',
|
||||||
|
rate_votes int(10) unsigned NOT NULL default '0',
|
||||||
|
rate_voters text NOT NULL,
|
||||||
|
rate_up int(10) unsigned NOT NULL default '0',
|
||||||
|
rate_down int(10) unsigned NOT NULL default '0',
|
||||||
|
PRIMARY KEY (rate_id)
|
||||||
|
) ENGINE=MyISAM;
|
||||||
|
|
||||||
|
"
|
||||||
|
);
|
||||||
|
|
||||||
|
$expected = array(
|
||||||
|
'user_extended' => array (
|
||||||
|
'tables' =>
|
||||||
|
array (
|
||||||
|
0 => 'user_extended',
|
||||||
|
),
|
||||||
|
'data' =>
|
||||||
|
array (
|
||||||
|
0 => '`user_extended_id` int(10) unsigned NOT NULL DEFAULT \'0\',
|
||||||
|
`user_hidden_fields` text,
|
||||||
|
`user_country` varchar(255) DEFAULT NULL,
|
||||||
|
`user_szulido` date NOT NULL,
|
||||||
|
`user_tag` varchar(255) DEFAULT \'Tagsága nem él. (((\',
|
||||||
|
`user_jegyzet` text,
|
||||||
|
`user_homepage` varchar(255) DEFAULT NULL,
|
||||||
|
`user_tagimappa` varchar(255) DEFAULT NULL,
|
||||||
|
`user_belepesi` varchar(255) DEFAULT \'Egyeztetés alatt\',
|
||||||
|
`user_timezone` varchar(255) DEFAULT \'+0\',
|
||||||
|
PRIMARY KEY (`user_extended_id`)',
|
||||||
|
),
|
||||||
|
'engine' =>
|
||||||
|
array (
|
||||||
|
0 => 'MyISAM',
|
||||||
|
),
|
||||||
|
),
|
||||||
|
|
||||||
|
'banlist' => array (
|
||||||
|
'tables' =>
|
||||||
|
array (
|
||||||
|
0 => 'banlist',
|
||||||
|
),
|
||||||
|
'data' =>
|
||||||
|
array (
|
||||||
|
0 => '`banlist_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||||
|
`banlist_ip` varchar(100) NOT NULL DEFAULT \'\',
|
||||||
|
`banlist_bantype` tinyint(3) NOT NULL DEFAULT \'0\',
|
||||||
|
`banlist_datestamp` int(10) unsigned NOT NULL DEFAULT \'0\',
|
||||||
|
`banlist_banexpires` int(10) unsigned NOT NULL DEFAULT \'0\',
|
||||||
|
`banlist_admin` smallint(5) unsigned NOT NULL DEFAULT \'0\',
|
||||||
|
`banlist_reason` tinytext NOT NULL,
|
||||||
|
`banlist_notes` tinytext NOT NULL,
|
||||||
|
PRIMARY KEY (`banlist_id`),
|
||||||
|
KEY `banlist_datestamp` (`banlist_datestamp`),
|
||||||
|
KEY `banlist_banexpires` (`banlist_banexpires`),
|
||||||
|
KEY `banlist_ip` (`banlist_ip`)',
|
||||||
|
),
|
||||||
|
'engine' =>
|
||||||
|
array (
|
||||||
|
0 => 'MyISAM',
|
||||||
|
),
|
||||||
|
),
|
||||||
|
|
||||||
|
'test_comment' => array (
|
||||||
|
'tables' =>
|
||||||
|
array (
|
||||||
|
0 => 'test_comment',
|
||||||
|
),
|
||||||
|
'data' =>
|
||||||
|
array (
|
||||||
|
0 => '`eml_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||||
|
`eml_hash` varchar(20) NOT NULL,
|
||||||
|
`eml_datestamp` int(11) unsigned NOT NULL,
|
||||||
|
`eml_from` varchar(50) NOT NULL COMMENT \'This is the from field\',
|
||||||
|
`eml_to` varchar(50) NOT NULL,
|
||||||
|
PRIMARY KEY (`eml_id`),
|
||||||
|
UNIQUE KEY `eml_hash` (`eml_hash`)',
|
||||||
|
),
|
||||||
|
'engine' =>
|
||||||
|
array (
|
||||||
|
0 => 'MyISAM',
|
||||||
|
),
|
||||||
|
),
|
||||||
|
|
||||||
|
'multiple' =>
|
||||||
|
array (
|
||||||
|
'tables' =>
|
||||||
|
array (
|
||||||
|
0 => 'plugin',
|
||||||
|
1 => 'rate',
|
||||||
|
),
|
||||||
|
'data' =>
|
||||||
|
array (
|
||||||
|
0 => 'plugin_id int(10) unsigned NOT NULL auto_increment,
|
||||||
|
plugin_name varchar(100) NOT NULL default \'\',
|
||||||
|
plugin_version varchar(10) NOT NULL default \'\',
|
||||||
|
plugin_path varchar(100) NOT NULL default \'\',
|
||||||
|
plugin_installflag tinyint(1) unsigned NOT NULL default \'0\',
|
||||||
|
plugin_addons text NOT NULL,
|
||||||
|
plugin_category varchar(100) NOT NULL default \'\',
|
||||||
|
PRIMARY KEY (plugin_id),
|
||||||
|
UNIQUE KEY plugin_path (plugin_path)',
|
||||||
|
1 => 'rate_id int(10) unsigned NOT NULL auto_increment,
|
||||||
|
rate_table varchar(100) NOT NULL default \'\',
|
||||||
|
rate_itemid int(10) unsigned NOT NULL default \'0\',
|
||||||
|
rate_rating int(10) unsigned NOT NULL default \'0\',
|
||||||
|
rate_votes int(10) unsigned NOT NULL default \'0\',
|
||||||
|
rate_voters text NOT NULL,
|
||||||
|
rate_up int(10) unsigned NOT NULL default \'0\',
|
||||||
|
rate_down int(10) unsigned NOT NULL default \'0\',
|
||||||
|
PRIMARY KEY (rate_id)',
|
||||||
|
),
|
||||||
|
'engine' =>
|
||||||
|
array (
|
||||||
|
0 => 'MyISAM',
|
||||||
|
1 => 'MyISAM',
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
);
|
||||||
|
|
||||||
|
foreach($tests as $table => $sql)
|
||||||
|
{
|
||||||
|
|
||||||
|
$actual = $this->dbv->getSqlFileTables($sql);
|
||||||
|
|
||||||
|
$this->assertEquals($actual['tables'], $expected[$table]['tables'], "Table ".$table." could not be parsed.");
|
||||||
|
|
||||||
|
foreach($expected[$table]['data'] as $k=>$data)
|
||||||
|
{
|
||||||
|
$data = str_replace("\t", '', $data);
|
||||||
|
$this->assertEquals($actual['data'][$k], $data, "Table ".$table."['data'][".$k."] did not match.");
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->assertEquals($actual['engine'], $expected[$table]['engine']);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
public function testFixForm()
|
public function testFixForm()
|
||||||
{
|
{
|
||||||
|
|
||||||
|
39
tests/unit/e_searchTest.php
Normal file
39
tests/unit/e_searchTest.php
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* e107 website system
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008-2018 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_searchTest extends \Codeception\Test\Unit
|
||||||
|
{
|
||||||
|
|
||||||
|
/* public function testGetParams()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testParsesearch_crop()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testParsesearch()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testSetParams()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testStopword()
|
||||||
|
{
|
||||||
|
|
||||||
|
}*/
|
||||||
|
}
|
Reference in New Issue
Block a user