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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package doctrine-test-db-regeneration-bundle

Hgraca \ DoctrineTestDbRegenerationBundle

Author Latest Version Total Downloads

Build Status Scrutinizer Code Quality Code Intelligence Status CodeCov

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

  1. install via composer

  2. Enable the bundle for your test environment in your AppKernel.php, ie:

  3. The bundle exposes a configuration that looks like this by default:

  4. 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:

  5. Make your tests, that need DB access, implement the tag interface DatabaseAwareTestInterface, so it only recovers the DB for those tests.
  6. 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

PHP Build Version
Package Version
Requires doctrine/dbal Version ^2
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
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package hgraca/doctrine-test-db-regeneration-bundle contains the following files

Loading the files please wait ....