aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/includes/dba
Commit message (Collapse)AuthorAgeFilesLines
* tests: Enable debug logging during testsHarald Eilertsen2024-01-151-0/+12
| | | | | | The debug log will be stored in the test/results directory, and archived as part of the artifacts of the CI run. This should make it easier to get some debugging info out from the CI runs if they fail.
* tests: Remove id from db fixtures.Harald Eilertsen2024-01-151-2/+0
| | | | | | | | | | | | | | | | It seems that PostgreSQL will not update the autoincrement index of the table when inserting rows with an id set. Later inserts without an id set will then fail, because they get assigned an id that already exists. MySQL seems to handle this just fine. Why the id column was added in the first place, one may wonder, but that's how it were. In any case, this broke the PostgreSQL tests in the gitlab CI environment. (While it mysteriously worked in my local ddev environment.) Anyways, the id column is not needed, and things work better without them.
* tests: Add config fixtures.Harald Eilertsen2024-01-081-0/+13
| | | | | | Adds fixtures for the config table: - Disables dns checking globally for the tests. - Adds a few disallowed email domains and addresses.
* revert folder renamingMario2020-11-261-0/+9
|
* psr-4 autoloading standardMario2020-11-263-265/+0
|
* fix dba_pdoTestgit-marijus2018-10-131-2/+2
|
* :white_check_mark: Add tests for non existent tables.Klaus Weidenbach2018-01-281-0/+22
| | | | Prevent PHP warnings "Undefined variable" in dba_pdo::q();
* :white_check_mark: Unit Test for dba_pdo driver class.Klaus Weidenbach2018-01-282-0/+176
|
* :white_check_mark: Unit Test for \DBA factory.Klaus Weidenbach2018-01-281-0/+67