PHPUnit测试私有属性和方法功能示例
本文实例讲述了PHPUnit测试私有属性和方法功能。分享给大家供大家参考,具体如下:
一、测试类中的私有方法:
classSample { private$a=0; privatefunctionrun() { echo$a; } }
上面只是简单的写了一个类包含,一个私有变量和一个私有方法。对于protected和private方法,由于无法像是用public方法一样直接调用,所以在使用phpunit进行单测的时候,多有不便,特别是当一个类中,对外只提供少量接口,内部使用了大量private方法的情况。
对于protected方法,建议使用继承的方式进行测试,在此就不再赘述。而对于private方法的测试,建议使用php的反射机制来进行。话不多说,上代码:
classtestSample() { $method=newReflectionMethod('Sample','run'); $method->setAccessible(true);//将run方法从private变成类似于public的权限 $method->invoke(newSample());//调用run方法 }
如果run方法是静态的,如:
privatestaticfunctionrun() { echo'runisaprivatestaticfunction'; }
那么invoke函数还可以这么写:
$method->invoke(null);//只有静态方法可以不必传类的实例化
如果run还需要传参,比如:
privatefunctionrun($x,$y) { return$x+$y; }
那么,测试代码可以改为:
$method->invokeArgs(newSample(),array(1,2)); //array中依次写入要传的参数。执行结果返回3
【注意】:利用反射的方法测试私有方法虽好,但setAccessible函数是php5.3.2版本以后才支持的(>=5.3.2)
二、私有属性的get/set
说完了私有方法,再来看看私有属性,依旧拿Sample类作为例子,想要获取或设置Sample类中的私有属性$a的值可以用如下方法:
publicfunctiontestPrivateProperty() { $reflectedClass=newReflectionClass('Sample'); $reflectedProperty=$reflectedClass->getProperty('a'); $reflectedProperty->setAccessible(true); $reflectedProperty->getValue();//获取$a的值 $reflectedProperty->setValue(123);//给$a赋值:$a=123; }
上述方法对静态属性依然有效。
到此,是不是瞬间感觉测试私有方法或属性变得很容易了。
附:PHPunit测试私有方法(英文原文)
Thisarticleispartofaseriesontestinguntestablecode:
- Testingprivatemethods
- Testingcodethatusessingletons
- Stubbingstaticmethods
- Stubbinghard-codeddependencies
No,notthoseprivates.Ifyouneedhelpwiththose,thisbookmighthelp.
OnequestionIgetoverandoveragainwhentalkingaboutUnitTestingisthis:
"HowdoItesttheprivateattributesandmethodsofmyobjects?"
LetsassumewehaveaclassFoo:
bar=$this->doSomethingPrivate(); } privatefunctiondoSomethingPrivate() { return'blah'; } } ?>
Beforeweexplorehowprotectedandprivateattributesandmethodscanbetesteddirectly,letshavealookathowtheycanbetestedindirectly.
ThefollowingtestcallsthetestDoSomething()methodwhichinturncallsthedoSomethingPrivate()method:
assertEquals('blah',$foo->doSomething()); } } ?>
ThetestaboveassumesthattestDoSomething()onlyworkscorrectlywhentestDoSomethingPrivate()workscorrectly.ThismeansthatwehaveindirectlytestedtestDoSomethingPrivate().Theproblemwiththisapproachisthatwhenthetestfailswedonotknowdirectlywheretherootcauseforthefailureis.ItcouldbeineithertestDoSomething()ortestDoSomethingPrivate().Thismakesthetestlessvaluable.
PHPUnitsupportsreadingprotectedandprivateattributesthroughthePHPUnit_Framework_Assert::readAttribute()method.ConveniencewrapperssuchasPHPUnit_Framework_TestCase::assertAttributeEquals()existtoexpressassertionsonprotectedandprivateattributes:
assertAttributeEquals( 'baz',/*expectedvalue*/ 'bar',/*attributename*/ newFoo/*object*/ ); } } ?>
PHP5.3.2introducestheReflectionMethod::setAccessible()methodtoallowtheinvocationofprotectedandprivatemethodsthroughtheReflectionAPI:
setAccessible(TRUE); $this->assertEquals( 'blah',$method->invoke(newFoo) ); } } ?>
InthetestabovewedirectlytesttestDoSomethingPrivate().Whenitfailsweimmediatelyknowwheretolookfortherootcause.
IagreewithDaveThomasandAndyHunt,whowriteintheirbook"PragmaticUnitTesting":
"Ingeneral,youdon'twanttobreakanyencapsulationforthesakeoftesting(orasMomusedtosay,"don'texposeyourprivates!").Mostofthetime,youshouldbeabletotestaclassbyexercisingitspublicmethods.Ifthereissignificantfunctionalitythatishiddenbehindprivateorprotectedaccess,thatmightbeawarningsignthatthere'sanotherclassintherestrugglingtogetout."
So:Justbecausethetestingofprotectedandprivateattributesandmethodsispossibledoesnotmeanthatthisisa"goodthing".
参考文献:
http://php.net/manual/en/class.reflectionmethod.php
更多关于PHP相关内容感兴趣的读者可查看本站专题:《PHP错误与异常处理方法总结》、《php字符串(string)用法总结》、《PHP数组(Array)操作技巧大全》、《PHP运算与运算符用法总结》、《PHP网络编程技巧总结》、《PHP基本语法入门教程》、《php面向对象程序设计入门教程》及《php优秀开发框架总结》
希望本文所述对大家PHP程序设计有所帮助。