20

使用 Smyfony2 和 Doctrin2,可以使用以下示例创建数据夹具:http: //symfony.com/doc/current/bundles/DoctrineFixturesBundle/index.html

我想要的是能够使用这个概念进行测试,以便 setup/teardown 可以为功能测试创建一个纯测试数据环境。如何在功能测试期间运行一组特定的仅测试夹具,以及如何将这些夹具与标准夹具分开,以便控制台命令忽略它们?

似乎这样做的方法是复制教义的功能:fixtures 控制台命令并将测试夹具存储在其他地方。有没有人有更好的解决方案?

4

2 回答 2

38

按目录拆分fixture 的另一种方法是使用自定义fixture 类。然后,您的夹具类将扩展此类并指定实际加载它的环境。

<?php

use Doctrine\Common\DataFixtures\FixtureInterface;
use Doctrine\Common\Persistence\ObjectManager;
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpKernel\KernelInterface;

/**
 * Provides support for environment specific fixtures.
 *
 * This container aware, abstract data fixture is used to only allow loading in
 * specific environments. The environments the data fixture will be loaded in is
 * determined by the list of environment names returned by `getEnvironments()`.
 *
 * > The fixture will still be shown as having been loaded by the Doctrine
 * > command, `doctrine:fixtures:load`, despite not having been actually
 * > loaded.
 *
 * @author Kevin Herrera <kevin@herrera.io>
 */
abstract class AbstractDataFixture implements ContainerAwareInterface, FixtureInterface
{
    /**
     * The dependency injection container.
     *
     * @var ContainerInterface
     */
    protected $container;

    /**
     * {@inheritDoc}
     */
    public function load(ObjectManager $manager)
    {
        /** @var KernelInterface $kernel */
        $kernel = $this->container->get('kernel');

        if (in_array($kernel->getEnvironment(), $this->getEnvironments())) {
            $this->doLoad($manager);
        }
    }

    /**
     * {@inheritDoc}
     */
    public function setContainer(ContainerInterface $container = null)
    {
        $this->container = $container;
    }

    /**
     * Performs the actual fixtures loading.
     *
     * @see \Doctrine\Common\DataFixtures\FixtureInterface::load()
     *
     * @param ObjectManager $manager The object manager.
     */
    abstract protected function doLoad(ObjectManager $manager);

    /**
     * Returns the environments the fixtures may be loaded in.
     *
     * @return array The name of the environments.
     */
    abstract protected function getEnvironments();
}

您的固定装置最终看起来像这样:

<?php

namespace Vendor\Bundle\ExampleBundle\DataFixtures\ORM;

use AbstractDataFixture;
use Doctrine\Common\Persistence\ObjectManager;

/**
 * Loads data only on "prod".
 */
class ExampleData extends AbstractDataFixture
{
    /**
     * @override
     */
    protected function doLoad(ObjectManager $manager)
    {
        // ... snip ...
    }

    /**
     * @override
     */
    protected function getEnvironments()
    {
        return array('prod');
    }
}

我相信这应该适用于 ORM 和 ODM 数据夹具。

于 2014-01-16T18:14:38.913 回答
17

最简单的方法是将您的灯具放入不同的文件夹,然后使用php app/console doctrine:fixtures:load --fixtures=../src/Acme/TestBundle/DataFixtures/ORM/test命令加载它们。固定装置选项必须指向应用文件夹的相对路径!

然后,您可以根据需要将数据拆分为初始数据、测试数据等,或者创建开发、测试、暂存、产品固定装置。

如果你想把它们混合起来,我不知道有什么比我做的更好的解决方案:我创建了一个“模板”文件夹,所有灯具都驻留在其中。在我的 dev 文件夹中,我创建了一个类,它扩展了正确的灯具类模板并调整需要调整的内容(如覆盖getOrder方法)。这并不完美,我想有人可以考虑扩展 fixtures:load 命令以采用多条路径,但它对我有用。

于 2012-08-05T17:50:01.667 回答