簡體   English   中英

PHPUnit顯示達到的最大函數嵌套級別'100',正在中止

[英]PHPUnit displays Maximum function nesting level of '100' reached, aborting

我是單元測試的新手,我正努力讓工作成為第一次測試!

我兩次得到這個長錯誤:

    Fatal Error :Maximum function nesting level of '100' reached, aborting in
 C:\wamp\www\portailmg\dev\library\Zend\Test\PHPUnit\ControllerTestCase.php on line 27
    9

我的bootstrap.php:

   <?php

error_reporting( E_ALL | E_STRICT );
ini_set('display_startup_errors', 1);
ini_set('display_errors', 1);
date_default_timezone_set('Europe/London');



define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../applications/portail'));
define('APPLICATION_ENV', 'development');
define('LIBRARY_PATH', realpath(dirname(__FILE__) . '/../library'));
define('TESTS_PATH', realpath(dirname(__FILE__)));


$_SERVER['SERVER_NAME'] = 'http://localhost';

$includePaths = array(LIBRARY_PATH, get_include_path());
set_include_path(implode(PATH_SEPARATOR, $includePaths));

require_once 'Zend/Loader/Autoloader.php';
$loader = Zend_Loader_Autoloader::getInstance();



Zend_Session::$_unitTestEnabled = true;
Zend_Session::start();

我的phpunit.xml:

<phpunit bootstrap="./bootstrap.php" colors="false">
    <testsuite name="MyApp">
        <directory>./application/</directory>
        <directory>./library/</directory>
    </testsuite>
    <filter>
        <whitelist>
            <directory suffix=".php">../application</directory>
            <directory suffix=".php">../library/Custom</directory>
            <exclude>
                <directory suffix=".phtml">../application/views</directory>
                <file>../application/Bootstrap.php</file>
            </exclude>
        </whitelist>
    </filter>
    <logging>
        <log type="coverage-html" target="./log/coverage" charset="UTF-8"
             yui="true" highlight="false" lowUpperBound="35" highLowerBound="70"/>
    </logging>
</phpunit>

ControllerTestCase.php

<?php
class ControllerTestCase extends Zend_Test_PHPUnit_ControllerTestCase
{
    public $application;

    public function setUp()
    {
        $this->application = new Zend_Application(
            APPLICATION_ENV,
            APPLICATION_PATH . '\configs\application.ini'
        );

        $this->bootstrap = array($this, 'bootstrap');
        parent::setUp();

    }

    public function tearDown()
    {
        Zend_Controller_Front::getInstance()->resetInstance();
        $this->resetRequest();
        $this->resetResponse();

        $this->request->setPost(array());
        $this->request->setQuery(array());
    }

}
?>

HomeControllerTest.php

<?php

require_once 'application/ControllerTestCase.php';
require_once 'application/controllers/HomeControllerTest.php';

class HomeControllerTest extends ControllerTestCase
{
    public function testLoginAction()
    {
        $this->dispatch('/index/logincra'); //distribuer l'URL à tester en utilisant la méthode dispatch()
        $this->assertController('index'); //spécifie le controller à tester
        $this->assertAction('logincra'); //spécifie l'action à tester




        /*
            Assert against DOM selection; should contain exact number of nodes

            param: string $path CSS selector path
            param: string $count Number of nodes that should match
            param: string $message
            return: void
        */

        $this->assertQueryCount('div.login', 1);
    }

    public function testlogincraAction()
    {
        $this->getRequest()
        ->setMethod('POST')
        ->setPost(array("username" => "example@example.com",
                                       "password" => "password"));
        $this->dispatch('/index/logincra');

        $oLdap = new Mediagong_Ldap_Connect($_POST["username"], $_POST["password"]);

        $this->assertEquals($oLdap->isLoggin(), true);
        $this->assertRedirectTo('/index');
    }
}

樹狀:

dev
  applications
      portail  
         configs
         controllers
         layouts
         models
         services
         views
         Bootstrap.php
  htdocs
  ..
  ..
  tests
      application
        controllers
        controllerTestCase.php
      library
      log
      bootstrap.php
      phpunit.xml

在此先感謝您的幫助

如果您使用Xdebug,可能需要增加max_nesting_level 看看Xdebug手冊

xdebug.max_nesting_level

類型:整數,默認值:100

控制無限遞歸保護的保護機制。 此設置的值是在中止腳本之前允許的嵌套函數的最大級別。

只需將值添加到php.ini 根據您運行的測試數量及其復雜程度,我的情況大約為250。

一個簡單的解決方案解決了我 我剛才評論說:

“zend_extension =”d:/wamp/bin/php/php5.3.8/zend_ext/php_xdebug-2.1.2-5.3-vc9.dll“

在php.ini文件中。 此擴展將堆棧限制為100,因此我禁用了它。 遞歸函數現在正如預期的那樣工作。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM