Yii2 +共骗:如何使用夹具?

sbtkgmzw  于 2022-11-09  发布在  其他
关注(0)|答案(4)|浏览(300)

我使用Codreceive为我的Yii 2应用程序编写了一个简单的测试。我不想使用真实的的MySQL数据库,而想使用fixture。
下面是代码:

  • 测试/个人测试.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 );
    }
}
  • 测试/夹具/数据/人员.php*
return [
    'person1' => [
        'id'            => 1,
        'firstname'     => 'Foo',
        'lastname'      => 'Bar',

    ],
];
  • 测试/夹具/人员.php*
namespace tests\fixtures;

use yii\test\ActiveFixture;

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

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

[错误]找不到类别'tests\fixture\PersonFixture'

我尝试了100种不同的方法,但是我不能让它工作。如果这个简单的例子对我有用,我可以创建真实的的测试。

hjqgdpho

hjqgdpho1#

使用Codreceive 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);
    }

}

就这样了。

oo7oh9g9

oo7oh9g92#

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
35g0bw71

35g0bw713#

您必须将夹具文件名从Person.php更改为PersonFixture.php,它将开始工作。

relj7zay

relj7zay4#

你必须使用yii2-codeception扩展,它会为你自动加载夹具。
安装后,您将拥有yii\codeception\DbTestCase类,PersonTest应该扩展它。
Person固定装置应具有如下命名空间:app\tests\fixtures .

相关问题