drci47425 2014-01-22 10:36 采纳率: 100%
浏览 33
已采纳

PHPUnit - 如何模拟/存根重定向方法?

I am working on a PHP Unit test where I need to test (while 100% code coverage is required) a class that implements it's own redirect($url, $code) method. This method calls exit; at the end to make sure no other code is executed after the redirect (and without this exit; the redirection is not done in the end...).

Now this redirect method is called in 7 different conditions which all have their own unit test case. If I run the unit tests while the exit; is present in the tested class, the unit tests are exited as well. Each of the test cases is testing something like:

$this->assertRedirect();
$this->assertResponseStatusCode(401);

Therefore I need to stub the redirect method so that it set's the Location header as well as the status code.

Here is what I am trying to do (using the redirect method's content except that exit; part - but it is not working obviously):

    $this->class = $this->getMockBuilder('Some\Name\Space\Class')
            ->disableOriginalConstructor()
            ->getMock();
    $this->class->expects($this->any())
            ->method('redirect')
            ->will($this->returnCallback(function () {
                $this->response->getHeaders()->addHeaderLine('Location: /');
                $this->response->setStatusCode(401);
                $this->response->sendHeaders();
            }));

and what I have tried before (and didn't work as well):

    $this->class = $this->getMockBuilder('Some\Name\Space\Class')
            ->disableOriginalConstructor()
            ->getMock();
    $this->class->expects($this->any())
            ->method('redirect')
            ->will($this->returnCallback(function () {
                header('Location: /');
            }));

Now the purpose of the class is to redirect somewhere in 90% of code coverage (only in one case - 2 lines out of 90 - it is not redirecting) so without the possibility to stub this redirect (and without possibility to test redirects at all) the test cases would not have almost any sense for this class (which is unwilling).

Any help is highly appreciated.

EDIT: Looks like phpunit/test_helpers could do the trick, but unfortunately, I am not able to install this extension to our preview and production environments where the tests are automatically run per each application deploy.

  • 写回答

1条回答 默认 最新

  • duangua5308 2014-01-22 13:44
    关注

    OK, I figured the problem out: because the application is an MVC architecture, the exit; called in during the dispatch was a bad approach.

    Instead of it, after the response headers are set correctly (in order to redirect) I am returning false all the way up until it is returned back to the dispatch process. In this case I do not need to call exit; anymore.

    Unit test for this case is running smoothly without any changes needed (it was implemented before the exit; call in the tested class).

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?