命名空间不适用于 Codeception (Yii2)

问题描述 投票:0回答:1

我在 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' => '[email protected]',
     'supportEmail' => '[email protected]',
     '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” 错误:找不到类“后端\模型\用户”

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

编辑

现在(添加vitalik_74推荐的行后)我可以使用例如 \Yii 方法进行测试,但无需 Web 应用程序配置,只需控制台配置。 我的意思是,我仍然无法使用 ackend\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';
    }
...
php yii2 namespaces codeception psr-4
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));
© www.soinside.com 2019 - 2024. All rights reserved.