在本文中,笔者将为大家介绍
phpunit中的两个高级概念和用法,尽管它不一定在你的日常单元测试中都用到,但理解和学会它们的用法对学习phpunit还是十分重要的。
phpunit中的annotations
如果有其他编程语言经验的开发者,应该对annotations(注解)不陌生,其实在phpunit中,一个简单的如下面的一段注释也可以认为是annotations:
#div_code img{border:0px;}
<?php
class mytestclass extends phpunit_framework_testcase
{
/**
* testing the answer to “do you love unit tests?”
*/
public function testdoyouloveunittests()
{
$love = true;
$this->asserttrue($love);
}
}
?>
可以看到,其实一段以/** **/为标记的文字,就可以认为是一种annotations,但annotations其实不单单是简单的注释,它是与一个程序元素相关联信息或者元数据的标注,它不影响程序的运行,但相关的软件工具或框架能够将其转换成特殊的元数据标记,以方便开发者以更少的代码去提高效率(比如通过。如果你熟悉java,则会发现在java se 5中及象spring等框架中,都大量使用了annotations。
然而,由于php并不象java那样是编译性语言,因此本身缺乏去解析annotations的机制,但幸好phpunit去提供了这样的功能,我们以下面的代码为例:
#div_code img{border:0px;}
<?php
class mymathclass
{
/**
* add two given values together and return sum
*/
public function addvalues($a,$b)
{
return $a+$b;
}
}
?>
上面的只是一个简单的加法的例子,为此,我们使用annotations去编写一个单元测试,在上两篇文章中,我们采用的是手工编写单元测试的方法,而本文中,将介绍使用phpunit命令行的方法,自动生成单元测试的框架,方法如下:
首先把上面的类保存为mymathclass.php,然后在命令行下运行如下命令:
#div_code img{border:0px;}
phpunit –skeleton-test mymathclass
这时phpunit会自动生成如下的框架单元测试代码:
#div_code img{border:0px;}
<?php
require_once '/path/to/mymathclass.php';
/**
* test class for mymathclass.
* generated by phpunit on 2011-02-07 at 12:22:07.
*/
class mymathclasstest extends phpunit_framework_testcase
{
/**
* @var mymathclass
*/
protected $object;
/**
* sets up the fixture, for example, opens a network connection.
* this method is called before a test is executed.
*/
protected function setup()
{
$this->object = new mymathclass;
}
/**
* tears down the fixture, for example, closes a network connection.
* this method is called after a test is executed.
*/
protected function teardown()
{
}
/**
* @todo implement testaddvalues().
*/
public function testaddvalues()
{
// remove the following lines when you implement this test.
$this->marktestincomplete(
'this test has not been implemented yet.'
);
}
}
?>
可以看到,phpunit为我们生成的单元测试代码自动引入了原来的mymathclass.php,同时也生成了setup和teardown方法,但唯一的核心单元测试代码是留给了我们编写。如果想在这个基础上更快速的生成我们想要的单元测试代码,要如何实现呢?没错,就是使用annotations!我们可以在原来的mymathclass.php中加入如下的annotations。
#div_code img{border:0px;}
<?php
class mymathclass
{
/**
* add two given values together and return sum
* @assert (1,2) == 3
*/
public function addvalues($a,$b)
{
return $a+$b;
}
}
?>
然后再象上述一样在命令行运行:
#div_code img{border:0px;}
phpunit –skeleton-test mymathclass
这个时候会为我们生成如下的单元测试代码:
#div_code img{border:0px;}
<?php
/**
* generated from @assert (1,2) == 3.
*/
public function testaddvalues()
{
$this->assertequals(
3,
$this->object->addvalues(1,2)
);
}
?>
看到了么?我们在原有的类中加入了注解@assert(1,2)==3,则phpunit自动为我们生成了正确的单元测试代码。当然,可以参考phpunit手册,学习到更多的关于@assert注解使用的规则。
下面再举一个例子来讲解annotations。假设我们的程序中的一个方法,只是仅需要数据的输入,并且不依赖xml或者数据库提供数据源,则为了测试这个方法,我们可能想到的一个方法是在程序中设置一个测试数据集去测试,但这里介绍一个比较简单的方法,就是使用注解@dataprovider,修改mymathclass.php如下:
#div_code img{border:0px;}
<?php
/**
* data provider for test methods below
*/
public static function provider()
{
return array(
array(1,2,3),
array(4,2,6),
array(1,5,7)
);
}
/**
* testing addvalues returns sum of two values
* @dataprovider provider
*/
public function testaddvalues($a,$b,$sum)
{
$this->assertequals(
$sum,
$this->object->addvalues($a,$b)
);
}
?>
可以看到,这里使用了注解@dataprovider,指明了测试用例的数据提供者是由provider方法返回的一个数组。所以在单元测试时,数组中的第0个元素则会赋值给$a,第1个元素则会赋值给b,第3个元素则会赋值给sum,可以看到,上面的第3个数组提供的数据是不能通过单元测试的,因为1+5不等于7。
此外,这里还简单介绍两个常用的annotations,比如@expectedexception注解可以测试代码中是否正确抛出了异常,比如:
#div_code img{border:0px;}
<?phprequire_once 'phpunit/framework.php';
class exceptiontest extends phpunit_framework_testcase{
/**
* @expectedexception invalidargumentexception */
public function testexception() {
}
}
?>
这里就用注解的方法表示testexception中必须抛出的异常类型为invalidargumentexception。
另外一个是@cover注解。它的作用是标识phpunit只为类中的哪些方法或作用域生成测试代码,比如:
#div_code img{border:0px;}
/**
* @covers sampleclass::publicmethod
* @covers sampleclass::<!public>
* @covers helperclass<extended>
*/
public function testmethod()
{
$result = sampleclass::method();
}
则phpunit只为sampleclass类中的publicmethod方法、sampleclass类中的所有非public声明的方法和helperclass类或者它的其中一个父类产生单元测试代码。
12下一页阅读全文
评论列表:
发布于 3天前回复该评论
发布于 3天前回复该评论
发布于 3天前回复该评论
发布于 3天前回复该评论
发布于 2天前回复该评论
发布于 2天前回复该评论
发布于 2天前回复该评论
发布于 2天前回复该评论