phpmyadmin/test/selenium/Database/TriggersTest.php
Maurício Meneghini Fauth 206199105e Remove useless return type annotations
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2020-01-23 13:03:29 -03:00

209 lines
5.2 KiB
PHP

<?php
/**
* Selenium TestCase for table related tests
*/
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Selenium\Database;
use PhpMyAdmin\Tests\Selenium\TestBase;
/**
* TriggersTest class
*
* @group selenium
*/
class TriggersTest extends TestBase
{
/**
* Setup the browser environment to run the selenium test case
*/
protected function setUp(): void
{
parent::setUp();
$this->dbQuery(
'CREATE TABLE `test_table` ('
. ' `id` int(11) NOT NULL AUTO_INCREMENT,'
. ' `val` int(11) NOT NULL,'
. ' PRIMARY KEY (`id`)'
. ')'
);
$this->dbQuery(
'CREATE TABLE `test_table2` ('
. ' `id` int(11) NOT NULL AUTO_INCREMENT,'
. ' `val` int(11) NOT NULL,'
. ' PRIMARY KEY (`id`)'
. ')'
);
$this->dbQuery(
'INSERT INTO `test_table2` (val) VALUES (2);'
);
$this->login();
$this->navigateDatabase($this->database_name);
}
/**
* Creates procedure for tests
*
* @return void
*/
private function _triggerSQL()
{
$this->dbQuery(
'CREATE TRIGGER `test_trigger` '
. 'AFTER INSERT ON `test_table` FOR EACH ROW'
. ' UPDATE `' . $this->database_name
. '`.`test_table2` SET val = val + 1'
);
}
/**
* Create a Trigger
*
* @return void
*
* @group large
*/
public function testAddTrigger()
{
$this->expandMore();
$this->waitForElement('partialLinkText', 'Triggers')->click();
$this->waitAjax();
$this->waitForElement('partialLinkText', 'Add trigger')->click();
$this->waitAjax();
$this->waitForElement('className', 'rte_form');
$this->byName('item_name')->sendKeys('test_trigger');
$this->selectByLabel(
$this->byName('item_table'),
'test_table'
);
$this->selectByLabel(
$this->byName('item_timing'),
'AFTER'
);
$this->selectByLabel(
$this->byName('item_event'),
'INSERT'
);
$proc = 'UPDATE ' . $this->database_name . '.`test_table2` SET val=val+1';
$this->typeInTextArea($proc);
$this->byXPath("//button[contains(., 'Go')]")->click();
$this->waitForElement(
'xpath',
"//div[@class='alert alert-success' and contains(., "
. "'Trigger `test_trigger` has been created')]"
);
$this->assertTrue(
$this->isElementPresent(
'xpath',
"//td[contains(., 'test_trigger')]"
)
);
$result = $this->dbQuery(
'SHOW TRIGGERS FROM `' . $this->database_name . '`;'
);
$this->assertEquals(1, $result->num_rows);
// test trigger
$this->dbQuery('INSERT INTO `test_table` (val) VALUES (1);');
$result = $this->dbQuery('SELECT val FROM `test_table2`;');
$row = $result->fetch_assoc();
$this->assertEquals(3, $row['val']);
}
/**
* Test for editing Triggers
*
* @return void
*
* @group large
*/
public function testEditTriggers()
{
$this->expandMore();
$this->_triggerSQL();
$this->waitForElement('partialLinkText', 'Triggers')->click();
$this->waitAjax();
$this->waitForElement(
'xpath',
"//legend[contains(., 'Triggers')]"
);
$this->byPartialLinkText('Edit')->click();
$this->waitForElement('className', 'rte_form');
$proc = 'UPDATE ' . $this->database_name . '.`test_table2` SET val=val+10';
$this->typeInTextArea($proc);
$this->byXPath("//button[contains(., 'Go')]")->click();
$this->waitForElement(
'xpath',
"//div[@class='alert alert-success' and contains(., "
. "'Trigger `test_trigger` has been modified')]"
);
// test trigger
$this->dbQuery('INSERT INTO `test_table` (val) VALUES (1);');
$result = $this->dbQuery('SELECT val FROM `test_table2`;');
$row = $result->fetch_assoc();
$this->assertEquals(12, $row['val']);
}
/**
* Test for dropping Trigger
*
* @return void
*
* @group large
*/
public function testDropTrigger()
{
$this->expandMore();
$this->_triggerSQL();
$ele = $this->waitForElement('partialLinkText', 'Triggers');
$ele->click();
$this->waitForElement(
'xpath',
"//legend[contains(., 'Triggers')]"
);
$this->byPartialLinkText('Drop')->click();
$this->waitForElement(
'cssSelector',
'button.submitOK'
)->click();
$this->waitAjaxMessage();
// test trigger
$this->dbQuery('INSERT INTO `test_table` (val) VALUES (1);');
$result = $this->dbQuery('SELECT val FROM `test_table2`;');
$row = $result->fetch_assoc();
$this->assertEquals(2, $row['val']);
$result = $this->dbQuery(
'SHOW TRIGGERS FROM `' . $this->database_name . '`;'
);
$this->assertEquals(0, $result->num_rows);
}
}