安装phpunit
使用 compor
安装 phpunit
#查看compor的全局bin目录 将其加入系统 path 路径 方便后续直接运行安装的命令compor global config bin-dir --absolute#全局安装 phpunitcompor global require --dev phpunit/phpunit#查看版本phpunit --version
使用compor构建你的项目
我们将新建一个unit
项目用于演示单元测试的基本工作流
创建项目结构
mkdir unit && cd unit && mkdir app tests reports#结构如下./├── app #存放业务代码├── reports #存放覆盖率报告└── tests #存放单元测试
使用compor构建工程
#一路回车即可compor init#注册命名空间vi compor.json... "autoload": { "psr-4": { "app\\": "app/", "tests\\": "tests/" } }...#更新命名空间compor dump-autoload#安装 phpunit 组件库compor require --dev phpunit/phpunit
到此我们就完成项目框架的构建,下面开始写业务和测试用例。
编写测试用例
创建文件app/example.php
这里我为节省排版就不写注释了
<?phpnamespace app;class example{ private $msg = "hello world"; public function gettrue() { return true; } public function getfal() { return fal; } public function tmsg($value) { $this->msg = $value; } public function getmsg() { return $this->msg; }}
创建相应的测试文件tests/exampletest.php
<?phpnamespace tests;u phpunit\framework\testca as batestca;u app\example;class exampletest extends batestca{ public function testgettrue() { $example = new example(); $result = $example->gettrue(); $this->asrttrue($result); } public function testgetfal() { $example = new example(); $result = $example->getfal(); $this->asrtfal($result); } public function testgetmsg() { $example = new example(); $result = $example->gettrue(); // $result is world not big_cat $this->asrtequals($result, "hello big_cat"); }}
执行单元测试
[root@localhost unit]# phpunit --bootstrap=vendor/autoload.php \tests/phpunit 6.5.14 by bastian bergmann and contributors...f 3 / 3 (100%)time: 61 ms, memory: 4.00mbthere was 1 failure:1) tests\exampletest::testgetmsgfailed asrting that 'hello big_cat' matches expected true./opt/unit/tests/exampletest.php:27/root/.config/compor/vendor/phpunit/phpunit/src/textui/command.php:195/root/.config/compor/vendor/phpunit/phpunit/src/textui/command.php:148failures!tests: 3, asrtions: 3, failures: 1.
这是一个非常简单的测试用例类,可以看到,执行了共3个测试用例,共3个断言,共1个失败,可以参照phpunit
手册学习更多高级用法。
代码覆盖率
代码覆盖率反应的是测试用例
对测试对象
的行,函数/方法,类/特质
的访问率是多霸气的签名少(php_占岁codecoverage
尚不支持 opcode覆盖率、分支覆盖率 及 路径覆盖率
),虽然有很多人认为过分看重覆盖率是不对的,但我们初入测试还是俗气的追求一下吧。
测试覆盖率的检测对象是我们的业务代码,phpunit通过检测我们编写的测试用例调用了哪些函数,哪些类,哪些方法,每一个控制流程是否都执行了一遍来计算覆盖率。
phpunit
的覆盖率依赖 xdebug
,可以生成多种格式:
--coverage-clover <file> generate code coverage report in clover xml format.--coverage-crap4j <file> generate code coverage report in crap4j xml format.--coverage-html <dir> generate code coverage report in html format.--coverage-php <file> export php_codecoverage object to file.--coverage-text=<file> generate code coverage report in text format.--coverage-xml <dir> generate code coverage report in phpunit xml format.
同时需要使用 --whitelist dir
参数来设定我们需要检测覆盖率的业务代码路径,下面演示一下具体操作:
phpunit \--bootstrap vendor/autoload.php \--coverage-html=reports/ \--whitelist app/ \tests/#查看覆盖率报告cd reports/ && php -s 0.0.0.0:8899
这样我们就对业务代码app\example
做单元测试,并且获得我们单元测试的代码覆盖率,现在自然是百分之百,因为我的测试用例已经访问了app\example
的所有方法,没有遗漏的,开发中则能体现出你的测试时用力对业务代码测试度的完善性。
基境共享测试数据
可能你会发现我们在每个测试方法中都创建了app\example
对象,在一些场景下是重复劳动,为什么不能只创建一次然后供其他测试方法访问呢?这需要理解 phpunit 执行测试用例的工作流程。
我们没有办法在不同的测试方法
中通过某成员属性
来传递数据,因为每个测试方法
的执行都是新建
一个测试类对象
,然后调用相应的测试方法
。
即测试的执行模式并不是
testobj = new exampletest();testobj->testmethod1();testobj->testmethod2();
而是
testobj1 = new exampletest();testobj1->testmethod1();testobj2 = new exampletest();testobj2->testmethod2();
所以testmethod1()
修改的属性状态
无法传递给 testmethod2()
使用。
phpunit
则为我们提供了全面的hook
接口:
public static function tupbeforeclass()/teardownafterclass()//测试类构建/解构时调用protected function tup()/teardown()//测试方法执行前/后调用protected function asrtpreconditions()/asrtpostconditions()//断言前/后调用
当运行测试时,每个测试类大致就是如下的执行步骤
#测试类基境构建tupbeforeclass#new一个测试类对象#第一个测试用例tupasrtpreconditionsasrtpostconditionsteardown#new一个测试类对象#第二个测试用例tupasrtpreconditionsasrtpostconditionsteardown...#测试类基境解构teardownafterclass
所以我们可以在测试类构建时使用tupbeforeclass
创建一个 app\example
对象作为测试类的静态成员变量(teardownafterclass
主要用于一些资源清理,比如关闭文件,数据库连接),然后让每一个测试方法用例使用它:
<?phpnamespace tests;u app\example;u phpunit\framework\testca as batestca;class exampletest extends batestca{ // 类静态属性 private static $example; public static function tupbeforeclass() { lf::$example = new example(); } public function testgettrue() { // 类的静态属性更新 lf::$example->tmsg("hello big_cat"); $result = lf::$example->gettrue(); $this->asrttrue($result); } public function testgetfal() { $result = lf::$example->getfal(); $this->asrtfal($result); } /** * 依赖 testgettrue 执行完毕 * @depends testgettrue * @return [type] [description] */ public function testgetmsg() { $result = lf::$example->getmsg(); $this->asrtequals($result, "hello big_cat"); }}
或者使用@depends
注解来声明二者的执行顺序,并使用传递参数
的方式来满足需求。
public function testmethod1(){ $this->asrttrue(true); return "hello";}/** * @depends testmethod1 */public function testmethod2($str){ $this->asrtequals("hello", $str);}
#执行模式大概如下testobj1 = new test;$str = testobj1->testmethod1();testobj2 = new test;testobj2->testmethod2($str);
理解测试执行的模式还是很有帮助的,其他高级特性请浏览官方文档。
使用phpunit.xml编排测试套件
使用测试套件来管理测试,vi phpunit.xml
:
<?xml version="1.0" encoding="utf-8"?><phpunit backupglobals="fal" backupstaticattributes="fal" bootstrap="./vendor/autoload.php" colors="true" converterrorstoexceptions="true" convertnoticestoexceptions="true" convertwarningstoexceptions="true" processisolation="fal" stoponfailure="fal"> <testsuites> &l升旗手发言稿t;!--可以定义多个 suffix 用于指定待执行的测试类文件后缀--> <testsuite name="tests"> <directory suffix="test.php">./test</directory> </testsuite> </testsuites> <filter> <whitelist processuncoveredfilesfromwhitelist="true"> <!--可以定义多个 对./app下的业务代码做覆盖率统计--> <directory suffix=".php">./app</directory> </whitelist> </filter> <logging> <!--覆盖率报告生成类型和输出目录 lo比尾巴儿歌wupperbound低覆盖率阈值 highlowerbound高覆盖率阈值--> <log type="coverage-html" target="./reports" lowupperbound="35" highlowerbound="70"/> </logging></phpunit>
然后直接运phpunit
行即可:
[root@localhost unit]# phpunit phpunit 6.5.14 by bastian bergmann and contributors.time: 81 ms, memory: 4.00mbno tests executed!generating code coverage report in html form赔偿at ... done
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持www.887551.com。
本文发布于:2023-04-06 14:58:31,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/0964c3f20947d06ce073d8b5e3abc857.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:使用PHPUnit进行单元测试并生成代码覆盖率报告的方法.doc
本文 PDF 下载地址:使用PHPUnit进行单元测试并生成代码覆盖率报告的方法.pdf
留言与评论(共有 0 条评论) |