symfony4:如何配置dataFixture写入测试数据库

时间:2018-06-29 14:00:38

标签: unit-testing doctrine symfony4

我想通过DataFixtures将单元测试的测试数据加载到测试数据库中。 该文档说,如果我设置了环境变量,则应该使用测试数据库:

$ php bin/console doctrine:fixtures:load --env=test
Careful, database will be purged. Do you want to continue y/N ?y
  > purging database
  > loading App\DataFixtures\PropertyFixtures
  > loading App\DataFixtures\UserFixtures
  > loading App\DataFixtures\UserPropertyFixtures

但是,如果我检查数据是否存储在默认数据库中。

我在哪里用symfony 4配置测试数据库?

我应该在哪里配置它,以便DataFixtures知道在哪里写?

对于功能测试,我在phpunit.xml中配置了数据库设置

1 个答案:

答案 0 :(得分:0)

我们要做的是解决以下问题。我不知道这是否是一个好方法,所以仍然可以选择其他解决方案。

../ config / packages中有文件doctrine.yaml

我将文件复制到./config/packages/test文件夹中,并按以下方式进行编辑:

parameters:
    # Adds a fallback DATABASE_URL if the env var is not set.
    # This allows you to run cache:warmup even if your
    # environment variables are not available yet.
    # You should not need to change this value.
    env(DATABASE_URL): ''

doctrine:
    dbal:
        # configure these for your database server
        driver: 'pdo_mysql'
        server_version: '5.7'
        charset: utf8
        default_table_options:
            charset: utf8
            collate: utf8_unicode_ci

        url: mysql://%db_user_test%:%db_password_test%@%db_host_test%:%db_port_test%/%db_name_test%
    orm:
        auto_generate_proxy_classes: '%kernel.debug%'
        naming_strategy: doctrine.orm.naming_strategy.underscore
        auto_mapping: true
        mappings:
            App:
                is_bundle: false
                type: annotation
                dir: '%kernel.project_dir%/src/Entity'
                prefix: 'App\Entity'

所以我更改的是url:mysql ....

在我的参数中,我添加了参数db_user_test等,并使用它们连接到测试数据库。

它可以工作,但是我仍然不确定是否应该这样做。