Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)Author
2021-09-15Add `bool` return type where possibleMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-09-13Add `void` return type where possibleMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-09-13Fix failing unit testsMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-09-12Inline some phpcs ignores and remove deprecated annotationsMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-09-11Use only callable controllersMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-09-11Extract `IndexesController::doSaveData` methodMaurício Meneghini Fauth
Creates the Table\Indexes class. Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-09-10Extract actions from controllers to new controllersMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-09-10Extract Processes class from ProcessesControllerMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-09-09Extract the `Server\ShowEngineController` classMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-09-09Extract actions from Table\StructureControllerMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-09-08Extract actions from controllers to new controllersMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-09-07Extract actions from controllers to new ctrlsMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-09-05Extract controllers from HomeControllerMaurício Meneghini Fauth
Extracts CollationConnectionController, GitInfoController and RecentTablesListController controllers from HomeController. Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-09-03Remove some assignments to the `$_POST` globalMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-09-02Remove the `Core::isValid` methodMaurício Meneghini Fauth
This improves the type checking and simplifies the code. Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-09-01Inline `Core::ifSetOr` methodMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-09-01Access POST params from the ServerRequest classMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-08-31Merge branch 'QA_5_1'William Desportes
Also fixed tests from previous merge: 2d307ed06285528375be24eb1b6dc43006a5259d Signed-off-by: William Desportes <williamdes@wdes.fr>
2021-08-31Merge branch 'QA_5_1'William Desportes
Signed-off-by: William Desportes <williamdes@wdes.fr>
2021-08-30Make controllers callableMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-08-30Fix unit tests on WindowsMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-08-28Refactor setProperties method of Plugin classesMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-08-28Fix tests after dc5cf4766bWilliam Desportes
Signed-off-by: William Desportes <williamdes@wdes.fr>
2021-08-28Fix #16906 - Replace table names with the configuration ones while creating ↵William Desportes
the storage tables Signed-off-by: William Desportes <williamdes@wdes.fr>
2021-08-28Ref #16906 - Add tests for Relation::getDefaultPmaTableNamesWilliam Desportes
Signed-off-by: William Desportes <williamdes@wdes.fr>
2021-08-27Merge branch 'QA_5_1'William Desportes
Signed-off-by: William Desportes <williamdes@wdes.fr>
2021-08-27Improve type check of `Plugins::getDefault` methodMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-08-27Refactor `PhpMyAdmin\Plugins::getChoice` methodMaurício Meneghini Fauth
Extracts the getDefault method from the getChoice method and adds a getName method to the Plugin interface. Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-08-27Ref #16906 - Allow to create the pma storage db using a different name than ↵William Desportes
"phpmyadmin" Signed-off-by: William Desportes <williamdes@wdes.fr>
2021-08-27Ref #16906 - Add tests for Relation::createPmaDatabaseWilliam Desportes
Signed-off-by: William Desportes <williamdes@wdes.fr>
2021-08-27Ref #16906 - Improve tests for Relation::fixPmaTablesWilliam Desportes
Signed-off-by: William Desportes <williamdes@wdes.fr>
2021-08-27Ref #16906 - Add tests for Relation::fixPmaTablesWilliam Desportes
Signed-off-by: William Desportes <williamdes@wdes.fr>
2021-08-27Add $this->dummyDbi->addErrorCode method to be able to test error code behaviorsWilliam Desportes
Signed-off-by: William Desportes <williamdes@wdes.fr>
2021-08-26Add some tests for Plugins classMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-08-25Extract HTML from `Plugins::getChoice` methodMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-08-24Fix failing tests after last changeWilliam Desportes
Signed-off-by: William Desportes <williamdes@wdes.fr>
2021-08-24Make Tracking::enabled not use statics as it does mess up with testsWilliam Desportes
Signed-off-by: William Desportes <williamdes@wdes.fr>
2021-08-24Add methods to DbiDummy and AbstractTestCase to control changing databasesWilliam Desportes
Signed-off-by: William Desportes <williamdes@wdes.fr>
2021-08-23Merge branch 'QA_5_1'William Desportes
Signed-off-by: William Desportes <williamdes@wdes.fr>
2021-08-23Fix SqlControllerTest after PR #17068Lukas Bixen
Signed-off-by: Lukas Bixen <lrb2_@outlook.com>
2021-08-23Fix ResultsTest after pull-request #17070Lukas Bixen
Signed-off-by: Lukas Bixen <lrb2_@outlook.com>
2021-08-23Merge branch 'QA_5_1'William Desportes
Signed-off-by: William Desportes <williamdes@wdes.fr>
2021-08-21Move partition classes to the `Partitioning` namespaceMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-08-21Add support for account lockingMaurício Meneghini Fauth
- https://dev.mysql.com/doc/refman/en/account-locking.html - https://mariadb.com/kb/en/account-locking/ Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-08-20Ref #17084 - comment the code and add a new test caseWilliam Desportes
And fix the modified test Signed-off-by: William Desportes <williamdes@wdes.fr>
2021-08-18Fix ErrorHandler sliceErrors not returning errorsCraig McNeill
Signed-off-by: Craig McNeill <craig@mmddata.ca>
2021-08-18Fix #14502 - Uncheck the "ignore" checkbox on GIS modal save valueWilliam Desportes
Signed-off-by: William Desportes <williamdes@wdes.fr>
2021-08-14Fix failing test depending on variable order in the arrayWilliam Desportes
Seed: 1628944337 Signed-off-by: William Desportes <williamdes@wdes.fr>
2021-08-14Merge branch 'QA_5_1'William Desportes
Signed-off-by: William Desportes <williamdes@wdes.fr>
2021-08-14Fix testGetAllFunctions test after #17079William Desportes
Extracted from pull-request #17074 by myself (@williamdes). Signed-off-by: Maximilian Krög <maxi_kroeg@web.de>