takeit / doctrine-data-fixtures-extension
Doctrine data fixtures extension for Behat
Requires
- php: ^7.1
- behat/behat: ^3.0
- behat/symfony2-extension: ^2.0
- doctrine/data-fixtures: ^1.0
- doctrine/orm: ^2.6
- symfony/dependency-injection: ^3.4|^4.0
Requires (Dev)
- doctrine/doctrine-bundle: ^1.8
- doctrine/doctrine-fixtures-bundle: ^3.0
- phpstan/phpstan: ^0.9.2
- symfony/process: ^3.4|^4.0
Suggests
- doctrine/migrations: Uses DBAL to load versioned database schema and migration classes
- symfony/process: For backup support on pgsql or mysql platforms
- v5.0.x-dev
- dev-master / 5.0.x-dev
- v5.0.1
- v5.0.0
- v5.0.0-beta.1
- v4.0.x-dev
- v4.0.1
- v4.0.0
- 3.0.0
- 2.5.6
- 2.5.5
- 2.5.4
- 2.5.3
- 2.5.2
- 2.5.1
- 2.5.0
- 0.10.3
- 0.10.2
- 0.10.1
- 0.10
- v0.9.15
- v0.9.14
- v0.9.13
- v0.9.12
- v0.9.11
- v0.9.10
- v0.9.9
- v0.9.8
- v0.9.7
- v0.9.6
- v0.9.5
- v0.9.4
- v0.9.3
- v0.9.2
- v0.9.1
- v0.9
- dev-container_aware
- dev-DepInjection
- dev-OlConfigVars
This package is auto-updated.
Last update: 2024-11-04 22:16:24 UTC
README
The extension increases feature test isolation by reloading ORM data fixtures between scenarios and features.
Installation
composer require "behat-extension/doctrine-data-fixtures-extension"
Configuration
Activate extension in your behat.yml and define any fixtures to be loaded:
# behat.yml default: # ... extensions: BehatExtension\DoctrineDataFixturesExtension\Extension: lifetime: 'feature' autoload: true directories: ~ fixtures: ~
When lifetime is set to "feature" (or unspecified), data fixtures are reloaded between feature files. Alternately, when lifetime is set to "scenario", data fixtures are reloaded between scenarios (i.e., increased test isolation at the expense of increased run time).
When autoload is true, the extension will load the data fixtures for registered bundles.
Please note that only fixtures stored in the folder /DataFixtures/ORM
of the bundles are loaded.
If you want to load fixtures tagged with doctrine.fixture.orm
, you must enable the bundle BehatExtension\DoctrineDataFixturesExtension\Bundle\BehatDoctrineDataFixturesExtensionBundle
in your test AppKernel
class.
When fixtures is set, the DoctrineDataFixtures extension will load the specified fixture classes.
When directories is set, the DoctrineDataFixtures extension will load the data fixtures globed from the respective directories.
# behat.yml default: # ... extensions: BehatExtension\DoctrineDataFixturesExtension\Extension: lifetime: 'feature' autoload: true directories: - '/project/src/AcmeAnalytics/Tests/DataFixtures/ORM' fixtures: - 'Acme\StoreBundle\DataFixture\ORM\Categories' - 'Acme\StoreBundle\DataFixture\ORM\Apps' - 'Acme\VendorBundle\DataFixture\ORM\Vendors'
Backup System
To speed up the tests, a backup system is available. The whole database will be set in cache and reloaded when needed. You should periodically clear the cache as it does not detect changes to the data fixture contents because the hash is based on the collection of data fixture class names.
This feature is only available for the following SGDB: SQLite, MySQL, PostgreSQL.
It is enabled by default. To disable it, you just have to set use_backup: false
in the extension configuration:
# behat.yml default: # ... extensions: BehatExtension\DoctrineDataFixturesExtension\Extension: lifetime: 'feature' autoload: true use_backup: false
Source
Github: https://github.com/BehatExtension/DoctrineDataFixturesExtension
Forked from https://github.com/vipsoft/DoctrineDataFixturesExtension
Copyright
- Copyright (c) 2012 Anthon Pang.
- Copyright (c) 2016-2018 Florent Morselli.
See LICENSE for details.
Contributors
- Anthon Pang (robocoder)
- Florent Morselli (Spomky)
- Others contributors