問題背景:單測中有個普遍性的問題,
被側類中的private方法無法直接呼叫
。小拽在處理過程中透過反射改變方法權限,進行單測
,分享一下,直接上程式碼。
簡單被測試類
產生一個簡單的被測類,只有個private方法。
<code><?php /** * 崔小涣单测的基本模板。 * * @author cuihuan * @date 2015/11/12 22:15:31 * @version $Revision:1.0$ **/ class MyClass { /** * 私有方法 * * @param $params * @return bool */ private function privateFunc($params){ if(!isset($params)){ return false; } echo "test success"; return $params; } }</code>
單測程式碼
<code><?php /*************************************************************************** * * $Id: MyClassTest T,v 1.0 PsCaseTest cuihuan Exp$ * **************************************************************************/ /** * 崔小涣单测的基本模板。 * * @author cuihuan * @date 2015/11/12 22:09:31 * @version $Revision:1.0$ **/ <strong>require</strong>_once ('./MyClass.php'); class MyClassTest extends PHPUnit_Framework_TestCase { const CLASS_NAME = 'MyClass'; const FAIL = 'fail'; protected $objMyClass; /** * @brief setup: Sets up the fixture, for example, opens a network connection. * * 可以看做phpunit的构造函数 */ public function setup() { date_default_timezone_set('PRC'); $this->objMyClass = new MyClass(); } /** * 利用反射,对类中的private 和 protect 方法进行单元测试 * * @param $strMethodName string :反射函数名 * @return ReflectionMethod obj :回调对象 */ protected static function getPrivateMethod($strMethodName) { $objReflectClass = new ReflectionClass(self::CLASS_NAME); $method = $objReflectClass->getMethod($strMethodName); $method->setAccessible(true); return $method; } /** * @brief :测试private函数的调用 */ public function testPrivateFunc() { $testCase = 'just a test string'; // 反射该类 $testFunc = self::getPrivateMethod('privateFunc'); $res = $testFunc->invokeArgs($this->objMyClass, array($testCase)); $this->assertEquals($testCase, $res); $this->expectOutputRegex('/success/i'); // 捕获没有参数异常测试 try { $testFunc->invokeArgs($this->transfer2Pscase, array()); } catch (<strong>Exception</strong> $expected) { $this->assertNotNull($expected); return true; } $this->fail(self::FAIL); } }</code>
運作結果
<code>cuihuan:test cuixiaohuan$ phpunit MyClassTest.php PHPUnit 4.8.6 by Sebastian Bergmann and contributors. Time: 103 ms, Memory: 11.75Mb OK (1 test, 3 assertions)</code>
關鍵程式碼分析
封裝了一個,被測類方法的反射呼叫;同時,回傳方法可以存取private的函數方法。
<code>/** * 利用反射,对类中的private 和 protect 方法进行单元测试 * * @param $strMethodName string :反射函数名 * @return ReflectionMethod obj :回调对象 */ protected static function getPrivateMethod($strMethodName) { $objReflectClass = new ReflectionClass(self::CLASS_NAME); $method = $objReflectClass->getMethod($strMethodName); $method->setAccessible(true); return $method; } </code>【轉載請註明:phpunit單測中呼叫private方法處理 | 靠譜崔小拽 】
以上就介紹了phpunit單測中呼叫private方法處理,包含了require,程式碼分析,Exception方面的內容,希望對PHP教學有興趣的朋友有幫助。