Yii2 + Codeception:如何使用灯具?

时间:2017-04-11 15:39:13

标签: unit-testing yii yii2 codeception fixtures

我使用Codeception为我的Yii2应用程序编写了一个简单的测试。我没有使用真正的MySQL数据库,而是想使用fixtures。

以下是代码:

测试/ PersonTest.php

namespace app\tests\unit\models;

use tests\fixtures;
use app\controllers;

class PersonTest extends \Codeception\Test\Unit
{
    protected $tester;
    public $appConfig = '@app/config/main.php';

    protected function _before(){ }
    protected function _after(){ }

    public function _fixtures()
    {
        return [ 'Person' => fixtures\PersonFixture::className() ];
    }

    public function testUser(){
        $person = Person::findOne( [ "id" => 1 ] );
        $userId = isset( $person->id ) ? $person->id : false;
        $this->assertEquals( 1, $userId );
    }
}

测试/装置/数据/ Person.php

return [
    'person1' => [
        'id'            => 1,
        'firstname'     => 'Foo',
        'lastname'      => 'Bar',

    ],
];

测试/装置/ Person.php

namespace tests\fixtures;

use yii\test\ActiveFixture;

class PersonFixture extends ActiveFixture
{
    public $modelClass = 'app\models\Person';
}

当我运行测试时,我得到错误:

[错误] Class' tests \ fixtures \ PersonFixture'找不到

我尝试了100种不同的东西,但我不能让它发挥作用。如果这个简单的例子对我有用,我可以创建真正的测试。

3 个答案:

答案 0 :(得分:0)

使用Codeception 2.3.8,您可以这样做:

定义你的灯具(和你的问题中的数据文件一样)

namespace app\tests\fixtures;

class PersonFixture extends \yii\test\ActiveFixture {

    public $modelClass = 'app\models\Person';

}

编写测试

namespace app\tests\unit;

class PersonTest extends \Codeception\Test\Unit {

    public function _fixtures() {
        return [
            'persons'   => 'app\tests\fixtures\PersonFixture',
        ];
    }

    public function testUser() {
        $person1 = $this->tester->grabFixture('persons', 'person1');
        $this->assertEquals(1, $person1->id);
    }

}

那就是它。

答案 1 :(得分:0)

with codeception 4.0.3 you can run your fixture by following the steps...
create fixtures folder inside test
[fixture folder][1]

  [1]: https://i.stack.imgur.com/uK9Cy.png
inside your fixtures/data/book.php

<?php
return [
    'book1' => [
        'title' => 'lmayert',
        'isbn' => 'Ibn-098',
    ],
    'user2' => [
        'title' => 'napoleon69',
        'isbn' => 'Ibn-042',        
    ],
];

your fixtures/BookFixture be like this:

<?php

namespace app\tests\fixtures;

use yii\test\ActiveFixture;

/**
 * 
 */
class BookFixture extends ActiveFixture
{
    public $modelClass = 'app\models\Book';
}

Now the tests/unit/BookTest be like this

<?php 
use app\tests\unit\fixtures\BookFixture;
class BookTest extends \Codeception\Test\Unit
{
    /**
     * @var \UnitTester
     */
    protected $tester;

    protected function _before()
    {
    }

    protected function _after()
    {
    }

    public function _fixtures() {
        return [
            'books' => 'app\tests\fixtures\BookFixture',
        ];
    }
    // tests
    public function testBook()
    {
        $book1 = $this->tester->grabFixture('books','book1');
        $this->assertEquals(1,$book1->id);
    }
}

I hope this will help

答案 2 :(得分:-1)

你必须使用GROUP BY <content_id>扩展名为你自动加载灯具。

安装完成后,您可以使用课程yii2-codeceptionyii\codeception\DbTestCase可以扩展它。

人物夹具应具有如下命名空间:PersonTest