PHPUNIT Zend 框架如何模拟 Zend_Registry::set 仅针对第一个数据源项进行测试并为第二个取消设置?

Posted

技术标签:

【中文标题】PHPUNIT Zend 框架如何模拟 Zend_Registry::set 仅针对第一个数据源项进行测试并为第二个取消设置?【英文标题】:PHPUNIT Zend framework how mock Zend_Registry::set to be tested against 1st datasource item only and unset it for the 2nd? 【发布时间】:2021-01-17 08:02:09 【问题描述】:

我在使用 phpUNIT 和 Zend 框架创建这个 UT 时遇到了问题,我很新,我的第二个 UT...

这是要测试的函数:

这是 UT 的功能:

 protected function _functionToTest( $view ) 
    if($this->domagick)
        $view->details = array(
                   'important value' => Zend_Registry::get('importantvalue')
                   'Some String' => $this->_getZendHelper()
        );
    
    

注意 $this->_getZendHelper() 是引入 Zend_Registry::set('importantValue', '123'); 的函数;

第二个断言失败,我应该创建 2 个单独的测试吗?

有什么办法吗

Zend_Registry::set('importantValue', '123');

针对第一个数据提供者 (data1) 运行 然后在第二个 run 上禁用它?因为它应该是 Null,它正在创建一个数组而不是 null。

或者我应该以特定的方式模拟它?

我的测试代码:

   /** @dataProvider functionToTestDataProvider
   */

    public function testfunctionToTest($message, $siteMagicSettings, $expected)
    

// this is the value that is I cant understand how to "reset"
// for the second dataprovider test which expects null

        Zend_Registry::set('importantValue', '123');

        $myMockForDebug = $this->getMockBuilder('CLASS_Name_Jack')
            ->disableOriginalConstructor()
            ->setMethods(array('_getZendHelper, _functionToTest'))
            ->getMock();

        $myMockForDebug = $this->getPublicClass($myMockForDebug);
        $myMockForDebug->_siteMagicSettings = $siteMagicSettings;

        $myMockForDebug->expects($this->any())
            ->method('_getZendHelper')
            ->will($this->returnValue('hello world'));

        $zendFrameworkControllerFrontEndMockVariable= $this->getMockBuilder('Zend_Controller_Front')
            ->disableOriginalConstructor()
            ->setMethods(
                array(
                    'getMagicalContext';
                )
            )
            ->getMock();

        $myMockForDebug->_zendControllerFront = $zendFrameworkControllerFrontEndMock;
        $view = $myMockForDebug->_zendControllerFront;

        $myMockForDebug->_functionToTest($view);

        $this->assertEquals($expected , $view->details);
        $this->assertNull($expected , $view->details);


    

我的数据提供者:

    public function functionToTestDataProvider()
    
        return [
            'data1'=> [
                    'message' => 'Do magick is true so it should create expected',
                    'siteMagicSettings' => (object) array(
                        'values' => (object) array(
                            'doMagick'=> 'true'
                        )
                    ),
                    'expected' => array(
                            'important value' => '123',
                            'Some String' => 'hello world'
                    ),
                ],
            'data2'=> [
                    'message' => 'Do magick is turned off',
                    'siteMagicSettings' => (object) array(
                        'values' => (object) array(
                            'doMagick'=> 'false'
                        )
                    ),
                    'expected' => null
                ]
            ];
    

目前,当我运行测试时,我得到 1 个失败:

"data2" ('Do magick is turned off', stdClass, NULL)      
Array (...) does not match expected type "NULL".

【问题讨论】:

您是否考虑过将 Zend_Registry 中的值作为函数依赖项传递?此更改将使您忘记 Zend_Registry 并在测试中使用您希望使用的任何数据集并使代码更易于理解。 @SergioRinaudo 请你告诉我你会如何回答?这将是伟大的......或有参考的链接。 其实我不知道“_functionToTest”的代码,但主要概念是添加“importantValue”作为参数。而且我还会从参数中删除 Zend_View 实例并只返回一个稍后将分配给 $view 的数组。在实践中,建议是从 Zend_Registry 和 Zend_View 中分离“_functionToTest”。如果可以,请发布“_functionToTest”实际代码。 @SergioRinaudo 要测试的功能就在那里,它说“这是测试的功能”。非常感谢您的帮助,我从中学到了很多东西。 更新了代码,使其更加自我解释,缺少这样一个事实,即 $this->_getZendHelper() 是要测试的函数的一部分,并且是引入 Zend_Registry::set( 'importantValue', '123'); 【参考方案1】:

在所有的 cmets 之后,我将尝试为此做出一个答案。 在我看来,主要问题是您的测试方法与 Zend 组件耦合太多,不需要测试,它们已经被框架测试过

这就是我重构代码的方式

protected function _functionToTest($carData, $helperString) 
    return [
        'important value' => $carData
        'Some String' => $helperString
    ];


// ..and somewhere
$helperString = $this->_getZendHelper();
$view->details = $this->domagick ? $this->_functionToTest($this->car, $helperString) : [];

您的函数实际上只是创建一个数组。

【讨论】:

以上是关于PHPUNIT Zend 框架如何模拟 Zend_Registry::set 仅针对第一个数据源项进行测试并为第二个取消设置?的主要内容,如果未能解决你的问题,请参考以下文章

Zend Framework 2 & PHPUnit - 模拟 Zend\Db\Adapter\Adapter 类

ZF2 / PHPUnit:模拟 Zend/Db/Adapter/Adapter 以供进一步使用

Zend 框架 PhpUnit 测试错误由于在 null 上调用成员函数

如何配置代码-PHPUnit版本8.5.1对Zend Framework 2.4的覆盖范围?

如何在zend框架中设置cookie?

如何在 zend 框架 2 中呈现页面?