2

呃,这个让我掉头发了……

我在 zf1 中做了一些有用的事情,现在我正在努力切换到 zf2,为了做正确的事情,我想完成 TDD 风格的事情。

我已经设置了 Skeleton 应用程序,然后制作了两个额外的模块,称为“天气”和“机场”。然后我为 WeatherController 做了一个测试用例,效果很好。比我为 Airport 模块中的模型制作了一个测试用例,但它失败了:

Fatal error: Class 'Airport\Model\Airport' not found in C:\xampp\htdocs...

,并在此处触发错误(AirportTableTest.php):

<?php

namespace AirportTest\Model;

use Airport\Model\Airport;
use Airport\Model\AirportTable;
use PHPUnit_Framework_TestCase;

class AirportTableTest extends PHPUnit_Framework_TestCase {   

    public function testExample() {
        $airport = new Airport(); // - this is not getting loaded and throws the fatal error :(
    }

}

该代码基于 ZF2 教程中的相册模块示例。AirportTable 模型应该连接数据库中的 SQL 表,Airport 模型的编写方式与教程中的 Album 模型相同。目录结构为(缩写):

/module
  /Airport
    /src
      /Airport
        /Controller
        /Model
          AirportTable.php
          Airport.php
  /Application
  /Weather
/public
/tests
  /module
    /Airport
      /src
        /Airport
          /Controller
          /Model
            AirportTableTest.php
            AirportTest.php
    /Application
    /Weather
  bootstrap.php
  phpunit.xml
/vendor

来自测试目录的 bootstrap.php :

<?php
chdir(dirname(__DIR__));
error_reporting(E_ALL | E_STRICT);
include __DIR__.'/../init_autoloader.php';

未加载类的 Airport.php :

<?php
namespace Airport\Model;

class Airport
{
    public $icao;
    public $lat;
    public $lng;
    public $metar;

    public function exchangeArray($data){
        $this->icao = (isset($data['id'])) ? $data['icao'] : null;
        $this->lat = (isset($data['lat'])) ? $data['lat'] : null;
        $this->lng  = (isset($data['lng'])) ? $data['lng'] : null;
        $this->metar = (isset($data['metar'])) ? $data['metar'] : null;
    }
}
?>

机场模块的 Module.php :

<?php
namespace Airport;

use Airport\Model\Airport;
use Airport\Model\AirportTable;
use Zend\Db\ResultSet\ResultSet;
use Zend\Db\TableGateway\TableGateway;

class Module
{
    public function getConfig()
    {
        return include __DIR__ . '/config/module.config.php';
    }

    public function getAutoloaderConfig()
    {
        return array(
            'Zend\Loader\StandardAutoloader' => array(
                'namespaces' => array(
                    __NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
                ),
            ),
        );
    }

    public function getServiceConfig()
    {
        return array(
            'factories' => array(
                'Airport\Model\AirportTable' =>  function($sm) {
                    $tableGateway = $sm->get('AirportTableGateway');
                    $table = new AirportTable($tableGateway);
                    return $table;
                },
                'AirportTableGateway' => function ($sm) {
                    $dbAdapter = $sm->get('Zend\Db\Adapter\Adapter');
                    $resultSetPrototype = new ResultSet();
                    $resultSetPrototype->setArrayObjectPrototype(new Airport());
                    return new TableGateway('airport', $dbAdapter, null, $resultSetPrototype);
                },
            ),
        );
    }

}

所以我可能遗漏了一些非常明显的东西,比如可能与自动加载器相关的东西?所以,嗯...帮助也许(非常拜托)?

4

2 回答 2

1

Sooo,我想出了一个可行的解决方案,尽管我不太确定它是聪明的还是完全迟钝的。

基于PHPUnit 和 Zend Framework 2 模块,我添加了这一行

Zend\Mvc\Application::init(include '/../config/application.config.php');

到测试套件的 bootstrap.php ,现在一切都按预期工作,但是我不知道为什么它会在“天气”模块而不是“机场”模块没有这条线的情况下工作......

于 2013-05-01T09:47:08.810 回答
0

您可能想看看 ZF2 入门教程如何布置测试。我已完成本教程并将更改提交到我自己的 ZF2 骨架应用程序源分支

基本上,每个模块都有自己的测试套件,有一个带有配置的专用 Bootstrap 文件和一个phpunit.xml告诉 PHPUnit 在你运行测试时加载所有这些(只要你在运行时位于测试目录中phpunit)。这有助于保持测试模块化。

于 2013-05-03T01:43:06.177 回答