7

我在 Yii2 中使用 Codeception 进行验收测试,并且无法访问我的模型,因为命名空间不适用于这些测试。

我的测试中有这个/_bootstrap.php

 require(__DIR__ . '/../vendor/autoload.php');
 require(__DIR__ . '/../vendor/yiisoft/yii2/Yii.php');

 $config = require(__DIR__ . '/../console/config/main.php');
 //
 $application = new yii\console\Application( $config );

 ## Added (@vitalik_74)
 Yii::setAlias('@tests', dirname(__DIR__));

这在我的控制台/配置/主

 <?php
 $params = array_merge(
     require(__DIR__ . '/params.php'),
     require(__DIR__ . '/params-local.php')
 );

 return [
     'id' => 'app-console',
     'basePath' => dirname(__DIR__),
     'bootstrap' => ['log'],
     'controllerNamespace' => 'console\controllers',
     'components' => [
         'log' => [
             'targets' => [
                 [
                     'class' => 'yii\log\FileTarget',
                     'levels' => ['error', 'warning'],
                 ],
             ],
         ],
     ],
     'params' => $params,
 ];

 <?php
 return [
     'adminEmail' => 'admin@example.com',
     'supportEmail' => 'support@example.com',
     'user.passwordResetTokenExpire' => 3600,
 ];

这是想要的测试之一:

 <?php namespace tests\acceptance;

 use \AcceptanceTester;
 use backend\models\User; ## I have tried writing it with a / at the beggining

class ListUserCest
{
public function _before(AcceptanceTester $I)
{

}

public function _after(AcceptanceTester $I)
{
}

public function init(AcceptanceTester $I)
{
    $this->login($I);

    if( User::find()->exists() )
        $I->amGoingTo('List Users having at least one');
    else
        $I->amGoingTo('List Users having any');
}

...

运行测试时出现此错误:

PHP 致命错误:在第 21 行的 /var/www/project/tests/acceptance/ListUserCest.php 中找不到类 'backend\models\User' 错误:找不到类 'backend\models\User'

请帮助我,我已经尝试了我所知道的一切

编辑

现在(在添加了 vitalik_74 推荐的行之后)我可以在测试中使用例如 \Yii 方法,但无需 Web 应用程序配置,只需控制台配置。我的意思是,我仍然不能使用 \backend\models\User 并且我也不能访问 Yii::$app->user 状态(例如,检查用户是否已登录)。

User 模型只是一个普通的 ActiveRecord 模型,带有他的 tableName、rules、attributeLabels 和一些关系方法,如 getProfile()。它适用于测试

<?php
namespace backend\models;
use common\helpers\MathHelper;
use backend\models\AntropometricData;
use Yii;

class User extends \yii\db\ActiveRecord
{
    /**
     * @inheritdoc
     */
    public static function tableName()
    {
        return 'user';
    }
...
4

1 回答 1

2

把下面的代码放到tests/_bootstrap.php:

require('vendor/autoload.php');
require('vendor/yiisoft/yii2/Yii.php');
$config = require('config/web.php');
(new yii\web\Application($config));
于 2016-04-29T09:27:39.470 回答