dama / doctrine-test-bundle
Symfony bundle to isolate doctrine database tests and improve test performance
Installs: 23 647 279
Dependents: 120
Suggesters: 3
Security: 0
Stars: 1 082
Watchers: 8
Forks: 61
Open Issues: 7
Type:symfony-bundle
Requires
- php: ^7.4 || ^8.0
- doctrine/dbal: ^3.3 || ^4.0
- doctrine/doctrine-bundle: ^2.11.0
- psr/cache: ^1.0 || ^2.0 || ^3.0
- symfony/cache: ^5.4 || ^6.3 || ^7.0
- symfony/framework-bundle: ^5.4 || ^6.3 || ^7.0
Requires (Dev)
- behat/behat: ^3.0
- friendsofphp/php-cs-fixer: ^3.27
- phpstan/phpstan: ^1.2
- phpunit/phpunit: ^8.0 || ^9.0 || ^10.0 || ^11.0
- symfony/phpunit-bridge: ^6.3
- symfony/process: ^5.4 || ^6.3 || ^7.0
- symfony/yaml: ^5.4 || ^6.3 || ^7.0
- dev-master / 8.x-dev
- v8.2.0
- v8.1.0
- v8.0.2
- v8.0.1
- v8.0.0
- v8.0.0-BETA8
- v8.0.0-BETA7
- v8.0.0-BETA6
- v8.0.0-BETA5
- v8.0.0-BETA4
- v8.0.0-BETA3
- v8.0.0-BETA2
- v8.0.0-BETA1
- 7.x-dev
- v7.3.0
- v7.2.1
- v7.2.0
- v7.1.1
- v7.1.0
- v7.0.0
- v6.7.5
- v6.7.4
- v6.7.3
- v6.7.2
- v6.7.1
- v6.7.0
- v6.6.0
- v6.5.0
- v6.4.0
- v6.3.3
- v6.3.2
- v6.3.1
- v6.3.0
- v6.2.1
- v6.2.0
- v6.1.0
- v6.0.0
- 5.x-dev
- v5.0.5
- v5.0.4
- v5.0.3
- v5.0.2
- v5.0.1
- v5.0.0
- v4.0.2
- v4.0.1
- v4.0.0
- v3.2.0
- v3.1.0
- v3.0.0
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
- 1.x-dev
- v1.0.13
- v1.0.12
- v1.0.10
- v1.0.9
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- dev-connection_key
This package is auto-updated.
Last update: 2024-10-28 16:47:10 UTC
README
What does it do? 😊
This bundle provides features that help you run your Symfony-framework-based App's testsuite more efficiently with isolated tests.
It provides a StaticDriver
that will wrap your originally configured Driver
class (like DBAL\Driver\PDOMysql\Driver
) and keeps a database connection statically in the current php process.
With the help of a PHPUnit extension class it will begin a transaction before every testcase and roll it back again after the test finished for all configured DBAL connections. This results in a performance boost as there is no need to rebuild the schema, import a backup SQL dump or re-insert fixtures before every testcase. As long as you avoid issuing DDL queries that might result in implicit transaction commits (Like ALTER TABLE
, DROP TABLE
etc; see https://wiki.postgresql.org/wiki/Transactional_DDL_in_PostgreSQL:_A_Competitive_Analysis) your tests will be isolated and all see the same database state.
It also includes a Psr6StaticArrayCache
that will be automatically configured as meta data & query cache for all EntityManagers. This improved the speed and memory usage for my testsuites dramatically! This is especially beneficial if you have a lot of tests that boot kernels (like Controller tests or ContainerAware tests) and use Doctrine entities.
How to install and use this Bundle?
- install via composer
composer require --dev dama/doctrine-test-bundle
- If you're not using Flex, enable the bundle by adding the class to bundles.php
<?php // config/bundles.php return [ //... DAMA\DoctrineTestBundle\DAMADoctrineTestBundle::class => ['test' => true], //... ];
- Starting from version 8 and only when using DBAL < 4 you need to make sure you have
use_savepoints
enabled on your doctrine DBAL configuration for all relevant connections:
doctrine: dbal: connections: default: use_savepoints: true
Using the Bundle with PHPUnit
-
Add the Extension to your PHPUnit XML config
-
PHPUnit 8 or 9:
<phpunit> ... <extensions> <extension class="DAMA\DoctrineTestBundle\PHPUnit\PHPUnitExtension" /> </extensions> </phpunit>
-
PHPUnit 10+:
<phpunit> ... <extensions> <bootstrap class="DAMA\DoctrineTestBundle\PHPUnit\PHPUnitExtension" /> </extensions> </phpunit>
-
-
Make sure you also have
phpunit/phpunit
available as adev
dependency (versions 8, 9 and 10 are supported with the built-in extension) to run your tests. Alternatively this bundle is also compatible withsymfony/phpunit-bridge
and itssimple-phpunit
script. (Note: you may need to make sure the phpunit-bridge requires the correct PHPUnit 8+ Version using the environment variableSYMFONY_PHPUNIT_VERSION
). -
That's it! From now on whatever changes you do to the database within each single testcase (be it a
WebTestCase
or aKernelTestCase
or any custom test) are automatically rolled back for you 😊
Using the Bundle with Behat
Enable the extension in your Behat config (e.g. behat.yml
)
default: # ... extensions: DAMA\DoctrineTestBundle\Behat\ServiceContainer\DoctrineExtension: ~
That's it! From now on whatever changes you do to the database within each scenario are automatically rolled back for you.
Please note that this is only works if the tests are executed in the same process as Behat. This means it cannot work when using e.g. Selenium to call your application.
Configuration
The bundle exposes a configuration that looks like this by default:
dama_doctrine_test: enable_static_connection: true enable_static_meta_data_cache: true enable_static_query_cache: true
Setting enable_static_connection: true
means it will enable it for all configured doctrine dbal connections.
You can selectively only enable it for some connections if required:
dama_doctrine_test: enable_static_connection: connection_a: true
Controlling how connections are kept statically in the current php process
By default, every configured doctrine DBAL connection will have its own driver connection that is managed in the current php process. In case you need to customize this behavior you can choose different "connection keys" that are used to select driver connections.
Example for 2 connections that will re-use the same driver connection instance:
doctrine: dbal: connections: default: url: '%database.url1%' foo: url: '%database.url2%' dama_doctrine_test: connection_keys: # assigning the same key will result in the same internal driver connection being re-used for both DBAL connections default: custom_key foo: custom_key
Since v8.1.0: For connections with read/write replicas the bundle will use the same underlying driver connection by default for the primary and also for replicas. This addresses an issue where inconsistencies happened when reading/writing to different connections. This can also be customized as follows:
doctrine: dbal: connections: default: url: '%database.url%' replicas: replica_one: url: '%database.url_replica%' dama_doctrine_test: connection_keys: # assigning different keys will result in separate internal driver connections being used for primary and replica default: primary: custom_key_primary replicas: replica_one: custom_key_replica
Example
An example usage can be seen within the functional tests included in this bundle: https://github.com/dmaicher/doctrine-test-bundle/tree/master/tests
- initial database bootstrap is done using PHPUnit bootstrap file: https://github.com/dmaicher/doctrine-test-bundle/blob/master/tests/bootstrap.php
- several tests that make sure any changes from previous tests are rolled back: https://github.com/dmaicher/doctrine-test-bundle/blob/master/tests/Functional/PhpunitTest.php
This bundle is also used on the official Symfony Demo testsuite: https://github.com/symfony/demo
Debugging
Sometimes it can be useful to be able to debug the database contents when a test failed. As normally all changes are rolled back automatically you can do this manually:
public function testMyTestCaseThatINeedToDebug() { // ... something thats changes the DB state \DAMA\DoctrineTestBundle\Doctrine\DBAL\StaticDriver::commit(); die; // now the DB changes are actually persisted and you can debug them }
Troubleshooting
In case you are running (maybe without knowing it) queries during your tests that are implicitly committing any open transaction (see https://dev.mysql.com/doc/refman/8.0/en/implicit-commit.html for example) you might see an error like this:
Doctrine\DBAL\Driver\PDOException: SQLSTATE[42000]: Syntax error or access violation: 1305 SAVEPOINT DOCTRINE2_SAVEPOINT_2 does not exist
Currently there is no way for this bundle to work with those queries as they simply cannot be rolled back after the test case finished.
See also #58