1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
|
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Selenium\Database;
use PhpMyAdmin\Tests\Selenium\TestBase;
use function sleep;
use function str_replace;
/**
* @coversNothing
*/
#[\PHPUnit\Framework\Attributes\CoversNothing]
class ProceduresTest extends TestBase
{
/**
* The sql_mode before tests
*
* @var string
*/
private $originalSqlMode = '';
/**
* Setup the browser environment to run the selenium test case
*/
protected function setUp(): void
{
parent::setUp();
if ($this->originalSqlMode === '') {
$this->originalSqlMode = $this->getSqlMode();
$this->dbQuery(
"SET GLOBAL sql_mode = '" .
str_replace(
'STRICT_TRANS_TABLES',
'',
$this->originalSqlMode
) . "';"
);
}
$this->dbQuery(
'USE `' . $this->databaseName . '`;'
. 'CREATE TABLE `test_table` ('
. ' `id` int(11) NOT NULL AUTO_INCREMENT,'
. ' `name` varchar(20) NOT NULL,'
. ' `datetimefield` datetime NOT NULL,'
. ' PRIMARY KEY (`id`)'
. ');'
);
$this->login();
$this->navigateDatabase($this->databaseName);
$this->expandMore();
}
private function getSqlMode(): string
{
$sqlMode = '';
$this->dbQuery(
'SELECT @@GLOBAL.SQL_MODE as globalsqm;',
function () use (&$sqlMode): void {
$optionsSelector = '//button[contains(., "Extra options")]';
$fullTextSelector = '//label[contains(., "Full texts")]';
self::assertTrue($this->isElementPresent('xpath', $optionsSelector));
$this->byXPath($optionsSelector)->click();
$this->waitForElement('xpath', $fullTextSelector);
sleep(2);// Wait for the animation to display the box
$this->byXPath($fullTextSelector)->click();
$this->byCssSelector('.collapse .tblFooters input[type=submit]')->click();
$this->waitAjax();
sleep(2);// Waitfor the new results
self::assertTrue($this->isElementPresent('className', 'table_results'));
$sqlMode = $this->getCellByTableClass('table_results', 1, 1);
self::assertNotEmpty($sqlMode);
}
);
return $sqlMode;
}
/**
* Restore initial state
*/
protected function tearDown(): void
{
if ($this->originalSqlMode !== '') {
$this->dbQuery("SET GLOBAL sql_mode = '" . $this->originalSqlMode . "';");
self::assertEquals($this->originalSqlMode, $this->getSqlMode());
}
parent::tearDown();
}
/**
* Creates procedure for tests
*/
private function procedureSQL(): void
{
$this->dbQuery(
'USE `' . $this->databaseName . '`;'
. 'CREATE PROCEDURE `test_procedure`(IN `inp` VARCHAR(20), OUT `outp` INT)'
. ' NOT DETERMINISTIC READS SQL DATA SQL SECURITY DEFINER SELECT char_'
. 'length(inp) + count(*) FROM test_table INTO outp'
);
}
/**
* Create a procedure
*
* @group large
*/
#[\PHPUnit\Framework\Attributes\Group('large-group')]
public function testAddProcedure(): void
{
$this->waitForElement('partialLinkText', 'Routines')->click();
$this->waitAjax();
$this->waitForElement('partialLinkText', 'Create new routine')->click();
$this->waitForElement('className', 'rte_form');
$this->byName('item_name')->sendKeys('test_procedure');
$this->byName('item_param_name[0]')->sendKeys('inp');
$this->selectByLabel(
$this->byName('item_param_type[0]'),
'VARCHAR'
);
$this->byName('item_param_length[0]')->sendKeys('20');
$this->byId('addRoutineParameterButton')->click();
$this->selectByLabel(
$this->byName('item_param_dir[1]'),
'OUT'
);
$ele = $this->waitForElement('name', 'item_param_name[1]');
$ele->sendKeys('outp');
$proc = 'SELECT char_length(inp) + count(*) FROM test_table INTO outp';
$this->typeInTextArea($proc);
$this->selectByLabel(
$this->byName('item_sqldataaccess'),
'READS SQL DATA'
);
$action = $this->webDriver->action();
// Resize the too big text box to access Go button
$element = $this->byXPath('//*[@class="ui-resizable-handle ui-resizable-s"]');
$action->moveToElement($element)
->clickAndHold()
->moveByOffset(0, -120)// Resize
->click()// Click to free the mouse
->perform();
$this->byCssSelector('div.ui-dialog-buttonset button:nth-child(1)')->click();
$this->waitForElement(
'xpath',
'//div[@class=\'alert alert-success\' and contains(., \'Routine `test_procedure` has been created\')]'
);
$this->dbQuery(
"SHOW PROCEDURE STATUS WHERE Db='" . $this->databaseName . "'",
function (): void {
self::assertTrue($this->isElementPresent('className', 'table_results'));
self::assertEquals($this->databaseName, $this->getCellByTableClass('table_results', 1, 1));
}
);
$this->executeProcedure('test_procedure', 14);
}
/**
* Test for editing procedure
*
* @group large
*/
#[\PHPUnit\Framework\Attributes\Group('large-group')]
public function testEditProcedure(): void
{
$this->procedureSQL();
$this->waitForElement('partialLinkText', 'Routines')->click();
$this->waitAjax();
$this->waitForElement('id', 'checkAllCheckbox');
$this->byPartialLinkText('Edit')->click();
$this->waitForElement('className', 'rte_form');
$this->byName('item_param_length[0]')->clear();
$this->byName('item_param_length[0]')->sendKeys('30');
$this->byCssSelector('div.ui-dialog-buttonset button:nth-child(1)')->click();
$this->waitForElement(
'xpath',
'//div[@class=\'alert alert-success\' and contains(., \'Routine `test_procedure` has been modified\')]'
);
$this->executeProcedure('test_procedure', 14);
}
/**
* Test for dropping procedure
*
* @group large
*/
#[\PHPUnit\Framework\Attributes\Group('large-group')]
public function testDropProcedure(): void
{
$this->procedureSQL();
$this->waitForElement('partialLinkText', 'Routines')->click();
$this->waitAjax();
$this->waitForElement('id', 'checkAllCheckbox');
$this->byPartialLinkText('Drop')->click();
$this->waitForElement('cssSelector', 'button.submitOK')->click();
$this->waitAjaxMessage();
$this->dbQuery(
"SHOW PROCEDURE STATUS WHERE Db='" . $this->databaseName . "'",
function (): void {
self::assertTrue($this->isElementPresent('className', 'table_results'));
self::assertFalse($this->isElementPresent('cssSelector', '.table_results tbody tr'));
}
);
}
/**
* Execute procedure
*
* @param string $text String to pass as inp param
* @param int $length Expected output length
*/
private function executeProcedure(string $text, int $length): void
{
$this->waitAjax();
$this->waitUntilElementIsVisible('partialLinkText', 'Execute', 30)->click();
$this->waitUntilElementIsVisible('name', 'params[inp]', 30)->sendKeys($text);
$this->byCssSelector('div.ui-dialog-buttonset button:nth-child(1)')->click();
$this->waitAjax();
$this->waitForElement('cssSelector', 'span#PMA_slidingMessage table tbody');
$this->waitUntilElementIsVisible('cssSelector', 'span#PMA_slidingMessage', 30);
sleep(2);// Give more chances to the JS effect to finish
$head = $this->byCssSelector('span#PMA_slidingMessage table tbody')->getText();
self::assertEquals("outp\n" . $length, $head);
}
}
|