Zend Framework 2如何对Doctrine 2实体进行单元测试

时间:2012-09-15 20:58:30

标签: php doctrine-orm zend-framework2 phpunit

所以我在Zend Framework中使用Doctrine 2模块。我把所有东西都放在了控制器里面。我能做到:

use ModuleName\Entity\User;

然后在控制器动作中:

$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。

1 个答案:

答案 0 :(得分:4)

我正在尝试这样的测试:

我已在module/Something/tests

中设置了测试套件

生成-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>

<强> TestConfiguration.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',
        ),
    ),
);

<强> Boostrap.php

<?php

use Zend\ServiceManager\ServiceManager;
use Zend\Mvc\MvcEvent;
use Zend\Mvc\Service\ServiceManagerConfig;
use BaseModuleTest\TestCase;

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', 'Zend\Mvc\Service\ServiceListenerFactory');

/** @var $moduleManager \Zend\ModuleManager\ModuleManager */
$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'));