0

bake我已经使用 Cake命令为控制器创建了一个测试。

现在,我想测试控制器的功能“索引”,为此我这样做:

public function testIndex() {

   echo "printed";

   $result = $this->testAction("/comments/1");

   echo "not printed";

}

1 是参数,评论所在的帖子的 id。无论如何,控制器工作得很好,没有问题。

如您所见,调用 testAction 方法后测试崩溃。(它不打印第二个回声)

我已经看到,如果在控制器上调用的操作对其模型有任何调用,则 testAction 调用将不起作用。但是,如果要测试的操作没有调用任何模型,那么它可以完美运行。

这里发生了什么事?顺便说一句,default 和 test 两个数据库中都有数据,所以这也不是数据库的问题。

谢谢。

更新:这里有 Cake bake 命令生成的 testController 的其余部分:

<?php
/* Comments Test cases generated on: 2012-04-12 11:49:17 : 1334224157*/
App::uses('CommentsController', 'Controller');

/**
 * TestCommentsController *
 */
class TestCommentsController extends CommentsController {
/**
 * Auto render
 *
 * @var boolean
 */
    public $autoRender = false;

/**
 * Redirect action
 *
 * @param mixed $url
 * @param mixed $status
 * @param boolean $exit
 * @return void
 */
    public function redirect($url, $status = null, $exit = true) {
        $this->redirectUrl = $url;
    }
}

/**
 * CommentsController Test Case
 *
 */
class CommentsControllerTestCase extends CakeTestCase {
/**
 * Fixtures
 *
 * @var array
 */
    public $fixtures = array('app.comment');

/**
 * setUp method
 *
 * @return void
 */
    public function setUp() {
        parent::setUp();

        $this->Comments = new TestCommentsController();
        $this->Comments->constructClasses();

    }

/**
 * tearDown method
 *
 * @return void
 */
    public function tearDown() {
        unset($this->Comments);


        parent::tearDown();
    }
4

1 回答 1

1

当您测试控制器时,请确保扩展测试用例类ControllerTestCase以利用该testAction()方法。

于 2012-04-12T15:13:27.090 回答