phpmyadmin/tests/end-to-end/ServerSettingsTest.php
Maurício Meneghini Fauth 3598eda3fd
Fix E2E failing tests
These tests fail sometimes. This is an attempt to fix them.

Signed-off-by: Maurício Meneghini Fauth <mauricio@mfauth.net>
2026-02-27 20:00:48 -03:00

130 lines
3.5 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Selenium;
use PHPUnit\Framework\Attributes\CoversNothing;
use PHPUnit\Framework\Attributes\Large;
use function sleep;
#[CoversNothing]
#[Large]
class ServerSettingsTest extends TestBase
{
/**
* Create a test database for this test class
*/
protected bool $createDatabase = false;
/**
* setUp function
*/
protected function setUp(): void
{
parent::setUp();
$this->expandMore();
$this->waitForElement('partialLinkText', 'Settings')->click();
$this->waitAjax();
}
/**
* Saves config and asserts correct message.
*/
private function saveConfig(): void
{
$this->scrollToBottom();
$this->waitForElement(
'xpath',
"//div[contains(@class, 'tab-pane') and contains(@class, 'show')"
. " and contains(@class, 'active')]//input[@value='Apply']",
)->click();
$success = $this->waitUntilElementIsPresent('cssSelector', '.alert-success', 5000);
self::assertStringContainsString('Configuration has been saved', $success->getText());
}
/**
* Tests whether hiding a database works or not
*/
public function testHideDatabase(): void
{
$this->createDatabase();
$this->byPartialLinkText('Features')->click();
$this->waitAjax();
$this->waitForElement('xpath', "//a[contains(@href, '#Databases')]")->click();
$ele = $this->waitForElement('name', 'Servers-1-hide_db');
$this->moveto($ele);
$ele->clear();
$ele->sendKeys($this->databaseName);
$this->saveConfig();
self::assertFalse(
$this->isElementPresent('partialLinkText', $this->databaseName),
);
$this->waitForElement('xpath', "//a[contains(@href, '#Databases')]")->click();
$this->waitForElement('name', 'Servers-1-hide_db')->clear();
$this->saveConfig();
self::assertTrue(
$this->isElementPresent('partialLinkText', $this->databaseName),
);
}
/**
* Tests whether the various settings tabs are displayed when clicked
*/
public function testSettingsTabsAreDisplayed(): void
{
$this->byPartialLinkText('SQL queries')->click();
$this->waitAjax();
$this->waitForElement('className', 'nav-tabs');
$this->byPartialLinkText('SQL Query box')->click();
self::assertTrue(
$this->byId('Sql_box')->isDisplayed(),
);
self::assertFalse(
$this->byId('Sql_queries')->isDisplayed(),
);
$this->byCssSelector("a[href='#Sql_queries']")->click();
self::assertFalse(
$this->byId('Sql_box')->isDisplayed(),
);
self::assertTrue(
$this->byId('Sql_queries')->isDisplayed(),
);
}
/**
* Tests if hiding the logo works or not
*/
public function testHideLogo(): void
{
$this->byPartialLinkText('Navigation panel')->click();
$this->waitAjax();
$this->waitForElement('name', 'NavigationDisplayLogo')
->click();
$this->saveConfig();
sleep(1);
self::assertFalse(
$this->isElementPresent('id', 'imgpmalogo'),
);
$this->byCssSelector("a[href='#NavigationDisplayLogo']")->click();
$this->saveConfig();
sleep(1);
self::assertTrue(
$this->isElementPresent('id', 'imgpmalogo'),
);
}
}