Zend框架2如何单元测试原则2实体



所以我在Zend Framework中使用了Doctrine 2模块。我让所有东西都在控制器中工作。我可以做:

use ModuleNameEntityUser;

然后在控制器操作中:

$user = new User;
$user->username = 'john.doe';
$user->password = md5('password');
$this->_getEntityManager()->persist($user);
$this->_getEntityManager()->flush();

而且它工作正常。将在数据库中创建一个新行。

当我在单元测试中尝试同样的事情时,我得到:

class_parents(): Class User does not exist and could not be loaded
/Users/richardknop/Projects/myproject/vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/RuntimeReflectionService.php:40
/Users/richardknop/Projects/myproject/vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/AbstractClassMetadataFactory.php:257

有什么想法吗?我对我的单元测试使用与我的应用程序相同的引导程序。在单元测试中,我扩展了PHPUnit_Framework_TestCase。

我像这样引导我的测试:

我已经在module/Something/tests设置了测试套件

运行测试.php

#!/usr/bin/env php
<?php
chdir(__DIR__);
$paths = array();
if ($argc > 1) {
    foreach ($argv as $key => $path) {
        if (!$key) continue;
        system('phpunit -c '. __DIR__ . DIRECTORY_SEPARATOR . 'phpunit.xml '. __DIR__ . DIRECTORY_SEPARATOR . $path, $result);
        echo $result;
    }
} else {
    system('phpunit -c '. __DIR__ . DIRECTORY_SEPARATOR . 'phpunit.xml '. __DIR__, $result);
    echo $result;
}

** phpunit.xml

<phpunit
    bootstrap="./Bootstrap.php"
    backupGlobals="false"
    backupStaticAttributes="false"
    cacheTokens="true"
    colors="true"
    convertErrorsToExceptions="true"
    convertNoticesToExceptions="true"
    convertWarningsToExceptions="true"
    forceCoversAnnotation="false"
    mapTestClassNameToCoveredClassName="false"
    processIsolation="false"
    stopOnError="false"
    stopOnFailure="false"
    stopOnIncomplete="false"
    stopOnSkipped="false"
    strict="false"
    verbose="true"
>
    <testsuites>
        <testsuite name="Module Test Suite">
            <directory>./</directory>
        </testsuite>
    </testsuites>
</phpunit>

测试配置.php

<?php
return array(
    'output_buffering' => false, // required for testing sessions
    'modules' => array(
        //'DoctrineModule',
        //'DoctrineORMModule',
        'Base',
    ),
    'module_listener_options' => array(
        'config_glob_paths' => array(
            'config/autoload/{,*.}{global,local}.php',
        ),
        'module_paths' => array(
            './module',
            './vendor',
        ),
    ),
);

助推拉普.php

<?php
use ZendServiceManagerServiceManager;
use ZendMvcMvcEvent;
use ZendMvcServiceServiceManagerConfig;
use BaseModuleTestTestCase;
error_reporting( E_ALL | E_STRICT );
chdir(__DIR__);
$configuration = @include __DIR__ . '/TestConfiguration.php';
if (isset($configuration['output_buffering']) && $configuration['output_buffering']) {
    ob_start(); // required to test sessions
}
spl_autoload_register('loadTestClass', true, false);
function loadTestClass($classname) {
    $file = __DIR__ . DIRECTORY_SEPARATOR . str_replace('\', DIRECTORY_SEPARATOR, $classname) . '.php';
    if (is_file($file) && is_readable($file)) {
        require_once $file;
    }
}

$previousDir = '.';
while (!file_exists('config/application.config.php')) {
    $dir = dirname(getcwd());
    if ($previousDir === $dir) {
        throw new RuntimeException(
            'Unable to locate "config/application.config.php":'
                . ' is DoctrineORMModule in a sub-directory of your application skeleton?'
        );
    }
    $previousDir = $dir;
    chdir($dir);
}
/////////////////////////////////////////////////////////////
require './module/Base/src/functions.php';
if  (!@include_once 'vendor/autoload.php') {
    throw new RuntimeException('vendor/autoload.php could not be found. Did you run `php composer.phar install`?');
}
$serviceManager = new ServiceManager(new ServiceManagerConfig(
    isset($configuration['service_manager']) ? $configuration['service_manager'] : array()
));
$serviceManager->setService('ApplicationConfig', $configuration);
$serviceManager->setFactory('ServiceListener', 'ZendMvcServiceServiceListenerFactory');
/** @var $moduleManager ZendModuleManagerModuleManager */
$moduleManager = $serviceManager->get('ModuleManager');
$moduleManager->loadModules();
$serviceManager->setAllowOverride(true);
$application = $serviceManager->get('Application');
$event  = new MvcEvent();
$event->setTarget($application);
$event->setApplication($application)
    ->setRequest($application->getRequest())
    ->setResponse($application->getResponse())
    ->setRouter($serviceManager->get('Router'));

最新更新