Download the PHP package hgraca/doctrine-test-db-regeneration-bundle without Composer
On this page you can find all versions of the php package hgraca/doctrine-test-db-regeneration-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download hgraca/doctrine-test-db-regeneration-bundle
More information about hgraca/doctrine-test-db-regeneration-bundle
Files in hgraca/doctrine-test-db-regeneration-bundle
Package doctrine-test-db-regeneration-bundle
Short Description Symfony 2/3/4 bundle to generate the test DB (if needed) for every test suite run or test method run.
License MIT
Informations about the package doctrine-test-db-regeneration-bundle
Hgraca \ DoctrineTestDbRegenerationBundle
This is a Symfony 2/3/4 bundle, inspired on some code @lcobucci wrote back in 2017, to generate the test DB (if needed) for every test suite run or test method run.
When we have Integration tests that need to use a DB, the best practice is to have the tests use a SQLite DB for those tests. However, keeping the SQLite DB file in our repo is not a good practice, and using the same file for all tests neither, because tests should run in isolation from each other.
This bundle provides the functionality to generate the test DB SQLite file, and regenerate it for every test that needs a DB.
By default, at the beginning of a test run it will create a test database, based on the Doctrine fixtures, and a serialized fixtures object.
After generating those initial files, it will copy the backup DB SQLite file into the path of the DB SQLite file being
used by the tests, but only before the tests implementing the tag interface DatabaseAwareTestInterface
so that we
don't regenerate the DB for tests that don't need it.
This last functionality, however, can be disabled so that we can use this bundle with another bundle like the DAMA\DoctrineTestBundle, which provides similar functionality which will probably give you better performance. In such case, this bundle is only useful for generating the initial test DB.
Installation & Setup
-
install via composer
-
Enable the bundle for your test environment in your
AppKernel.php
, ie: -
The bundle exposes a configuration that looks like this by default:
-
Add the PHPUnit test listener in your xml config (e.g.
app/phpunit.xml
)There are a few options you can use to tweak how it works. Below you can see the options with their default values:
I strongly advise using DAMA\DoctrineTestBundle as well, as in a platform with 1596 integration tests, it reduced the test execution time from 2m to 46s.
If you are using DAMA\DoctrineTestBundle you will want to set it up like this:
- Make your tests, that need DB access, implement the tag interface
DatabaseAwareTestInterface
, so it only recovers the DB for those tests. - Done! From now on the test database will be generated (if needed) at the beginning of running the tests,
and at the beginning of every test tagged as
DatabaseAwareTestInterface
, if you did not disable this feature.
Available commands
Run the test suites:
Create th test coverage report:
Fix the code standards:
Manage the project dependencies:
Build the docker container used for testing:
All versions of doctrine-test-db-regeneration-bundle with dependencies
doctrine/orm Version ^2
doctrine/doctrine-bundle Version ^1
doctrine/data-fixtures Version ^1.1
doctrine/doctrine-fixtures-bundle Version ^3
doctrine/doctrine-migrations-bundle Version ^1.3
php Version ^7.1
symfony/framework-bundle Version ^2.7|^3.0|^4.0