| Server IP : 3.96.16.70 / Your IP : 216.73.216.15 Web Server : Apache System : Linux ip-172-31-26-103.ca-central-1.compute.internal 6.1.163-186.299.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Feb 24 16:35:42 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/prod1.wondermakr.com/phpmyadmin/test/classes/ |
Upload File : |
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests;
use PhpMyAdmin\Advisor;
use Symfony\Component\ExpressionLanguage\ExpressionLanguage;
/**
* @covers \PhpMyAdmin\Advisor
*/
class AdvisorTest extends AbstractTestCase
{
protected function setUp(): void
{
parent::setUp();
parent::setGlobalConfig();
$GLOBALS['server'] = 1;
}
/**
* test for Advisor::byTime
*
* @param float $time time
* @param string $expected expected result
*
* @dataProvider advisorTimes
*/
public function testAdvisorBytime(float $time, string $expected): void
{
$result = Advisor::byTime($time, 2);
self::assertSame($expected, $result);
}
public static function advisorTimes(): array
{
return [
[
10,
'10 per second',
],
[
0.02,
'1.2 per minute',
],
[
0.003,
'10.8 per hour',
],
[
0.00003,
'2.59 per day',
],
[
0.0000000003,
'<0.01 per day',
],
];
}
/**
* Test for adding rule
*
* @param array $rule Rule to test
* @param array $expected Expected rendered rule in fired/errors list
* @param string|null $error Expected error string (null if none error expected)
*
* @dataProvider rulesProvider
*/
public function testAddRule(array $rule, array $expected, ?string $error): void
{
parent::setLanguage();
$advisor = new Advisor($GLOBALS['dbi'], new ExpressionLanguage());
$parseResult = include ROOT_PATH . 'libraries/advisory_rules_generic.php';
self::assertIsArray($parseResult);
self::assertArrayHasKey(0, $parseResult);
self::assertIsArray($parseResult[0]);
$advisor->setVariable('value', 0);
$advisor->addRule('fired', $rule);
$runResult = $advisor->getRunResult();
if (isset($runResult['errors']) || $error !== null) {
self::assertSame([$error], $runResult['errors']);
}
if (! isset($runResult['fired']) && $expected == []) {
return;
}
self::assertEquals([$expected], $runResult['fired']);
}
public static function rulesProvider(): array
{
return [
[
[
'id' => 'Basic',
'justification' => 'foo',
'name' => 'Basic',
'issue' => 'issue',
'recommendation' => 'Recommend',
],
[
'justification' => 'foo',
'id' => 'Basic',
'name' => 'Basic',
'issue' => 'issue',
'recommendation' => 'Recommend',
],
null,
],
[
[
'id' => 'Variable',
'justification' => 'foo',
'name' => 'Variable',
'issue' => 'issue',
'recommendation' => 'Recommend {status_var}',
],
[
'justification' => 'foo',
'id' => 'Variable',
'name' => 'Variable',
'issue' => 'issue',
'recommendation' => 'Recommend <a href="index.php?route=/server/variables&' .
'filter=status_var&lang=en">status_var</a>',
],
null,
],
[
[
'id' => 'Format',
'justification' => '%s foo',
'justification_formula' => 'value',
'name' => 'Format',
'issue' => 'issue',
'recommendation' => 'Recommend',
],
[
'justification' => '0 foo',
'justification_formula' => 'value',
'id' => 'Format',
'name' => 'Format',
'issue' => 'issue',
'recommendation' => 'Recommend',
],
null,
],
[
[
'id' => 'Percent',
'justification' => '%s%% foo',
'justification_formula' => 'value',
'name' => 'Percent',
'issue' => 'issue',
'recommendation' => 'Recommend',
],
[
'justification' => '0% foo',
'justification_formula' => 'value',
'id' => 'Percent',
'name' => 'Percent',
'issue' => 'issue',
'recommendation' => 'Recommend',
],
null,
],
[
[
'id' => 'Double',
'justification' => '%s%% %d foo',
'justification_formula' => 'value, value',
'name' => 'Double',
'issue' => 'issue',
'recommendation' => 'Recommend',
],
[
'justification' => '0% 0 foo',
'justification_formula' => 'value, value',
'id' => 'Double',
'name' => 'Double',
'issue' => 'issue',
'recommendation' => 'Recommend',
],
null,
],
[
[
'id' => 'Quotes',
'justification' => '"\'foo',
'name' => 'Quotes',
'issue' => 'issue',
'recommendation' => 'Recommend"\'',
],
[
'justification' => '"\'foo',
'id' => 'Quotes',
'name' => 'Quotes',
'issue' => 'issue',
'recommendation' => 'Recommend"\'',
],
null,
],
[
[
'justification' => 'foo',
'justification_formula' => 'fsafdsa',
'name' => 'Failure',
'issue' => 'issue',
'recommendation' => 'Recommend',
],
[],
'Failed formatting string for rule \'Failure\'. ' .
'Error when evaluating: Variable "fsafdsa" is not ' .
'valid around position 2 for expression `[fsafdsa]`.',
],
[
[
'id' => 'Distribution',
'justification' => 'Version string (%s)',
'justification_formula' => 'value',
'name' => 'Distribution',
'issue' => 'official MySQL binaries.',
'recommendation' => 'See <a href="https://example.com/">web</a>',
],
[
'justification' => 'Version string (0)',
'justification_formula' => 'value',
'name' => 'Distribution',
'issue' => 'official MySQL binaries.',
'recommendation' => 'See <a href="./url.php?url=https%3A%2F%2F' .
'example.com%2F" target="_blank" rel="noopener noreferrer">web</a>',
'id' => 'Distribution',
],
null,
],
[
[
'id' => 'Distribution',
'justification' => 'Timestamp (%s)',
'justification_formula' => 'ADVISOR_timespanFormat(1377027)',
'name' => 'Distribution',
'issue' => 'official MySQL binaries.',
'recommendation' => 'See <a href="https://example.com/">web</a>',
],
[
'justification' => 'Timestamp (15 days, 22 hours, 30 minutes and 27 seconds)',
'justification_formula' => 'ADVISOR_timespanFormat(1377027)',
'name' => 'Distribution',
'issue' => 'official MySQL binaries.',
'recommendation' => 'See <a href="./url.php?url=https%3A%2F%2F' .
'example.com%2F" target="_blank" rel="noopener noreferrer">web</a>',
'id' => 'Distribution',
],
null,
],
[
[
'id' => 'Distribution',
'justification' => 'Memory: %s',
'justification_formula' => 'ADVISOR_formatByteDown(1000000, 2, 2)',
'name' => 'Distribution',
'issue' => 'official MySQL binaries.',
'recommendation' => 'See <a href="https://example.com/">web</a> and'
. ' <a href="https://example.com/">web2</a>',
],
[
'justification' => 'Memory: 0.95 MiB',
'justification_formula' => 'ADVISOR_formatByteDown(1000000, 2, 2)',
'name' => 'Distribution',
'issue' => 'official MySQL binaries.',
'recommendation' => 'See <a href="./url.php?url=https%3A%2F%2F'
. 'example.com%2F" target="_blank" rel="noopener noreferrer">web</a>'
. ' and <a href="./url.php?url=https%3A%2F%2Fexample.com%2F" target="_blank"'
. ' rel="noopener noreferrer">web2</a>',
'id' => 'Distribution',
],
null,
],
[
[
'id' => 'Distribution',
'justification' => 'Time: %s',
'justification_formula' => 'ADVISOR_bytime(0.02, 2)',
'name' => 'Distribution',
'issue' => '{long_query_time} is set to 10 seconds or more',
'recommendation' => 'See <a href=\'https://example.com/\'>web</a> and'
. ' <a href=\'https://example.com/\'>web2</a>',
],
[
'justification' => 'Time: 1.2 per minute',
'justification_formula' => 'ADVISOR_bytime(0.02, 2)',
'name' => 'Distribution',
'issue' => '<a href="index.php?route=/server/variables&filter=long_query_time&lang=en">'
. 'long_query_time</a> is set to 10 seconds or more',
'recommendation' => 'See <a href="./url.php?url=https%3A%2F%2F'
. 'example.com%2F" target="_blank" rel="noopener noreferrer">web</a>'
. ' and <a href="./url.php?url=https%3A%2F%2Fexample.com%2F" target="_blank"'
. ' rel="noopener noreferrer">web2</a>',
'id' => 'Distribution',
],
null,
],
[
[
'id' => 'Minor Version',
'justification' => 'Current version: %s',
'justification_formula' => 'value',
'name' => 'Minor Version',
'precondition' => '! fired(\'Release Series\')',
'issue' => 'Version less than 5.1.30',
'recommendation' => 'You should upgrade',
'formula' => 'version',
'test' => "substr(value,0,2) <= '5.' && substr(value,2,1) <= 1 && substr(value,4,2) < 30",
],
[
'justification' => 'Current version: 0',
'justification_formula' => 'value',
'name' => 'Minor Version',
'issue' => 'Version less than 5.1.30',
'recommendation' => 'You should upgrade',
'id' => 'Minor Version',
'precondition' => '! fired(\'Release Series\')',
'formula' => 'version',
'test' => "substr(value,0,2) <= '5.' && substr(value,2,1) <= 1 && substr(value,4,2) < 30",
],
null,
],
];
}
}