Move all session_id and check calls function calls that we have to Session class In Login class use new false return for session set check Be sure all session set variables are unset, do extra unset call and destroy call on close session Login class does not set GLOBALS anymore (DEBUG_ALL, DB_DEBUG) Update Logging to check for DEBUG_ALL from SESSION and set DEBUG_ALL on and PRINT_ALL on. All logging setting vars are primary via options and only if not set there fallback to SESSION/GLOBALS and then defaults DB:IO code for debug flag check has been updated for primary check in config, then session/globals Debug update for logging tester for first step to remove Basic class call. NOTE: after basic php unit tests are written the clean up for no longer using Basic class has to start. Switch to logging class for logging only needs
196 lines
5.6 KiB
PHP
196 lines
5.6 KiB
PHP
<?php // phpcs:ignore warning
|
|
|
|
/**
|
|
* @phan-file-suppress PhanTypeSuspiciousStringExpression
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
// all the settings are overruled by config
|
|
$DEBUG_ALL_OVERRIDE = true; // set to 1 to debug on live/remote server locations
|
|
$DEBUG_ALL = true;
|
|
$PRINT_ALL = false;
|
|
$ECHO_ALL = true;
|
|
$DB_DEBUG = true;
|
|
|
|
if ($DEBUG_ALL) {
|
|
error_reporting(E_ALL | E_STRICT | E_ERROR | E_WARNING | E_PARSE | E_COMPILE_ERROR);
|
|
}
|
|
|
|
ob_start();
|
|
|
|
// basic class test file
|
|
define('USE_DATABASE', false);
|
|
// sample config
|
|
require 'config.php';
|
|
// set session name
|
|
$GLOBALS['SET_SESSION_NAME'] = EDIT_SESSION_NAME;
|
|
// define log file id
|
|
$LOG_FILE_ID = 'classTest-debug';
|
|
ob_end_flush();
|
|
// override ECHO ALL FALSE
|
|
$ECHO_ALL = true;
|
|
|
|
use CoreLibs\Debug\Support as DebugSupport;
|
|
use CoreLibs\Debug\FileWriter;
|
|
|
|
$basic = new CoreLibs\Basic();
|
|
$debug = new CoreLibs\Debug\Logging([
|
|
'log_folder' => BASE . LOG,
|
|
'file_id' => $LOG_FILE_ID,
|
|
'debug_all' => $DEBUG_ALL,
|
|
'print_all' => $PRINT_ALL,
|
|
'echo_all' => $ECHO_ALL,
|
|
]);
|
|
$debug_support_class = 'CoreLibs\Debug\Support';
|
|
$debug_logging_class = 'CoreLibs\Debug\Logging';
|
|
|
|
print "<html><head><title>TEST CLASS: DEBUG</title><head>";
|
|
print "<body>";
|
|
print '<div><a href="class_test.php">Class Test Master</a></div>';
|
|
|
|
function test()
|
|
{
|
|
return DebugSupport::getCallerMethod(1);
|
|
}
|
|
|
|
print "S::GETCALLERMETHOD: " . DebugSupport::getCallerMethod(0) . "<br>";
|
|
print "S::GETCALLERMETHOD: " . test() . "<br>";
|
|
print "S::PRINTAR: " . DebugSupport::printAr(['Foo', 'Bar']) . "<br>";
|
|
print "V-S::PRINTAR: " . $debug_support_class::printAr(['Foo', 'Bar']) . "<br>";
|
|
print "S::DEBUSTRING(s): " . DebugSupport::debugString('SET') . "<br>";
|
|
print "S::DEBUSTRING(''): " . DebugSupport::debugString('') . "<br>";
|
|
print "S::DEBUSTRING(,s): " . DebugSupport::debugString(null, '{-}') . "<br>";
|
|
|
|
// debug
|
|
print "C->DEBUG: " . $debug->debug('CLASS-TEST-DEBUG', 'Class Test Debug') . "<br>";
|
|
print "C->DEBUG(html): " . $debug->debug('CLASS-TEST-DEBUG', 'HTML TAG<br><b>BOLD</b>') . "<br>";
|
|
print "C->DEBUG(html,strip): " . $debug->debug('CLASS-TEST-DEBUG', 'HTML TAG<br><b>BOLD</b>', true) . "<br>";
|
|
print "C->PRINTERRORMSG: <br>" . $debug->printErrorMsg() . "<br>";
|
|
|
|
echo "<b>OPTIONS DEBUG CALL</b><br>";
|
|
|
|
// new log type with options
|
|
$new_log = new CoreLibs\Debug\Logging([
|
|
'log_folder' => '../log/',
|
|
'file_id' => 'DebugTestNewLogger',
|
|
// add file date
|
|
'print_file_date' => true,
|
|
// split into level (debug code)
|
|
'per_level' => false,
|
|
// per class called
|
|
'per_class' => false,
|
|
// per page
|
|
'per_page' => false,
|
|
// for each page call
|
|
'per_run' => false,
|
|
// set debug and print flags
|
|
'debug_all' => true,
|
|
'echo_all' => true,
|
|
'print_all' => true,
|
|
]);
|
|
$new_log->debug('OPTIONS TYPE', 'New Type error');
|
|
print "OPTIONS LOGGER:<br>" . $new_log->printErrorMsg();
|
|
$new_log->setLogLevel('debug', 'on', ['A', 'B', 'C' => false]);
|
|
print "LOG LEVEL: " . DebugSupport::printAr($new_log->getLogLevel('debug', 'on')) . "<br>";
|
|
|
|
echo "<b>CLASS DEBUG CALL</b><br>";
|
|
|
|
// @codingStandardsIgnoreLine
|
|
class TestL
|
|
{
|
|
public $log;
|
|
public function __construct()
|
|
{
|
|
$this->log = new CoreLibs\Debug\Logging();
|
|
}
|
|
public function test(string $ts = null)
|
|
{
|
|
print "* GETCALLERCLASS(INSIDE CLASS): " . \CoreLibs\Debug\Support::getCallerClass() . "<br>";
|
|
$this->log->debug('TESTL', 'Logging in class testL' . ($ts !== null ? ': ' . $ts : ''));
|
|
$this->log->debug('TESTL', 'Some other message');
|
|
return true;
|
|
}
|
|
}
|
|
// @codingStandardsIgnoreLine
|
|
class TestR extends TestL
|
|
{
|
|
public $foo;
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
public function subTest()
|
|
{
|
|
print "** GETCALLERCLASS(INSIDE EXTND CLASS): " . \CoreLibs\Debug\Support::getCallerClass() . "<br>";
|
|
$this->log->debug('TESTR', 'Logging in class testR (extends testL)');
|
|
$this->test('TESTR INSIDE');
|
|
$this->log->debug('TESTR', 'Array: '
|
|
. $this->log->prAr(['a', 'b']) . ', Other: ' . $this->log->prAr(['a', 'b']));
|
|
return true;
|
|
}
|
|
}
|
|
$tl = new TestL();
|
|
print "CLASS: LOG ECHO: " . (string)$tl->log->getLogLevelAll('echo') . "<br>";
|
|
print "CLASS: DEBUG: " . $tl->test() . "<br>";
|
|
print "CLASS: PRINTERRORMSG: <br>" . $tl->log->printErrorMsg() . "<br>";
|
|
$tr = new TestR();
|
|
print "CLASS: LOG ECHO: " . (string)$tr->log->getLogLevelAll('echo') . "<br>";
|
|
print "CLASS EXTEND: DEBUG/tl: " . $tr->test('TESTR OUTSIDE') . "<br>";
|
|
print "CLASS EXTEND: DEBUG/tr: " . $tr->subTest() . "<br>";
|
|
print "CLASS EXTEND: PRINTERRORMSG: <br>" . $tr->log->printErrorMsg() . "<br>";
|
|
|
|
// test attaching a logger from outside
|
|
// @codingStandardsIgnoreLine
|
|
class AttachOutside
|
|
{
|
|
public $log;
|
|
public function __construct(object $logger_class)
|
|
{
|
|
$this->log = $logger_class;
|
|
}
|
|
public function test()
|
|
{
|
|
$this->log->debug('ATTACHOUTSIDE', 'A test');
|
|
return get_class($this);
|
|
}
|
|
}
|
|
$ao = new AttachOutside($basic->log);
|
|
print "AO-CLASS: DEBUG: " . $ao->test() . "<br>";
|
|
|
|
// @codingStandardsIgnoreLine
|
|
class AttachFull
|
|
{
|
|
public $main;
|
|
public function __construct(object $class)
|
|
{
|
|
$this->main = $class;
|
|
}
|
|
public function test()
|
|
{
|
|
// should trigger deprecated
|
|
return $this->main->rgb2hex(2, 3, 4);
|
|
}
|
|
}
|
|
|
|
$af = new AttachFull($basic);
|
|
// should trigger deprecated
|
|
print "DEPREACTEDTEST: " . $af->test() . "<br>";
|
|
|
|
|
|
print "GETCALLERCLASS(NON CLASS): " . \CoreLibs\Debug\Support::getCallerClass() . "<br>";
|
|
|
|
// fdebug
|
|
print "S::FSETFILENAME: " . FileWriter::fsetFilename('class_test_debug_file.log') . "<br>";
|
|
print "S::FDEBUG: " . FileWriter::fdebug('CLASS TEST DEBUG FILE: ' . date('Y-m-d H:i:s')) . "<br>";
|
|
|
|
// error message
|
|
// future DEPRECATED
|
|
// $basic->debug('BASIC CLASS', 'Debug test');
|
|
$basic->log->debug('BASIC CLASS', 'Debug test');
|
|
print "BASIC PRINTERRORMSG:<br>" . $basic->log->printErrorMsg();
|
|
|
|
print "</body></html>";
|
|
|
|
// __END__
|