249 lines
7.7 KiB
PHP
249 lines
7.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Tests\Selenium\Table;
|
|
|
|
use Facebook\WebDriver\WebDriverKeys;
|
|
use PhpMyAdmin\Tests\Selenium\TestBase;
|
|
|
|
/**
|
|
* @coversNothing
|
|
*/
|
|
class BrowseTest extends TestBase
|
|
{
|
|
/**
|
|
* Setup the browser environment to run the selenium test case
|
|
*/
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
$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`)'
|
|
. ');'
|
|
. 'INSERT INTO `test_table` (`id`, `name`, `datetimefield`) VALUES'
|
|
. " (1, 'abcd', '2011-01-20 02:00:02'),"
|
|
. " (2, 'foo', '2010-01-20 02:00:02'),"
|
|
. " (3, 'Abcd', '2012-01-20 02:00:02');"
|
|
);
|
|
|
|
$this->navigateTable('test_table');
|
|
|
|
$this->waitAjax();
|
|
}
|
|
|
|
/**
|
|
* Test sorting of records in browse table
|
|
*
|
|
* @group large
|
|
*/
|
|
public function testSortRecords(): void
|
|
{
|
|
// case 1
|
|
$this->byPartialLinkText('name')->click();
|
|
$this->waitAjax();
|
|
|
|
self::assertEquals('1', $this->getCellByTableClass('table_results', 1, 5));
|
|
|
|
self::assertEquals('3', $this->getCellByTableClass('table_results', 2, 5));
|
|
|
|
self::assertEquals('2', $this->getCellByTableClass('table_results', 3, 5));
|
|
|
|
// case 2
|
|
$this->byPartialLinkText('name')->click();
|
|
$this->waitAjax();
|
|
|
|
self::assertEquals('2', $this->getCellByTableClass('table_results', 1, 5));
|
|
|
|
self::assertEquals('1', $this->getCellByTableClass('table_results', 2, 5));
|
|
|
|
self::assertEquals('3', $this->getCellByTableClass('table_results', 3, 5));
|
|
|
|
// case 2
|
|
$this->byLinkText('datetimefield')->click();
|
|
$this->waitAjax();
|
|
|
|
$this->getCellByTableClass('table_results', 1, 5);
|
|
self::assertEquals('3', $this->getCellByTableClass('table_results', 1, 5));
|
|
|
|
self::assertEquals('1', $this->getCellByTableClass('table_results', 2, 5));
|
|
|
|
self::assertEquals('2', $this->getCellByTableClass('table_results', 3, 5));
|
|
|
|
// case 4
|
|
$this->byPartialLinkText('datetimefield')->click();
|
|
$this->waitAjax();
|
|
|
|
self::assertEquals('2', $this->getCellByTableClass('table_results', 1, 5));
|
|
|
|
self::assertEquals('1', $this->getCellByTableClass('table_results', 2, 5));
|
|
|
|
self::assertEquals('3', $this->getCellByTableClass('table_results', 3, 5));
|
|
}
|
|
|
|
/**
|
|
* Test Edit Record
|
|
*
|
|
* @group large
|
|
*/
|
|
public function testChangeRecords(): void
|
|
{
|
|
$ele = $this->byCssSelector('table.table_results tbody tr:nth-child(2) td:nth-child(2)');
|
|
$this->moveto($ele);
|
|
$this->click();
|
|
|
|
$this->waitForElement('id', 'insertForm');
|
|
|
|
$this->waitAjax();
|
|
$this->waitForElement('id', 'insertForm');
|
|
|
|
self::assertEquals('2', $this->byId('field_1_3')->getAttribute('value'));
|
|
|
|
self::assertEquals('foo', $this->byId('field_2_3')->getAttribute('value'));
|
|
|
|
self::assertEquals('2010-01-20 02:00:02', $this->byId('field_3_3')->getAttribute('value'));
|
|
|
|
$this->byId('field_3_3')->clear();
|
|
$this->byId('field_3_3')->sendKeys('2009-01-2');
|
|
// shorter date to prevent error,
|
|
// automatically gets appended with 00:00:00
|
|
|
|
$this->byId('field_2_3')->clear();
|
|
$this->byId('field_2_3')->sendKeys('foobar');
|
|
|
|
$this->byId('buttonYes')->click();
|
|
|
|
$this->waitAjax();
|
|
$success = $this->waitForElement('className', 'alert-success');
|
|
self::assertStringContainsString('1 row affected', $success->getText());
|
|
|
|
self::assertEquals('foobar', $this->getCellByTableClass('table_results', 2, 6));
|
|
|
|
self::assertEquals('2009-01-02 00:00:00', $this->getCellByTableClass('table_results', 2, 7));
|
|
}
|
|
|
|
/**
|
|
* Test edit record by double click
|
|
*
|
|
* @group large
|
|
*/
|
|
public function testChangeRecordsByDoubleClick(): void
|
|
{
|
|
$element = $this->byCssSelector('table.table_results tbody tr:nth-child(1) td:nth-child(6)');
|
|
|
|
$this->moveto($element);
|
|
$this->doubleclick();
|
|
|
|
self::assertEquals($this->waitForElement(
|
|
'xpath',
|
|
"//div[not(contains(@style,'display: none;'))]//textarea[contains(@class, 'edit_box')]"
|
|
)->getAttribute('value'), 'abcd');
|
|
|
|
$this->byCssSelector('textarea.edit_box')->clear();
|
|
$this->byCssSelector('textarea.edit_box')->sendKeys('abcde');
|
|
|
|
$this->keys(WebDriverKeys::RETURN_KEY);
|
|
|
|
$this->waitAjax();
|
|
$success = $this->waitForElement('cssSelector', 'span.ajax_notification .alert-success');
|
|
self::assertStringContainsString('1 row affected', $success->getText());
|
|
|
|
self::assertEquals('abcde', $this->getCellByTableClass('table_results', 1, 6));
|
|
}
|
|
|
|
/**
|
|
* Test copy and insert record
|
|
*
|
|
* @group large
|
|
*/
|
|
public function testCopyRecords(): void
|
|
{
|
|
$ele = $this->byCssSelector('table.table_results tbody tr:nth-child(3) td:nth-child(3)');
|
|
$this->moveto($ele);
|
|
$this->click();
|
|
$this->waitForElement('id', 'insertForm');
|
|
|
|
self::assertEquals('Abcd', $this->byId('field_2_3')->getAttribute('value'));
|
|
|
|
self::assertEquals('2012-01-20 02:00:02', $this->byId('field_3_3')->getAttribute('value'));
|
|
|
|
$this->byId('field_2_3')->clear();
|
|
$this->byId('field_2_3')->sendKeys('ABCDEFG');
|
|
|
|
$this->byId('field_3_3')->clear();
|
|
$this->byId('field_3_3')->sendKeys('2012-01-02');
|
|
|
|
$this->waitForElement('id', 'buttonYes')->click();
|
|
|
|
$this->waitAjax();
|
|
$success = $this->waitForElement('className', 'alert-success');
|
|
self::assertStringContainsString('1 row inserted', $success->getText());
|
|
|
|
self::assertEquals('ABCDEFG', $this->getCellByTableClass('table_results', 4, 6));
|
|
|
|
self::assertEquals('2012-01-02 00:00:00', $this->getCellByTableClass('table_results', 4, 7));
|
|
}
|
|
|
|
/**
|
|
* Test search table
|
|
*
|
|
* @group large
|
|
*/
|
|
public function testSearchRecords(): void
|
|
{
|
|
$this->expandMore();
|
|
|
|
$this->byPartialLinkText('Search')->click();
|
|
$this->waitForElement('id', 'tbl_search_form');
|
|
|
|
$this->byId('fieldID_1')->sendKeys('abcd');
|
|
$this->selectByLabel(
|
|
$this->byName('criteriaColumnOperators[1]'),
|
|
'LIKE %...%'
|
|
);
|
|
|
|
$this->scrollToBottom();
|
|
$elem = $this->waitForElement('cssSelector', '.card-footer input[name=submit]');
|
|
$this->moveto($elem);
|
|
$elem->click();
|
|
|
|
$this->waitAjax();
|
|
$success = $this->waitForElement('className', 'alert-success');
|
|
self::assertStringContainsString('Showing rows', $success->getText());
|
|
|
|
self::assertEquals('1', $this->getCellByTableClass('table_results', 1, 5));
|
|
|
|
self::assertEquals('3', $this->getCellByTableClass('table_results', 2, 5));
|
|
}
|
|
|
|
/**
|
|
* Test delete multiple records
|
|
*
|
|
* @group large
|
|
*/
|
|
public function testDeleteRecords(): void
|
|
{
|
|
$this->byId('id_rows_to_delete1_left')->click();
|
|
$this->byId('id_rows_to_delete2_left')->click();
|
|
|
|
$this->byCssSelector('button[value=delete]')->click();
|
|
$this->waitForElement('cssSelector', 'fieldset.confirmation');
|
|
|
|
$this->byId('buttonYes')->click();
|
|
|
|
$this->waitAjax();
|
|
$success = $this->waitForElement('className', 'alert-success');
|
|
self::assertStringContainsString('Showing rows', $success->getText());
|
|
|
|
self::assertFalse($this->isElementPresent(
|
|
'cssSelector',
|
|
'table.table_results tbody tr:nth-child(2)'
|
|
));
|
|
}
|
|
}
|