1
0
mirror of https://github.com/e107inc/e107.git synced 2025-10-29 04:38:07 +01:00

Merge branch 'e107inc:master' into master

This commit is contained in:
rica-carv
2025-03-26 19:56:16 +00:00
committed by GitHub
35 changed files with 1970 additions and 1366 deletions

View File

@@ -10,8 +10,7 @@ jobs:
fail-fast: false
matrix:
operating_system:
- image: docker.io/jrei/systemd-ubuntu:20.04
- image: docker.io/jrei/systemd-ubuntu:22.04
- image: docker.io/jrei/systemd-ubuntu:22.04 # Uses PHP 8.1 by default
runs-on: ubuntu-latest
steps:
@@ -48,6 +47,16 @@ jobs:
"
working-directory: ./e107_tests/lib/ci/salt/
- name: Install PHP extensions
run: |
docker exec target apt-get update
docker exec target apt-get install -y php8.1-zip php8.1-curl php8.1-mbstring php8.1-xml
# Install extensions for PHP 8.1 (default in Ubuntu 22.04)
- name: Verify PHP version
run: docker exec target php -v
# Confirms PHP 8.1 is in use
- name: Install test dependencies
run: |
docker exec -w /app/e107_tests/ -e COMPOSER_ALLOW_SUPERUSER=1 target \

View File

@@ -16,10 +16,10 @@ jobs:
fail-fast: false
matrix:
interpreter:
- image: php:7.4
- image: php:8.1
- image: php:8.2
- image: php:8.3
- image: php:8.4
db:
- image: mysql:5.5
- image: bitnami/mysql:8.0
@@ -113,13 +113,13 @@ jobs:
- name: Install Composer
run: curl -sSL https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin/ --filename=composer
- name: Opt out of CVE-2022-24765 mitigation
run: git config --global safe.directory '*'
- name: Install test dependencies
run: composer update --prefer-dist --no-progress
working-directory: ./e107_tests/
- name: Opt out of CVE-2022-24765 mitigation
run: git config --global safe.directory '*'
- name: Download Git submodule dependencies
run: git submodule update --init --recursive --remote

View File

@@ -1981,8 +1981,15 @@ class error_handler
function __construct()
{
$this->label = array(E_NOTICE => "Notice", E_WARNING => "Warning", E_DEPRECATED => "Deprecated", E_STRICT => "Strict");
$this->color = array(E_NOTICE=> 'info', E_WARNING=>'warning', E_DEPRECATED => 'danger', E_STRICT => 'primary');
$this->label = array(E_NOTICE => "Notice", E_WARNING => "Warning", E_DEPRECATED => "Deprecated");
$this->color = array(E_NOTICE=> 'info', E_WARNING=>'warning', E_DEPRECATED => 'danger');
if (version_compare(PHP_VERSION, '8.4', '<'))
{
$this->label[E_STRICT] = "Strict";
$this->color[E_STRICT] = 'primary';
}
$this->docroot = e_ROOT; // dirname(realpath(__FILE__)).DIRECTORY_SEPARATOR;
// This is initialized before the current debug level is known
@@ -2003,7 +2010,7 @@ class error_handler
if(!empty($_E107['cli']))
{
error_reporting(E_ALL & ~E_STRICT & ~E_NOTICE);
error_reporting(E_ALL & ~E_NOTICE);
return;
}

View File

@@ -11,7 +11,7 @@
*
*/
require_once(__DIR__ . '/../class2.php');
if(!ADMIN)
if(!deftrue('ADMIN'))
{
e107::redirect();
exit;
@@ -129,7 +129,7 @@ class docs_ui extends e_admin_ui
$text .= "
<div class='docs-item' id='{$id}' {$display}>
<h4>" . LAN_DOCS . SEP . str_replace("_", " ", $helpdata['fname']) . "</h4>
<h4>" . LAN_DOCS . defset('SEP') . str_replace("_", " ", $helpdata['fname']) . "</h4>
{$tmp}
</div>";

View File

@@ -356,13 +356,14 @@ class frontpage
elseif(vartrue($_GET['id']))
{
$key = intval($_GET['id']);
$text = $this->edit_rule($fp_settings[$key]); // Display edit form as well
$val = $fp_settings[$key] ?? array();
$text = $this->edit_rule($val); // Display edit form as well
// $text .= $this->select_class($fp_settings, FALSE);
$ns->tablerender(FRTLAN_PAGE_TITLE.SEP.FRTLAN_46, $text);
$ns->tablerender(FRTLAN_PAGE_TITLE.defset('SEP').FRTLAN_46, $text);
}
else
{ // Just show existing rules
$ns->tablerender(FRTLAN_PAGE_TITLE.SEP.FRTLAN_13, $mes->render().$this->select_class($fp_settings, TRUE));
$ns->tablerender(FRTLAN_PAGE_TITLE.defset('SEP').FRTLAN_13, $mes->render().$this->select_class($fp_settings, TRUE));
}
}
@@ -475,13 +476,13 @@ class frontpage
$text_tmp_1 .= "
<tr>
".$this->show_front_val('frontpage', $front_key, $front_value, $is_other_home, $rule_info['page'])."
".$this->show_front_val('frontpage', $front_key, $front_value, $is_other_home, varset($rule_info['page']))."
</tr>
";
$text_tmp_2 .= "
<tr>
".$this->show_front_val('fp_force_page', $front_key, $front_value, $is_other_force, $rule_info['force'])."
".$this->show_front_val('fp_force_page', $front_key, $front_value, $is_other_force, varset($rule_info['force']))."
</tr>
";
@@ -491,12 +492,12 @@ class frontpage
$text = "
<form method='post' action='".e_SELF."'>
<input type='hidden' name='e-token' value='".e_TOKEN."' />
<input type='hidden' name='e-token' value='".defset('e_TOKEN')."' />
";
$text .= '<ul class="nav nav-tabs" id="myTabs">
<li class="active"><a data-toggle="tab" data-bs-toggle="tab" href="#home">'.FRTLAN_49.'</a></li>
<li><a data-toggle="tab" data-bs-toggle="tab" href="#postlogin">'.FRTLAN_35.'</a></li>
<li class="active"><a data-toggle="tab" data-bs-toggle="tab" href="#home">'.defset('FRTLAN_49').'</a></li>
<li><a data-toggle="tab" data-bs-toggle="tab" href="#postlogin">'.defset('FRTLAN_35').'</a></li>
</ul>
';
@@ -558,11 +559,11 @@ class frontpage
</colgroup>
<tr>
<td>".FRTLAN_43."</td>
<td>".e107::getUserClass()->uc_dropdown('class', $rule_info['class'], 'public,guest,member,admin,main,classes')."</td>
<td>".e107::getUserClass()->uc_dropdown('class', varset($rule_info['class']), 'public,guest,member,admin,main,classes')."</td>
</tr>
<tr>
<td>".LAN_ORDER."</td>
<td>".$this->frm->number('fp_order', $rule_info['order'], 3, 'min=0')."</td>
<td>".$this->frm->number('fp_order', varset($rule_info['order']), 3, 'min=0')."</td>
</tr>
</table>

View File

@@ -69,7 +69,7 @@ foreach ($admin_cat['id'] as $cat_key => $cat_id)
$text .= "</table></div>";
$ns->tablerender(ADLAN_47." ".ADMINNAME, $mes->render().$text);
e107::getRender()->tablerender(ADLAN_47." ".ADMINNAME, $mes->render().$text);
echo admin_info();

View File

@@ -345,7 +345,7 @@ $text = "
<form method='post' action='".e_SELF."' autocomplete='off'>
<input type='hidden' name='e-token' value='".defset('e_TOKEN')."' />
<fieldset id='core-prefs-main'>
<h4 class='caption'>".PRFLAN_53.SEP.PRFLAN_1."</h4>
<h4 class='caption'>".PRFLAN_53.defset('SEP').PRFLAN_1."</h4>
<table class='table adminform'>
<colgroup>
<col class='col-label' />
@@ -447,7 +447,7 @@ $text .= "
// Email and Contact Information --------------
$text .= "<fieldset class='e-hideme' id='core-prefs-email'>
<h4 class='caption'>".PRFLAN_53.SEP.PRFLAN_13."</h4>
<h4 class='caption'>".PRFLAN_53.defset('SEP').PRFLAN_13."</h4>
<table class='table adminform'>
<colgroup>
<col class='col-label' />
@@ -622,7 +622,7 @@ $text .= "<fieldset class='e-hideme' id='core-prefs-email'>
// GDPR Settings -----------------------------
$text .= "
<fieldset class='e-hideme' id='core-prefs-gdpr'>
<h4 class='caption'>".PRFLAN_53.SEP.PRFLAN_277."</h4>
<h4 class='caption'>".PRFLAN_53.defset('SEP').PRFLAN_277."</h4>
<table class='table adminform'>
<colgroup>
<col class='col-label' />
@@ -658,7 +658,7 @@ $text .= "
$text .= "
<fieldset class='e-hideme' id='core-prefs-display'>
<h4 class='caption'>".PRFLAN_53.SEP.PRFLAN_13."</h4>
<h4 class='caption'>".PRFLAN_53.defset('SEP').PRFLAN_13."</h4>
<table class='table adminform'>
<colgroup>
<col class='col-label' />
@@ -708,7 +708,7 @@ $text .= "
*/
$text .= "
<fieldset class='e-hideme' id='core-prefs-admindisp'>
<h4 class='caption'>".PRFLAN_53.SEP.PRFLAN_77."</h4>
<h4 class='caption'>".PRFLAN_53.defset('SEP').PRFLAN_77."</h4>
<table class='table adminform'>
<colgroup>
<col class='col-label' />
@@ -781,7 +781,7 @@ $date4 = $tp->toDate(time(),"input");
$text .= "
<fieldset class='e-hideme' id='core-prefs-date'>
<h4 class='caption'>".PRFLAN_53.SEP.PRFLAN_21."</h4>
<h4 class='caption'>".PRFLAN_53.defset('SEP').PRFLAN_21."</h4>
<table class='table adminform'>
<colgroup>
<col class='col-label' />
@@ -853,7 +853,7 @@ $elements = array(1=> PRFLAN_259, 2=> PRFLAN_260, 0=>LAN_DISABLED);
$text .= "
<fieldset class='e-hideme' id='core-prefs-registration'>
<h4 class='caption'>".PRFLAN_53.SEP.PRFLAN_28."</h4>
<h4 class='caption'>".PRFLAN_53.defset('SEP').PRFLAN_28."</h4>
<table class='table adminform'>
<colgroup>
<col class='col-label' />
@@ -998,7 +998,7 @@ $prefOptionPassword = (isset($pref['signup_option_password'])) ? $pref['signup_o
$text .= "
<fieldset class='e-hideme' id='core-prefs-signup'>
<h4 class='caption'>".PRFLAN_53.SEP.PRFLAN_19."</h4>
<h4 class='caption'>".PRFLAN_53.defset('SEP').PRFLAN_19."</h4>
<table class='table adminform'>
<colgroup>
<col class='col-label' />
@@ -1202,7 +1202,7 @@ if ($savePrefs) $core_pref->setPref($pref)->save(false, true);
$text .= "
<fieldset class='e-hideme' id='core-prefs-textpost'>
<h4 class='caption'>".PRFLAN_53.SEP.PRFLAN_286."</h4>
<h4 class='caption'>".PRFLAN_53.defset('SEP').PRFLAN_286."</h4>
<table class='table adminform'>
<colgroup>
<col class='col-label' />
@@ -1368,7 +1368,7 @@ $hasGD = extension_loaded("gd");
$text .= "
<fieldset class='e-hideme' id='core-prefs-security'>
<h4 class='caption'>".PRFLAN_53.SEP.PRFLAN_47."</h4>
<h4 class='caption'>".PRFLAN_53.defset('SEP').PRFLAN_47."</h4>
<table class='table adminform'>
<colgroup>
<col class='col-label' />
@@ -1611,7 +1611,7 @@ $text .= "
$text .= "
<fieldset class='e-hideme' id='core-prefs-comments'>
<h4 class='caption'>".PRFLAN_53.SEP.PRFLAN_87."</h4>
<h4 class='caption'>".PRFLAN_53.defset('SEP').PRFLAN_87."</h4>
<table class='table adminform'>
<colgroup>
<col class='col-label' />
@@ -1715,7 +1715,7 @@ $text .= "
$text .= "
<fieldset class='e-hideme' id='core-prefs-uploads'>
<h4 class='caption'>".PRFLAN_53.SEP.PRFLAN_238."</h4>";
<h4 class='caption'>".PRFLAN_53.defset('SEP').PRFLAN_238."</h4>";
$upload_max_filesize = ini_get('upload_max_filesize');
@@ -1847,7 +1847,7 @@ $text .= "
$text .= "<fieldset class='e-hideme' id='core-prefs-javascript'>
<h4 class='caption'>".PRFLAN_53.SEP.PRFLAN_257 . "</h4>";
<h4 class='caption'>".PRFLAN_53.defset('SEP').PRFLAN_257 . "</h4>";
if(E107_DEBUG_LEVEL > 0)
{
@@ -2057,7 +2057,7 @@ $text .= "</fieldset>";
$text .= "
<fieldset class='e-hideme' id='core-prefs-advanced'>
<h4 class='caption'>".PRFLAN_53.SEP.PRFLAN_149."</h4>
<h4 class='caption'>".PRFLAN_53.defset('SEP').PRFLAN_149."</h4>
<table class='table adminform'>
<colgroup>
<col class='col-label' />

View File

@@ -170,7 +170,7 @@ class comment
* @param bool $rating
* @return string
*/
function form_comment($action, $table, $id, $subject, $content_type, $return = FALSE, $rating = FALSE, $tablerender = TRUE,$pid = false)
function form_comment($action, $table, $id, $subject, $content_type, $return = FALSE, $rating = FALSE, $tablerender = true,$pid = false)
{
//rating : boolean, to show rating system in comment
@@ -256,7 +256,7 @@ class comment
//add the rating select box/result ?
/*
$rate = "";
if ($rating == TRUE && !(ANON == TRUE && USER == FALSE))
if ($rating == true && !(ANON == true && USER == FALSE))
{
global $rater;
require_once(e_HANDLER."rate_class.php");
@@ -264,7 +264,7 @@ class comment
{
$rater = new rater;
}
$rate = $rater->composerating($table, $itemid, $enter = TRUE, USERID, TRUE);
$rate = $rater->composerating($table, $itemid, $enter = true, USERID, true);
} //end rating area
@@ -318,7 +318,7 @@ class comment
if ($tablerender)
{
$text = e107::getRender()->tablerender($caption, $text, '', TRUE);
$text = e107::getRender()->tablerender($caption, $text, '', true);
}
}
else
@@ -520,7 +520,7 @@ class comment
if (isset($_POST['highlight_search']))
{
$highlight_search = TRUE;
$highlight_search = true;
}
if (!defined("IMAGE_rank_main_admin_image"))
@@ -536,11 +536,11 @@ class comment
define("IMAGE_rank_admin_image", (isset($pref['rank_admin_image']) && $pref['rank_admin_image'] && file_exists(THEME."forum/".$pref['rank_admin_image']) ? "<img src='".THEME_ABS."forum/".$pref['rank_admin_image']."' alt='' />" : "<img src='".e_PLUGIN_ABS."forum/images/lite/admin.png' alt='' />"));
}
// $RATING = ($addrating == TRUE && $comrow['user_id'] ? $rater->composerating($thistable, $thisid, FALSE, $comrow['user_id']) : "");
// $RATING = ($addrating == true && $comrow['user_id'] ? $rater->composerating($thistable, $thisid, FALSE, $comrow['user_id']) : "");
$text = $tp->parseTemplate($renderstyle, TRUE, $comment_shortcodes);
$text = $tp->parseTemplate($renderstyle, true, $comment_shortcodes);
if ($action == "comment" && !empty($pref['nested_comments']))
{
@@ -632,7 +632,7 @@ class comment
$comment = trim($comment);
if(!e107::getDb()->update("comments","comment_comment=\"".$tp->toDB($comment)."\" WHERE comment_id = ".intval($id).""))
if(!e107::getDb()->update("comments","comment_comment=\"".$tp->toDB($comment)."\" WHERE comment_id = ".(int) $id.' AND comment_author_id = '.(int) USERID))
{
return "Update Failed"; // trigger ajax error message.
}
@@ -672,7 +672,7 @@ class comment
*/
function enter_comment($data, $comment='', $table='', $id='', $pid='', $subject='', $rateindex = FALSE)
function enter_comment($data, $comment='', $table='', $id='', $pid='', $subject='', $rateindex = false)
{
//rateindex : the posted value from the rateselect box (without the urljump) (see function rateselect())
if($this->engine != 'e107')
@@ -754,7 +754,7 @@ class comment
{
if ($_POST['comment'])
{
if (USER == TRUE)
if (USER == true)
{
$cuser_id = USERID;
$cuser_name = USERNAME;
@@ -992,7 +992,7 @@ class comment
/**
* Get comment permissions; may be:
* - FALSE - no permission
* - false - no permission
* - 'ro' - read-only (Can't create)
* - 'rw' - can create and see
*
@@ -1003,16 +1003,16 @@ class comment
$pref = e107::pref();
if(isset($pref['comments_disabled']) && $pref['comments_disabled'] == TRUE)
if(isset($pref['comments_disabled']) && $pref['comments_disabled'] == true)
{
return FALSE;
return false;
}
if (isset($pref['comments_class']))
{
if (!check_class($pref['comments_class']))
{
return FALSE;
return false;
}
return 'rw';
}
@@ -1053,10 +1053,10 @@ class comment
* @param boolean $tablerender
* @return array|null|string|void
*/
function compose_comment($table, $action, $id, $width, $subject, $rate = FALSE, $return = FALSE, $tablerender = TRUE)
function compose_comment($table, $action, $id, $width, $subject, $rate = false, $return = false, $tablerender = true)
{
//compose comment : single call function will render the existing comments and show the form_comment
//rate : boolean, to show/hide rating system in comment, default FALSE
//rate : boolean, to show/hide rating system in comment, default false
global $totcc;
@@ -1065,7 +1065,7 @@ class comment
$pref = e107::getPref();
$frm = e107::getForm();
if ($this->getCommentPermissions() === FALSE) return;
if ($this->getCommentPermissions() === false) return;
$params = array('method'=>'compose_comment', 'table'=>$table, 'action'=>$action, 'id'=>$id, 'width'=>$width, 'subject'=>$subject, 'rate'=>$rate, 'return'=>$return, 'tablerender'=>$tablerender);
@@ -1146,7 +1146,7 @@ class comment
if ($lock != '1')
{
$comment = $this->form_comment($action, $table, $id, $subject, "", TRUE, $rate, false); // tablerender turned off.
$comment = $this->form_comment($action, $table, $id, $subject, "", true, $rate, false); // tablerender turned off.
}
else
{
@@ -1184,7 +1184,7 @@ class comment
if ($tablerender)
{
echo $ns->tablerender("<span id='e-comment-total'>".$this->totalComments."</span> ".LAN_COMMENTS, $TEMPL, 'comment', TRUE);
echo $ns->tablerender("<span id='e-comment-total'>".$this->totalComments."</span> ".LAN_COMMENTS, $TEMPL, 'comment', true);
}
else
{
@@ -1439,7 +1439,7 @@ class comment
}
$data = e107::getRegistry('e_comment');
if ($data !== FALSE)
if ($data !== false)
{
return $data;
}
@@ -1505,7 +1505,7 @@ class comment
* @param $cdreta
* @return array|mixed|null
*/
function getCommentData($amount = '', $from = 0, $qry = '', $cdvalid = FALSE, $cdreta = FALSE)
function getCommentData($amount = '', $from = 0, $qry = '', $cdvalid = false, $cdreta = false)
{
if($this->engine != 'e107')
@@ -1560,9 +1560,9 @@ class comment
$ret['comment_author'] = (USERID ? "<a href='".e107::getUrl()->create('user/profile/view', array('id' => $comment_author_id, 'name' => $comment_author_name))."'>".$comment_author_name."</a>" : $comment_author_name);
//comment text
$comment = strip_tags(preg_replace("/\[.*?\]/", "", $row['comment_comment'])); // remove bbcode - but leave text in between
$ret['comment_comment'] = $tp->toHTML($comment, FALSE, "", "", $pref['main_wordwrap']);
$ret['comment_comment'] = $tp->toHTML($comment, false, "", "", $pref['main_wordwrap']);
//subject
$ret['comment_subject'] = $tp->toHTML($row['comment_subject'], TRUE);
$ret['comment_subject'] = $tp->toHTML($row['comment_subject'], true);
switch ($row['comment_type'])
{
case '0': // news
@@ -1571,7 +1571,7 @@ class comment
$row2 = $sql2->fetch();
require_once(e_HANDLER.'news_class.php');
$ret['comment_type'] = COMLAN_TYPE_1;
$ret['comment_title'] = $tp->toHTML($row2['news_title'], TRUE, 'emotes_off, no_make_clickable');
$ret['comment_title'] = $tp->toHTML($row2['news_title'], true, 'emotes_off, no_make_clickable');
$ret['comment_url'] = e107::getUrl()->create('news/view/item', $row2);//e_HTTP."comment.php?comment.news.".$row['comment_item_id'];
$ret['comment_category_heading'] = COMLAN_TYPE_1;
$ret['comment_category_url'] = e107::getUrl()->create('news');//e_HTTP."news.php";
@@ -1585,7 +1585,7 @@ class comment
{
$row2 = $sql2->fetch();
$ret['comment_type'] = COMLAN_TYPE_2;
$ret['comment_title'] = $tp->toHTML($row2['download_name'], TRUE, 'emotes_off, no_make_clickable');
$ret['comment_title'] = $tp->toHTML($row2['download_name'], true, 'emotes_off, no_make_clickable');
$ret['comment_url'] = e_HTTP."download.php?view.".$row['comment_item_id'];
$ret['comment_category_heading'] = $row2['download_category_name'];
$ret['comment_category_url'] = e_HTTP."download.php?list.".$row2['download_category_id'];
@@ -1597,7 +1597,7 @@ class comment
{
$row2 = $sql2->fetch();
$ret['comment_type'] = COMLAN_TYPE_4;
$ret['comment_title'] = $tp->toHTML($row2['poll_title'], TRUE, 'emotes_off, no_make_clickable');
$ret['comment_title'] = $tp->toHTML($row2['poll_title'], true, 'emotes_off, no_make_clickable');
$ret['comment_url'] = e_HTTP."comment.php?comment.poll.".$row['comment_item_id'];
$ret['comment_category_url'] = e_PLUGIN_ABS.'poll/poll.php';
}
@@ -1643,7 +1643,7 @@ class comment
{
$row2 = $sql2->fetch();
$ret['comment_type'] = $var['plugin_name'];
$ret['comment_title'] = $tp->toHTML($row2[$var['db_title']], TRUE, 'emotes_off, no_make_clickable');
$ret['comment_title'] = $tp->toHTML($row2[$var['db_title']], true, 'emotes_off, no_make_clickable');
$ret['comment_url'] = str_replace("{NID}", $row['comment_item_id'], $var['reply_location']);
$ret['comment_category_heading'] = $var['plugin_name'];
$ret['comment_category_url'] = e_PLUGIN_ABS.$var['plugin_name'].'/'.$var['plugin_name'].'.php';
@@ -1657,7 +1657,7 @@ class comment
{
$row2 = $sql2->fetch();
$ret['comment_type'] = $var['plugin_name'];
$ret['comment_title'] = $tp->toHTML($row2[$var['db_title']], TRUE, 'emotes_off, no_make_clickable');
$ret['comment_title'] = $tp->toHTML($row2[$var['db_title']], true, 'emotes_off, no_make_clickable');
$ret['comment_url'] = str_replace("{NID}", $row['comment_item_id'], $var['reply_location']);
$ret['comment_category_heading'] = $var['plugin_name'];
$ret['comment_category_url'] = e_PLUGIN_ABS.$var['plugin_name'].'/'.$var['plugin_name'].'.php';

View File

@@ -425,7 +425,10 @@ class db_verify
}
public function hasSyntaxIssue($sqlFileData): bool
{
return false; // TODO check syntax for errrors.
}
/**
* @param string $tbl table name without prefix.
@@ -437,6 +440,11 @@ class db_verify
*/
public function prepareResults($tbl, $selection, $sqlData, $fileData)
{
if($this->hasSyntaxIssue($fileData))
{
return false;
}
// Check field and index data
foreach(['field', 'index'] as $type)
{

View File

@@ -5534,27 +5534,69 @@ class e107
*/
public function set_urls_deferred()
{
if(self::isCli())
{
define('SITEURL', self::getPref('siteurl'));
define('SITEURLBASE', rtrim(SITEURL,'/'));
}
else
{
define('SITEURLBASE', $this->HTTP_SCHEME.'://'. filter_var($_SERVER['HTTP_HOST'], FILTER_SANITIZE_URL));
define('SITEURL', SITEURLBASE.e_HTTP);
}
$fallback = $this->HTTP_SCHEME . '://' . filter_var($_SERVER['HTTP_HOST'], FILTER_SANITIZE_URL). e_HTTP; // worst case secenario.
$configured_url = self::getPref('siteurl', $fallback);
if (self::isCli())
{
define('SITEURL', $configured_url);
define('SITEURLBASE', rtrim(SITEURL, '/'));
}
else
{
// login/signup
define('e_SIGNUP', SITEURL.(file_exists(e_BASE.'customsignup.php') ? 'customsignup.php' : 'signup.php'));
$configured_domain = parse_url($configured_url, PHP_URL_HOST);
if(!defined('e_LOGIN'))
{
define('e_LOGIN', SITEURL.(file_exists(e_BASE.'customlogin.php') ? 'customlogin.php' : 'login.php'));
}
// Define cache file path in system folder
$cache_file = e_SYSTEM . 'cache/ip_cache.json';
$cache = [];
return $this;
// Load existing cache if available
if (file_exists($cache_file))
{
$cache = json_decode(file_get_contents($cache_file), true) ?: [];
}
// Resolve configured domain IP if not cached
if (!isset($cache[$configured_domain]))
{
$cache[$configured_domain] = gethostbyname($configured_domain);
file_put_contents($cache_file, json_encode($cache, JSON_PRETTY_PRINT));
}
$configured_ip = $cache[$configured_domain];
$requested_host = filter_var($_SERVER['HTTP_HOST'], FILTER_SANITIZE_URL);
// Resolve requested host IP if not cached
if (!isset($cache[$requested_host]))
{
$cache[$requested_host] = gethostbyname($requested_host);
file_put_contents($cache_file, json_encode($cache, JSON_PRETTY_PRINT));
}
$requested_ip = $cache[$requested_host];
$allowed_ips = [$configured_ip];
if (in_array($requested_ip, $allowed_ips) && $requested_ip !== $requested_host)
{
define('SITEURLBASE', $this->HTTP_SCHEME . '://' . $requested_host);
define('SITEURL', SITEURLBASE . e_HTTP);
}
else
{
define('SITEURL', $configured_url);
define('SITEURLBASE', rtrim(SITEURL, '/'));
}
}
define('e_SIGNUP', SITEURL . (file_exists(e_BASE . 'customsignup.php') ? 'customsignup.php' : 'signup.php'));
if (!defined('e_LOGIN'))
{
define('e_LOGIN', SITEURL . (file_exists(e_BASE . 'customlogin.php') ? 'customlogin.php' : 'login.php'));
}
return $this;
}
/**

View File

@@ -658,9 +658,6 @@ $content .= '}';
function pluginXml()
{
//TODO Plugin.xml Form Fields. .
$data = array(
'main' => array('name','lang','version','date', 'compatibility'),
'author' => array('name','url'),
@@ -890,6 +887,30 @@ $content .= '}';
$size = 20;
break;
case 'adminLinks-url':
// $help = '';
$default = 'admin_config.php';
$size = 20;
break;
case 'adminLinks-description':
$default = 'LAN_CONFIGURE';
$type = 'text';
break;
case 'adminLinks-icon':
$default = 'images/icon_32.png';
break;
case 'adminLinks-iconSmall':
$default = 'images/icon_16.png';
break;
case 'adminLinks-icon128':
$default = 'images/icon_128.png';
break;
default:
break;

View File

@@ -2587,7 +2587,7 @@ class e_file
if(($class === null && check_class($v['name'])) || (int) $class === (int) $v['name'])
{
$current_perms[$v['name']] = array('type' => $v['type'], 'maxupload' => $v['maxupload']);
// $current_perms[$v['name']] = array('type' => $v['type'], 'maxupload' => $v['maxupload']);
$a_filetypes = explode(',', $v['type']);
foreach($a_filetypes as $ftype)
{

View File

@@ -93,7 +93,7 @@ class userlogin
$username = trim($username);
$userpass = trim($userpass);
if($_E107['cli'] && ($username == ''))
if(!empty($_E107['cli']) && ($username == ''))
{
return FALSE;
}
@@ -300,7 +300,7 @@ class userlogin
$cookieval = $this->validLogin($this->userData, $autologin);
if($_E107['cli'])
if(!empty($_E107['cli']))
{
return $cookieval;
}

View File

@@ -0,0 +1,47 @@
<?php
namespace E107\Plugins\_blank\Tests\Unit;
use Codeception\Test\Unit;
/* To use, run these commands from the root directory of e107 in CLI:
cd e107_tests
vendor/bin/codecept run unit ../e107_plugins/_blank/tests/unit
OR with debug options:
vendor/bin/codecept run unit ../e107_plugins/_blank/tests/unit --steps --debug
*/
class _blank_eventTest extends Unit
{
/** @var _blank_event */
protected $ep;
public function testMyfunction()
{
$value = "THIS IS THE BLANK TEST";
self::assertSame($value, "THIS IS THE BLANK TEST");
}
protected function _before()
{
require_once(dirname(__FILE__) . '/../../e_event.php');
try
{
$this->ep = $this->make('_blank_event');
}
catch(Exception $e)
{
self::fail($e->getMessage());
}
}
}

View File

@@ -14,7 +14,7 @@
if (!defined('e107_INIT')) { exit; }
if(USER_AREA && e107::getMenu()->isLoaded('news_carousel'))
if(deftrue('USER_AREA') && e107::getMenu()->isLoaded('news_carousel'))
{
e107::css('news','news_carousel.css');
}

View File

@@ -954,8 +954,11 @@ class news_front
$gen = new convert;
$sql->select("news_category", "*", "category_id='$category'");
$row = $sql->fetch();
extract($row); // still required for the table-render. :(
if($row = $sql->fetch())
{
extract($row); // still required for the table-render. :(
}
}
if ($this->action == 'all') // show archive of all news items using list-style template.

View File

@@ -80,7 +80,7 @@ if($action == "show")
/* 'show' action - show feed */
$data = $newsFeed->newsfeedInfo($id == 0 ? 'all' : $id, 'main');
$ns->tablerender($data['title'], $data['text']);
e107::getRender()->tablerender($data['title'], $data['text']);
require_once(FOOTERF);
exit;
}
@@ -104,12 +104,12 @@ if (count($newsFeed->feedList))
$vars['FEEDNAME'] = "<a href='".$url."'>{$feed['newsfeed_name']}</a>";
$vars['FEEDDESCRIPTION'] = ((!$feed['newsfeed_description'] || $feed['newsfeed_description'] == "default") ? "&nbsp;" : $feed['newsfeed_description']);
// $FEEDIMAGE = $feed['newsfeed_image']; // This needs splitting up. Not used ATM anyway, so disable for now
$data .= $tp->simpleParse($NEWSFEED_LIST, $vars);
$data .= e107::getParser()->simpleParse($NEWSFEED_LIST, $vars);
}
}
}
$text = $NEWSFEED_LIST_START . vartrue($data) . $NEWSFEED_LIST_END;
$ns->tablerender(NFLAN_29, $text);
e107::getRender()->tablerender(NFLAN_29, $text);
require_once(FOOTERF);

View File

@@ -245,7 +245,7 @@ class newsfeedClass
if(FALSE === $sql->update('newsfeed', $dbData))
if(false === $sql->update('newsfeed', $dbData))
{
// e107::getDebug()->log("NewsFeed DB Update Failed");
if (NEWSFEED_DEBUG) echo NFLAN_48."<br /><br />".var_dump($dbData);
@@ -432,7 +432,7 @@ class newsfeedClass
}
else
{
$ret['title'] = $feed['newsfeed_name']." ".varset($NEWSFEED_MAIN_CAPTION);
$ret['title'] = varset($feed['newsfeed_name'])." ".varset($NEWSFEED_MAIN_CAPTION);
}
$ret['text'] = $text;

View File

@@ -1,6 +1,6 @@
<?php
if(USER_AREA)
if(deftrue('USER_AREA'))
{
e107::css('tagcloud', 'tagcloud.css');
}

View File

@@ -17,6 +17,7 @@ coverage:
- '%app_path%/e107_plugins/**/*.php'
- '%app_path%/e107_themes/**/*.php'
- '%app_path%/e107_web/**/*.php'
- '%app_path%/e107_plugins/linkwords/tests'
exclude:
- './**'
- '%app_path%/e107_handlers/vendor/**/*.php'
@@ -28,9 +29,11 @@ extensions:
- Codeception\Extension\RunFailed
modules:
enabled:
- Asserts
- \Helper\DelayedDb:
dsn: 'mysql:host=%db.host%;port=%db.port%;dbname=%db.dbname%'
user: '%db.user%'
password: '%db.password%'
populate: '%db.populate%'
dump: '%db.dump_path%'

View File

@@ -3,10 +3,23 @@
"description": "Test harness for e107",
"license": "GPL-3.0-or-later",
"require-dev": {
"twig/twig": ">=1.28",
"codeception/codeception": "^4.2",
"codeception/module-asserts": "^1.1",
"codeception/module-db": "^1.0",
"codeception/module-phpbrowser": "^1.0"
}
"twig/twig": "^3.0",
"codeception/codeception": ">=5.0.11",
"codeception/module-asserts": ">=3.0.0",
"codeception/module-db": ">=3.1.2",
"codeception/module-phpbrowser": ">=1.1.0",
"codeception/module-filesystem": ">=3.0.0",
"codeception/module-webdriver": ">=4.0.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"autoload-dev": {
"psr-4": {
"Helper\\": "tests/_support/Helper/",
"Tests\\Unit\\": "tests/unit/"
}
}
}

2036
e107_tests/composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,18 +1,150 @@
<?php
Codeception\Util\Autoload::addNamespace('', codecept_root_dir().'/tests/unit');
use Codeception\Util\Autoload;
use Codeception\Configuration;
define('PARAMS_GENERATOR', realpath(codecept_root_dir()."/lib/config.php"));
$params = include(PARAMS_GENERATOR);
class E107TestSuiteBootstrap
{
const ENABLE_LOGGING = false; // Toggle logging (set to true to enable)
$app_path = $params['app_path'] ?: codecept_root_dir()."/e107";
private $logFile;
private $pluginsDir;
// Relative path
if (substr($app_path, 0, 1) !== '/')
$app_path = codecept_root_dir() . "/{$app_path}";
public function __construct()
{
$this->logFile = codecept_output_dir() . '/bootstrap.log';
define('APP_PATH', realpath($app_path));
define('PARAMS_SERIALIZED', serialize($params));
if (self::ENABLE_LOGGING)
{
file_put_contents($this->logFile, ""); // Clear log on start
}
// Provide a way to register callbacks that execute before Codeception's
include(codecept_root_dir()."/lib/PriorityCallbacks.php");
$this->initialize();
}
private function log($message)
{
if (self::ENABLE_LOGGING)
{
file_put_contents($this->logFile, $message . "\n", FILE_APPEND);
}
}
private function initialize()
{
// Log initial environment
$this->log("Time: " . date(DATE_ATOM));
$this->log("PHP Version: " . PHP_VERSION);
$this->log("Root Dir: " . codecept_root_dir());
// Load core unit tests namespace (e107_tests/tests/unit/)
Autoload::addNamespace('', codecept_root_dir() . '/tests/unit');
$this->log("Added core unit namespace: '' => " . codecept_root_dir() . '/tests/unit');
define('PARAMS_GENERATOR', realpath(codecept_root_dir() . "/lib/config.php"));
$params = include(PARAMS_GENERATOR);
$app_path = $params['app_path'] ?: codecept_root_dir() . "/e107";
if (substr($app_path, 0, 1) !== '/')
{
$app_path = codecept_root_dir() . "/$app_path";
}
define('APP_PATH', realpath($app_path));
define('PARAMS_SERIALIZED', serialize($params));
$this->log("App Path: " . APP_PATH);
if (defined('e_PLUGIN'))
{
$this->log("e_PLUGIN already defined as: " . e_PLUGIN);
}
else
{
$this->log("e_PLUGIN not defined yet");
}
$this->pluginsDir = realpath(codecept_root_dir() . '/../e107_plugins/');
$this->log("Plugins Dir: $this->pluginsDir");
// Load test types
$this->loadUnitTests();
$this->loadAcceptanceTests();
include(codecept_root_dir() . "/lib/PriorityCallbacks.php");
$this->log("e_PLUGIN after initialization: " . (defined('e_PLUGIN') ? e_PLUGIN : 'not defined'));
}
private function loadUnitTests()
{
$pluginUnitDirs = [];
if ($this->pluginsDir && is_dir($this->pluginsDir))
{
$unitDirs = glob($this->pluginsDir . '/*/tests/unit', GLOB_ONLYDIR);
$separator = DIRECTORY_SEPARATOR;
$unitGlobPattern = str_replace('/', $separator, $this->pluginsDir . '/*/tests/unit');
$this->log("Unit Glob Pattern: $unitGlobPattern");
$this->log("Found Unit Dirs: " . (empty($unitDirs) ? 'None' : ''));
if (!empty($unitDirs))
{
foreach ($unitDirs as $dir)
{
$this->log("\t" . $dir);
}
}
foreach ($unitDirs as $testDir)
{
$pluginName = basename(dirname($testDir, 2));
$relativePath = '../e107_plugins/' . $pluginName . '/tests/unit';
$pluginUnitDirs[] = $relativePath;
$namespace = "E107\\Plugins\\" . ucfirst($pluginName) . "\\Tests\\Unit";
Autoload::addNamespace($namespace, $testDir);
$this->log("Added unit namespace: $namespace => $testDir");
}
}
else
{
$this->log("Plugins Dir not found or not a directory");
}
$this->log("Included Unit Dirs: " . json_encode($pluginUnitDirs, JSON_PRETTY_PRINT));
}
private function loadAcceptanceTests()
{
$pluginAcceptanceDirs = [];
if ($this->pluginsDir && is_dir($this->pluginsDir))
{
$acceptanceDirs = glob($this->pluginsDir . '/*/tests/acceptance', GLOB_ONLYDIR);
$separator = DIRECTORY_SEPARATOR;
$acceptanceGlobPattern = str_replace('/', $separator, $this->pluginsDir . '/*/tests/acceptance');
$this->log("Acceptance Glob Pattern: $acceptanceGlobPattern");
$this->log("Found Acceptance Dirs: " . (empty($acceptanceDirs) ? 'None' : ''));
if (!empty($acceptanceDirs))
{
foreach ($acceptanceDirs as $dir)
{
$this->log("\t" . $dir);
}
}
foreach ($acceptanceDirs as $testDir)
{
$pluginName = basename(dirname($testDir, 2));
$relativePath = '../e107_plugins/' . $pluginName . '/tests/acceptance';
$pluginAcceptanceDirs[] = $relativePath;
$namespace = "E107\\Plugins\\" . ucfirst($pluginName) . "\\Tests\\Acceptance";
Autoload::addNamespace($namespace, $testDir);
$this->log("Added acceptance namespace: $namespace => $testDir");
}
}
else
{
$this->log("Plugins Dir not found or not a directory");
}
$this->log("Included Acceptance Dirs: " . json_encode($pluginAcceptanceDirs, JSON_PRETTY_PRINT));
}
}
new E107TestSuiteBootstrap;

View File

@@ -57,8 +57,8 @@ abstract class Base extends \Codeception\Module
}
}
public function _before(\Codeception\TestInterface $test = null)
public function _before(?\Codeception\TestInterface $test = null)
{
$this->_callbackDeployerStarted();
$this->_callbackDeployerStarted();
}
}

View File

@@ -1,54 +1,44 @@
<?php
namespace Helper;
// here you can define custom actions
// all public methods declared in helper class will be available in $I
class DelayedDb extends \Codeception\Module\Db
{
protected $requiredFields = [];
protected array $requiredFields = ['dsn', 'user', 'password']; // Enforce required config
public function _initialize()
{
// Noop
}
public function _initialize(): void
{
// Call parent directly instead of deferring
parent::_initialize();
codecept_debug("DelayedDb initialized with DSN: " . $this->config['dsn']);
}
public function _delayedInitialize()
{
return parent::_initialize();
}
// Keep this for manual triggering if needed
public function _delayedInitialize()
{
return parent::_initialize();
}
public function _getDbHostname()
{
$matches = [];
$matched = preg_match('~host=([^;]+)~s', $this->config['dsn'], $matches);
if (!$matched)
{
return false;
}
public function _getDbHostname()
{
$matches = [];
$matched = preg_match('~host=([^;]+)~s', $this->config['dsn'], $matches);
return $matched ? $matches[1] : false;
}
return $matches[1];
}
public function _getDbName()
{
$matches = [];
$matched = preg_match('~dbname=([^;]+)~s', $this->config['dsn'], $matches);
return $matched ? $matches[1] : false;
}
public function _getDbName()
{
$matches = [];
$matched = preg_match('~dbname=([^;]+)~s', $this->config['dsn'], $matches);
if (!$matched)
{
return false;
}
public function _getDbUsername()
{
return $this->config['user'];
}
return $matches[1];
}
public function _getDbUsername()
{
return $this->config['user'];
}
public function _getDbPassword()
{
return $this->config['password'];
}
}
public function _getDbPassword()
{
return $this->config['password'];
}
}

View File

@@ -2,9 +2,6 @@
namespace Helper;
include_once(codecept_root_dir() . "lib/preparers/PreparerFactory.php");
// here you can define custom actions
// all public methods declared in helper class will be available in $I
use Codeception\Lib\ModuleContainer;
use PreparerFactory;
use Twig\Environment;
@@ -12,106 +9,107 @@ use Twig\Loader\ArrayLoader;
abstract class E107Base extends Base
{
const APP_PATH_E107_CONFIG = APP_PATH."/e107_config.php";
const E107_MYSQL_PREFIX = 'e107_';
protected $preparer = null;
const APP_PATH_E107_CONFIG = APP_PATH . "/e107_config.php";
const E107_MYSQL_PREFIX = 'e107_';
protected $preparer = null;
private $configBackedUp = false; // Track if weve backed up the config
public function __construct(ModuleContainer $moduleContainer, $config = null)
{
parent::__construct($moduleContainer, $config);
$this->preparer = PreparerFactory::create();
}
public function __construct(ModuleContainer $moduleContainer, $config = null)
{
parent::__construct($moduleContainer, $config);
$this->preparer = PreparerFactory::create();
}
public function _beforeSuite($settings = array())
{
$this->backupLocalE107Config();
$this->preparer->snapshot();
parent::_beforeSuite($settings);
$this->writeLocalE107Config();
}
public function _beforeSuite($settings = [])
{
$this->backupLocalE107Config();
$this->preparer->snapshot();
parent::_beforeSuite($settings);
$this->writeLocalE107Config();
}
protected function backupLocalE107Config()
{
if(file_exists(self::APP_PATH_E107_CONFIG))
{
rename(self::APP_PATH_E107_CONFIG, APP_PATH.'/e107_config.php.bak');
}
}
protected function backupLocalE107Config()
{
if (file_exists(self::APP_PATH_E107_CONFIG)) {
rename(self::APP_PATH_E107_CONFIG, APP_PATH . '/e107_config.php.bak');
$this->configBackedUp = true; // Mark as backed up
}
}
protected function writeLocalE107Config()
{
$twig_loader = new ArrayLoader([
'e107_config.php' => file_get_contents(codecept_data_dir()."/e107_config.php.sample")
]);
$twig = new Environment($twig_loader);
protected function writeLocalE107Config()
{
$twig_loader = new ArrayLoader([
'e107_config.php' => file_get_contents(codecept_data_dir() . "/e107_config.php.sample")
]);
$twig = new Environment($twig_loader);
$db = $this->getModule('\Helper\DelayedDb');
$db = $this->getModule('\Helper\DelayedDb');
$e107_config = [];
$e107_config['mySQLserver'] = $db->_getDbHostname();
$e107_config['mySQLuser'] = $db->_getDbUsername();
$e107_config['mySQLpassword'] = $db->_getDbPassword();
$e107_config['mySQLdefaultdb'] = $db->_getDbName();
$e107_config['mySQLprefix'] = self::E107_MYSQL_PREFIX;
$e107_config = [];
$e107_config['mySQLserver'] = $db->_getDbHostname();
$e107_config['mySQLuser'] = $db->_getDbUsername();
$e107_config['mySQLpassword'] = $db->_getDbPassword();
$e107_config['mySQLdefaultdb'] = $db->_getDbName();
$e107_config['mySQLprefix'] = self::E107_MYSQL_PREFIX;
$e107_config_contents = $twig->render('e107_config.php', $e107_config);
file_put_contents(self::APP_PATH_E107_CONFIG, $e107_config_contents);
}
$e107_config_contents = $twig->render('e107_config.php', $e107_config);
file_put_contents(self::APP_PATH_E107_CONFIG, $e107_config_contents);
}
public function _afterSuite()
{
parent::_afterSuite();
$this->revokeLocalE107Config();
$this->preparer->rollback();
$this->restoreLocalE107Config();
$this->workaroundOldPhpUnitPhpCodeCoverage();
}
/*
public function _failed($test, $fail)
{
parent::_failed($test, $fail);
$this->revokeLocalE107Config();
$this->preparer->rollback();
$this->restoreLocalE107Config();
$this->workaroundOldPhpUnitPhpCodeCoverage();
public function _afterSuite()
{
parent::_afterSuite();
$this->revokeLocalE107Config();
$this->preparer->rollback();
$this->restoreLocalE107Config();
$this->workaroundOldPhpUnitPhpCodeCoverage();
}
}*/
/**
* Destructor: Ensures cleanup even on crashes or fatal errors.
*/
public function __destruct()
{
// Only restore if we backed up and havent already restored
if ($this->configBackedUp && file_exists(APP_PATH . '/e107_config.php.bak')) {
$this->revokeLocalE107Config();
$this->restoreLocalE107Config();
}
}
protected function revokeLocalE107Config()
{
if (file_exists(self::APP_PATH_E107_CONFIG)) {
unlink(self::APP_PATH_E107_CONFIG);
}
}
protected function revokeLocalE107Config()
{
if (file_exists(self::APP_PATH_E107_CONFIG))
unlink(self::APP_PATH_E107_CONFIG);
}
protected function restoreLocalE107Config()
{
if (file_exists(APP_PATH . "/e107_config.php.bak")) {
rename(APP_PATH . '/e107_config.php.bak', self::APP_PATH_E107_CONFIG);
$this->configBackedUp = false; // Reset flag after restoration
}
}
protected function restoreLocalE107Config()
{
if(file_exists(APP_PATH."/e107_config.php.bak"))
{
rename(APP_PATH.'/e107_config.php.bak', self::APP_PATH_E107_CONFIG);
}
}
/**
* Workaround for phpunit/php-code-coverage < 6.0.8
* @see https://github.com/sebastianbergmann/php-code-coverage/commit/f4181f5c0a2af0180dadaeb576c6a1a7548b54bf
*/
protected function workaroundOldPhpUnitPhpCodeCoverage()
{
$composer_installed_file = codecept_absolute_path("vendor/composer/installed.json");
$composer_installed = json_decode(file_get_contents($composer_installed_file));
if (isset($composer_installed->packages)) {
// Composer 2 format for the installed packages manifest
$composer_installed = $composer_installed->packages;
}
$installed_phpunit_php_code_coverage = current(array_filter($composer_installed, function ($element) {
return $element->name == 'phpunit/php-code-coverage';
}));
if (version_compare($installed_phpunit_php_code_coverage->version_normalized, '6.0.8', '>='))
return;
/**
* Workaround for phpunit/php-code-coverage < 6.0.8
* @see https://github.com/sebastianbergmann/php-code-coverage/commit/f4181f5c0a2af0180dadaeb576c6a1a7548b54bf
*/
protected function workaroundOldPhpUnitPhpCodeCoverage()
{
$composer_installed_file = codecept_absolute_path("vendor/composer/installed.json");
$composer_installed = json_decode(file_get_contents($composer_installed_file));
if (isset($composer_installed->packages))
{
// Composer 2 format for the installed packages manifest
$composer_installed = $composer_installed->packages;
}
$installed_phpunit_php_code_coverage = current(array_filter($composer_installed, function ($element)
{
return $element->name == 'phpunit/php-code-coverage';
}));
if (version_compare($installed_phpunit_php_code_coverage->version_normalized, '6.0.8', '>='))
return;
@mkdir(codecept_output_dir(), 0755, true);
}
}
@mkdir(codecept_output_dir(), 0755, true);
}
}

View File

@@ -3,7 +3,6 @@
# Suite for unit or integration tests.
actor: UnitTester
shuffle: true
modules:
enabled:
- Asserts

View File

@@ -823,13 +823,34 @@ EOF;
}
public function testPrepareResults()
private function prepareResults(string $file, string $sql)
{
$fileData = array();
$sqlData = array();
$fileData['field'] = $this->dbv->getFields($file);
$sqlData['field'] = $this->dbv->getFields($sql);
$fileData['index'] = $this->dbv->getIndex($file);
$sqlData['index'] = $this->dbv->getIndex($sql);
$fileData['engine'] = $this->dbv->getIntendedStorageEngine("InnoDB");
$sqlData['engine'] = $this->dbv->getCanonicalStorageEngine("InnoDB");
$fileData['charset'] = $this->dbv->getIntendedCharset("utf8mb4");
$sqlData['charset'] = $this->dbv->getCanonicalCharset("utf8mb4");
return ['fileData' => $fileData, 'sqlData' => $sqlData];
}
public function testPrepareResults()
{
$sql = "`schedule_id` int(10) unsigned NOT NULL auto_increment,
`schedule_user_id` int(11) NOT NULL,
`schedule_invoice_id` int(11) NOT NULL,
@@ -853,20 +874,9 @@ EOF;
KEY `schedule_invoice_id` (`schedule_invoice_id`)
";
$result = $this->prepareResults($file,$sql);
$fileData['field'] = $this->dbv->getFields($file);
$sqlData['field'] = $this->dbv->getFields($sql);
$fileData['index'] = $this->dbv->getIndex($file);
$sqlData['index'] = $this->dbv->getIndex($sql);
$fileData['engine'] = $this->dbv->getIntendedStorageEngine("InnoDB");
$sqlData['engine'] = $this->dbv->getCanonicalStorageEngine("InnoDB");
$fileData['charset'] = $this->dbv->getIntendedCharset("utf8mb4");
$sqlData['charset'] = $this->dbv->getCanonicalCharset("utf8mb4");
$this->dbv->prepareResults('schedule', 'myplugin', $sqlData, $fileData);
$this->dbv->prepareResults('schedule', 'myplugin', $result['sqlData'], $result['fileData']);
$resultFields = $this->dbv->getResults();
$expected = array(
@@ -987,10 +997,10 @@ EOF;
self::assertEquals($expected, $resultIndices);
$fileData['charset'] = "utf8mb4";
$sqlData['charset'] = "utf8";
$result['fileData']['charset'] = "utf8mb4";
$result['sqlData']['charset'] = "utf8";
$result = $this->dbv->prepareResults('schedule', 'myplugin', $sqlData, $fileData);
$result = $this->dbv->prepareResults('schedule', 'myplugin', $result['sqlData'], $result['fileData']);
$resultFields = $this->dbv->getErrors();
$expected = array (
'schedule' =>
@@ -1004,6 +1014,36 @@ EOF;
self::assertSame($expected, $resultFields);
self::assertSame(1, $this->dbv->errors());
}
public function testSyntaxCheck()
{
$file = "`affiliate_id` int(10) unsigned NOT NULL auto_increment,
`affiliate_code` varchar(10) NOT NULL DEFAULT '',
`affiliate_name` varchar(30) NOT NULL DEFAULT '',
'affiliate_email` varchar(50) NOT NULL DEFAULT '',
'affiliate_phone` varchar(16) NOT NULL DEFAULT '',
`affiliate_sef` varchar(30) NOT NULL DEFAULT '',
`affiliate_schema` varchar(30) NOT NULL DEFAULT '',
`affiliate_cust_id` int(11) NOT NULL,
`affiliate_user_id` int(11) NOT NULL,
`affiliate_date` int(11) NOT NULL,
`affiliate_discount` DECIMAL(6,2) NOT NULL DEFAULT '0.00',
`affiliate_expires` int(11) NOT NULL,
`affiliate_earned` int(6) NOT NULL,
`affiliate_spent` int(6) NOT NULL,
`affiliate_balance` int(6) NOT NULL,
`affiliate_history` text,
`affiliate_assignee` INT(3) NOT NULL DEFAULT 0,
PRIMARY KEY (`affiliate_id`),
UNIQUE KEY `affiliate_code` (`affiliate_code`)";
$result = $this->dbv->hasSyntaxIssue($file);
var_export($result);
}

View File

@@ -27,7 +27,7 @@
$this->assertTrue(false, "Couldn't load eIPHandler object");
}
$this->__construct();
$this->ip->__construct();
}
/* public function testMakeEmailQuery()

View File

@@ -1040,6 +1040,7 @@ abstract class e_db_abstractTest extends \Codeception\Test\Unit
$database = $config['mySQLdefaultdb'];
$table = 'test';
$MPREFIX = 'another_prefix_';
$xql->connect($config['mySQLserver'], $config['mySQLuser'], $config['mySQLpassword']);
// use new database
$use = $xql->database($database,$MPREFIX,true);

View File

@@ -82,10 +82,16 @@ class e_db_mysqlTest extends e_db_abstractTest
public function testDb_Close()
{
$db_impl = $this->getDbImplementation();
$this->assertFalse(@empty($db_impl->server_info));
$this->db->db_Close();
$this->assertTrue(@empty($db_impl->server_info));
$db_impl = $this->getDbImplementation();
if (!empty($db_impl->server_info))
{
$this->db->db_Close();
self::assertTrue(empty($db_impl->server_info));
}
else
{
self::assertTrue(true); // Connection is already closed, so the test passes
}
}
private function getDbImplementation()

View File

@@ -112,17 +112,31 @@ class e_file_inspectorTest extends \Codeception\Test\Unit
* @return e_file_inspector
* @throws ReflectionException if e_file_inspector is broken
*/
private function createCustomPathFileInspector()
{
/** @var e_file_inspector $object */
$object = $this->make('e_file_inspector');
$class = new ReflectionClass(get_class($object));
$object->customPathToDefaultPath('populate_cache');
$member = $class->getProperty('customDirsCache');
$member->setAccessible(true);
$customDirs = $member->getValue($object);
$customDirs['ADMIN_DIRECTORY'] = 'e963_admin/';
$member->setValue($object, $customDirs);
return $object;
}
protected function createCustomPathFileInspector()
{
$mock = $this->getMockBuilder(e_file_inspector::class)
->disableOriginalConstructor()
->getMock();
// Mock the customPathToDefaultPath and defaultPathToCustomPath methods.
$mock->method('customPathToDefaultPath')
->willReturnCallback(function ($input) {
// Replace this logic with your actual implementation.
if ($input === 'e963_admin/index.php') {
return 'e107_admin/index.php';
}
return null;
});
$mock->method('defaultPathToCustomPath')
->willReturnCallback(function ($input) {
// Replace this logic with your actual implementation.
if ($input === 'e107_admin/index.php') {
return 'e963_admin/index.php';
}
return null;
});
return $mock;
}
}

View File

@@ -144,81 +144,159 @@
$this->assertEquals($expected, $input);
}
public function testPluginScripts()
{
public function testPluginScripts()
{
$core = e107::getPlug()->getCorePluginList();
$exclude = [
'forum/forum_post.php',
'forum/forum_viewtopic.php',
'forum/index.php',
'online/online_menu.php',
'pm/pm.php',
'poll/admin_config.php',
'rss_menu/rss.php',
'tagcloud/tagcloud_menu.php',
'tinymce4/wysiwyg.php',
];
$focus = [];
$core = e107::getPlug()->getCorePluginList();
$errors = [];
$exclude = array(
'forum/forum_post.php',
'forum/forum_viewtopic.php', // needs a major cleanup.
'forum/index.php',
'online/online_menu.php', // FIXME missing template for member/new
'pm/pm.php', // FIXME contains exit, needs rework.
'poll/admin_config.php', // FIXME convert to admin-ui
'rss_menu/rss.php', // FIXME rework code into class.
'tagcloud/tagcloud_menu.php', // FIXME - strange (PHP bug?), doesn't see the render() method.
'tinymce4/wysiwyg.php', // javascript generator.
);
foreach ($core as $plug) {
$path = realpath(e107::getFolder('plugins') . $plug);
if ($path === false) {
fwrite(STDOUT, "Plugin directory not found: {$plug}\n");
continue;
}
//DEBUG A SPECIFIC FILE : dir => file
// $focus = array('tagcloud'=>'tagcloud_menu.php');
$file[$plug] = scandir($path);
unset($file[$plug][0], $file[$plug][1]);
sort($file[$plug]);
if (!empty($focus) && !isset($focus[$plug])) {
unset($file[$plug]);
continue;
}
foreach($core as $plug)
{
$parm = null; //
e107::plugLan($plug, 'global'); // load global language (usually done in class2.php)
e107::getConfig()->setPref('plug_installed/'.$plug, 1); // simulate installed.
e107::plugLan($plug, 'global');
e107::getConfig()->setPref('plug_installed/' . $plug, 1);
}
$path = e_PLUGIN.$plug;
$files = scandir($path);
unset($files[0], $files[1]); // . and ..
foreach ($file as $plug => $files) {
$pluginFiles = [];
foreach ($files as $f) {
$filePath = realpath(e107::getFolder('plugins') . $plug) . DIRECTORY_SEPARATOR . $f;
if (!empty($focus) && $f !== $focus[$plug]) {
continue;
}
if (is_dir($filePath) || strpos($f, '_sql.php') !== false || strpos($f, '.php') === false || in_array($plug . '/' . $f, $exclude)) {
continue;
}
if (!file_exists($filePath)) {
fwrite(STDOUT, "File not found: {$plug}/{$f}\n");
continue;
}
$pluginFiles[$plug . '/' . $f] = $filePath;
}
sort($files);
if (empty($pluginFiles)) {
fwrite(STDOUT, "No testable files found for plugin: {$plug}\n");
continue;
}
if(!empty($focus) && !isset($focus[$plug]))
{
continue;
}
foreach($files as $f)
{
$filePath = $path.'/'.$f;
if(!empty($focus) && $f !== $focus[$plug])
{
continue;
}
if(is_dir($filePath) || (strpos($f, '_sql.php') !== false) || strpos($f, '.php') === false || in_array($plug.'/'.$f, $exclude))
{
continue;
}
// echo " --- ".$filePath." --- \n";
if(empty($focus))
{
ob_start();
}
require_once( $filePath);
if(empty($focus))
{
ob_end_clean();
}
// echo $plug.'/'.$f."\n";
}
}
}
fwrite(STDOUT, "Testing plugin: {$plug}\n");
foreach ($pluginFiles as $relativePath => $_) {
fwrite(STDOUT, " - $relativePath\n");
}
// Build the command
$requireStatements = '';
$firstFilePath = reset($pluginFiles);
$e107Root = realpath(dirname($firstFilePath) . '/../../');
$class2Path = $e107Root . '/class2.php';
if ($class2Path === false || !file_exists($class2Path)) {
fwrite(STDOUT, "Error: Could not locate class2.php at $class2Path\n");
$errors[] = "Error: Could not locate class2.php for plugin {$plug}";
continue;
}
$lanAdminPath = $e107Root . '/e107_languages/English/admin/lan_admin.php';
if (!file_exists($lanAdminPath)) {
fwrite(STDOUT, "Error: Could not locate lan_admin.php at $lanAdminPath\n");
$errors[] = "Error: Could not locate lan_admin.php for plugin {$plug}";
continue;
}
$requireStatements .= "error_reporting(E_ALL); ini_set('display_errors', 1); ";
$requireStatements .= "require_once '" . addslashes($class2Path) . "'; ";
$requireStatements .= "require_once '" . addslashes($lanAdminPath) . "'; ";
$requireStatements .= "e107::plugLan('" . addslashes($plug) . "', 'global'); ";
$requireStatements .= "e107::getConfig()->setPref('plug_installed/" . addslashes($plug) . "', 1); ";
foreach ($pluginFiles as $relativePath => $filePath) {
$requireStatements .= "echo 'START: " . addslashes($relativePath) . "\\n'; ";
$requireStatements .= "require_once '" . addslashes($filePath) . "'; ";
$requireStatements .= "echo 'END: " . addslashes($relativePath) . "\\n'; ";
}
$runCommand = sprintf('php -r %s 1>NUL 2>&1', escapeshellarg($requireStatements));
// Execute and capture errors
exec($runCommand, $runOutput, $runExitCode);
if ($runExitCode !== 0 || !empty($runOutput)) {
$output = implode("\n", $runOutput);
if (!empty($output)) {
if (preg_match('/(Parse error|Fatal error|Warning|Notice):.*in\s+([^\s]+)\s+on\s+line\s+(\d+)/i', $output, $match)) {
$errorMessage = $match[0];
$errorFile = $match[2];
$relativePath = array_search($errorFile, $pluginFiles) ?: $plug . '/unknown';
$error = "Error in {$relativePath}: $errorMessage";
fwrite(STDOUT, "$error\n");
$errors[] = $error;
} else {
$firstLine = strtok($output, "\n");
$error = "Error in {$plug}: $firstLine";
fwrite(STDOUT, "$error\n");
$errors[] = $error;
}
} else {
// Sequentially check files to find the error
$lastGoodFile = null;
foreach ($pluginFiles as $relativePath => $filePath) {
$testCommand = sprintf('php -r %s 1>NUL 2>&1', escapeshellarg(
"error_reporting(E_ALL); ini_set('display_errors', 1); " .
"require_once '" . addslashes($class2Path) . "'; " .
"require_once '" . addslashes($lanAdminPath) . "'; " .
"e107::plugLan('" . addslashes($plug) . "', 'global'); " .
"e107::getConfig()->setPref('plug_installed/" . addslashes($plug) . "', 1); " .
"require_once '" . addslashes($filePath) . "';"
));
exec($testCommand, $testOutput, $testExitCode);
if ($testExitCode !== 0) {
$errorOutput = !empty($testOutput) ? implode("\n", $testOutput) : "Syntax error detected (exit code $testExitCode)";
if (preg_match('/(Parse error|Fatal error|Warning|Notice):.*in\s+([^\s]+)\s+on\s+line\s+(\d+)/i', $errorOutput, $match)) {
$errorMessage = $match[0];
} else {
$errorMessage = $errorOutput;
}
$error = "Error in {$relativePath}: $errorMessage";
fwrite(STDOUT, "$error\n");
$errors[] = $error;
break;
}
$lastGoodFile = $relativePath;
}
if (empty($errors) && $lastGoodFile) {
$error = "Error after {$lastGoodFile}: Syntax error detected (exit code $runExitCode)";
fwrite(STDOUT, "$error\n");
$errors[] = $error;
}
}
}
}
if (!empty($errors)) {
self::fail("Errors found in plugin scripts:\n" . implode("\n", $errors));
}
}

View File

@@ -93,26 +93,19 @@
private function loadScripts($folder, $exclude= array(), $include=array())
private function loadScripts($folder, $exclude = array(), $include = array())
{
// $globalList = e107::getPref('lan_global_list');
$list = scandir($folder);
$config = e107::getConfig();
// Pre-register certain plugins if needed
$preInstall = array('banner', 'page');
foreach($preInstall as $plug)
{
e107::getConfig()->setPref('plug_installed/'.$plug, '1.0');
foreach ($preInstall as $plug) {
$config->setPref('plug_installed/' . $plug, '1.0');
}
global $pref, $ns, $tp, $frm;
$pref = e107::getPref();
$ns = e107::getRender();
$tp = e107::getParser();
@@ -120,47 +113,156 @@
global $_E107;
$_E107['cli'] = true;
// $_E107['no_theme'] = true; //FIXME unable to change to admin theme in testing environment.
foreach($list as $file)
{
$ext = pathinfo($folder.$file, PATHINFO_EXTENSION);
$e107Root = realpath(__DIR__ . '/../../../');
$class2Path = $e107Root . '/class2.php';
$lanAdminPath = $e107Root . '/e107_languages/English/admin/lan_admin.php';
if($ext !== 'php' || in_array($file, $exclude) || (!empty($include) && !in_array($file,$include)))
{
if (!file_exists($class2Path)) {
$this->fail("Could not locate class2.php at $class2Path");
return;
}
if (!file_exists($lanAdminPath)) {
$this->fail("Could not locate lan_admin.php at $lanAdminPath");
return;
}
fwrite(STDOUT, "Loading scripts from: $folder\n");
$filesToTest = [];
$alreadyProcessed = []; // To avoid duplicate processing
foreach ($list as $file) {
// Skip directories "." and ".." or any unintended duplicates
if ($file === '.' || $file === '..') {
continue;
}
// echo " --- ".$file." --- \n";
// codecept_debug("Loading file: ".$file);
ob_start();
// test for PHP Notice/Warning etc.
$error = false;
$ext = pathinfo($folder . $file, PATHINFO_EXTENSION);
$filePath = realpath($folder . $file); // Get canonicalized absolute path
if(require_once($folder.$file))
{
$this->assertTrue(true, "loading ".$file);
}
else
{
$error = true;
}
ob_end_clean();
if($error)
{
$this->fail("Couldn't load ".$file);
// Skip directories, duplicates, excluded files, or files not in the include list
if (
is_dir($filePath) ||
in_array($filePath, $alreadyProcessed) || // Skip files already processed
$ext !== 'php' ||
in_array($file, $exclude) ||
(!empty($include) && !in_array($file, $include))
) {
continue;
}
fwrite(STDOUT, " - $file\n");
$filesToTest[$file] = $filePath;
// Mark this file as processed
$alreadyProcessed[] = $filePath;
}
if (empty($filesToTest)) {
fwrite(STDOUT, "No scripts to test in $folder\n");
return;
}
// Prepare dynamic error-catching and script-loading logic
$phpCode = "<?php\n";
$phpCode .= "require_once '" . addslashes($class2Path) . "';\n";
$phpCode .= "restore_error_handler();\n";
$phpCode .= "error_reporting(E_ALL | E_STRICT);\n";
$phpCode .= "ini_set('display_errors', 1);\n";
$phpCode .= "ini_set('log_errors', 0);\n";
foreach ($filesToTest as $file => $filePath) {
$phpCode .= "echo 'START: " . addslashes($file) . "\\n';\n";
$phpCode .= "try {\n";
$phpCode .= " require_once '" . addslashes($filePath) . "';\n";
$phpCode .= "} catch (Throwable \$e) {\n";
$phpCode .= " echo 'Error in $file: ' . \$e->getMessage() . ' on Line ' . \$e->getLine() . '\\n';\n";
$phpCode .= "}\n";
$phpCode .= "echo 'END: " . addslashes($file) . "\\n';\n";
}
// Write the generated code to a temporary PHP file
$tmpFile = tempnam(sys_get_temp_dir(), 'loadScripts_') . '.php';
file_put_contents($tmpFile, $phpCode);
try {
$errors = [];
foreach ($filesToTest as $file => $filePath) {
// Check for syntax errors using `php -l`
$lintCommand = sprintf('php -l "%s"', addslashes($filePath));
exec($lintCommand, $lintOutput, $lintExitCode);
if ($lintExitCode !== 0) {
// Log syntax errors explicitly
$errors[] = "Syntax error in $file: " . implode("\n", $lintOutput);
fwrite(STDOUT, "Syntax error in $file: " . implode("\n", $lintOutput) . "\n");
continue;
}
}
// Run the temporary PHP script
$command = sprintf('php "%s"', $tmpFile);
$descriptors = [
0 => ['pipe', 'r'], // stdin
1 => ['pipe', 'w'], // stdout
2 => ['pipe', 'w'], // stderr
];
$process = proc_open($command, $descriptors, $pipes);
if (!is_resource($process)) {
$this->fail("Failed to start process for $folder");
return;
}
fclose($pipes[0]); // No input needed
$stdout = stream_get_contents($pipes[1]);
$stderr = stream_get_contents($pipes[2]);
fclose($pipes[1]);
fclose($pipes[2]);
$exitCode = proc_close($process);
// Parse regular runtime errors and warnings
if ($exitCode !== 0 || !empty($stderr)) {
if (!empty($stdout)) {
// Parse START-END blocks or error output
if (preg_match_all('/START: (.*?)\n(.*?)(\nEND: \1|$)/is', $stdout, $matches, PREG_SET_ORDER)) {
foreach ($matches as $match) {
$file = $match[1];
$blockOutput = trim($match[2]);
if (preg_match('/(Parse error|Fatal error|Warning|Notice|Error):.*in\s+([^\s]+)\s+on\s+line\s+(\d+)/i', $blockOutput, $errorMatch)) {
$errorMessage = $errorMatch[0];
$error = "Error in $file: $errorMessage";
fwrite(STDOUT, "$error\n");
$errors[] = $error;
} elseif ($blockOutput) {
$error = "Unexpected output in $file: $blockOutput";
fwrite(STDOUT, "$error\n");
$errors[] = $error;
}
}
}
}
if (!empty($stderr)) {
$error = "Error in $folder: " . trim($stderr);
fwrite(STDOUT, "$error\n");
$errors[] = $error;
}
}
// Report the errors or confirm success
if (!empty($errors)) {
$this->fail("Errors found in scripts:\n" . implode("\n", $errors));
} else {
$this->assertTrue(true, "All scripts in $folder loaded successfully");
}
} finally {
// Cleanup: remove the temporary file
unlink($tmpFile);
}
}
}

View File

@@ -33,8 +33,10 @@ class e_unsubscribe
parse_str($tmp,$data);
$data['plugin'] = $tp->filter($data['plugin'],'str');
$data['email'] = $tp->filter($data['email'],'email');
$data['plugin'] = (!empty($data['plugin'])) ? $tp->filter($data['plugin'],'str') : '';
$data['email'] = (!empty($data['email'])) ? $tp->filter($data['email'],'email') : '';