如何用夹具测试cake3插件

时间:2015-06-25 16:55:19

标签: php cakephp testing cakephp-3.0

我在尝试使用灯具测试插件时遇到了麻烦。

我在tests / Fixture下创建了fixtures文件,其结构为文档:

namespace Files\Test\Fixture;

use Cake\TestSuite\Fixture\TestFixture;

/**
 * FiledFixture
 *
 */
class FiledFixture extends TestFixture {

    /**
     * Table name
     *
     * @var string
     */
    public $table = 'filed';

    /**
     * Fields
     *
     * @var array
     */
    public $fields = [
        'id' => [
            'type' => 'integer',
            'length' => 11,
            ...
        ],
        'foreign_key' => [
            'type' => 'integer',
            ...
        ],
        ...
    ];

    /**
     * Records
     *
     * @var array
     */
    public $records = [
        [
            'id' => 1,
            'foreign_key' => 1,
            'file_id' => 1,
            'filedtype_id' => 1,
            'model' => 'Lorem ipsum dolor sit amet',
            'language' => 'Lore',
            'created' => '2014-11-01 19:21:54',
            'modified' => '2014-11-01 19:21:54'
        ],
    ];
}

然后在TestCase中我使用公共变量灯具加载灯具:

<?php
namespace Files\Test\TestCase\Model\Table;

use Cake\ORM\TableRegistry;
use Files\Model\Table\FiledTable;
use Cake\TestSuite\TestCase;

/**
 * Files\Model\Table\FiledTable Test Case
 */
class FiledTableTest extends TestCase {

    /**
     * Fixtures
     *
     * @var array
     */
    public $fixtures = [
        'plugin.files.filed',
        'plugin.files.files',
        'plugin.files.filedtypes',
        'plugin.files.thumbs'
    ];
...

当我尝试运行phpunit时,我收到下一个错误:

..Exception: Referenced fixture class "Files\Test\Fixture\FiledFixture" not found. Fixture "plugin.files.filed" was referenced in test case "Files\Test\TestCase\Model\Table\FiledTableTest". in [/home/genar/src/metropolitan-web-2015/vendor/cakephp/cakephp/src/TestSuite/Fixture/FixtureManager.php, line 180]

我尝试创建一个自定义bootstrap.php进行测试,但我无法确定那里有什么。我复制了这个https://github.com/Xety/Cake3-Upload/blob/master/tests/bootstrap.php,但它引发了很多错误。

我也使用Google搜索,但我找不到任何有关插件测试的信息,也没有关于官方文档的信息。

关于如何实现这一点的任何想法?

1 个答案:

答案 0 :(得分:1)

好吧,最后我说错误是在编译器自动加载器的生成方式上。我一直在寻找autoload_psr4.php运行composer dump-autoload时未添加我的Test \ Fixture \名称空间的方法。 所以我修复它的方法是在插件的composer.json上添加正确的行并运行composer update以生成自动加载。

当插件被安装在供应商下时,注意composer dump-autoload不会更新插件psr4路由。