文章转自 Zhipeng JIANG 的博客, http://jesusjzp.github.io/blog/2013/08/21/symfony2-test/
测试示例
先上一段代码,然后再讲讲具体代码做了什么。
- <?php
- use atoum\AtoumBundle\Test\Controller;
- /******************************************
- * ATOUM TESTS
- * To run them :
- * cd /path/to/the/project/
- * php app/console atoum BundleName
- *****************************************/
- class FolderController extends Controller\ControllerTest
- {
- private $userName = "unknown";
- public function setUp()
- {
- // delete all the data stored in Mongo for this test
- }
- public function beforeTestMethod($testMethod)
- {
- // do something before each test method
- }
- public function testFolderCanBeCreated()
- {
- $client = $this->createClient();
- $client->request('POST', '/folders', array('title' => $title, 'abstract' => $abstract, 'idp' => ''));
- $response = $client->getResponse();
- $this->integer($response->getStatusCode())
- ->isEqualTo(200)
- ->string($response->headers->get('Content-Type'))
- ->isEqualTo('application/json');
- $json = json_decode($response->getContent(), true)[0];
- // var_dump($json);
- $this->string($json['title'])->isEqualTo($title);
- $this->string($json['abstract'])->isEqualTo($abstract);
- $this->string($json['owner'])->isEqualTo($this->userName);
- }
-
use
和namespace
这两个部分根据实际情况自己决定,注意,use atoum\AtoumBundle\Test\Controller;
是一定要添加的。 -
extends Controller\ControllerTest
不要忘记添加,这里包含了所有的断言语句的实现。 -
跟一般的测试工具类似,这里也包括了
setUp()
函数和tearDown()
函数,注意,这两个函数不是必须的。在atoum里,还有一个是beforeTestMethod()
和afterTestMethod()
函数,同样,这两个函数也不是必须的,但他们的功能与之前两个不同。一般的测试流程如下:setUp() beforeTestMethod() testXXXXXXXX() afterTestMethod() beforeTestMethod() testYYYYYYYY() afterTestMethod() ... tearDown()
-
在具体的测试函数里,首先需要create一个client出来,用来给api发送request,一般的request分成四种,分别是
GET
,POST
,PUT
和DELETE
,分别对应了查增改删。 -
在request函数中,第二个参数是api的route,第三个参数是api需要传入的参数,用array传进去。
-
atoum的断言语句比较多,这里通常用到的有以下几个:
- // 判断整数值知否相等,大于,大于等于,...
- $this->integer($a)->isEqualTo($b);
- $this->integer($a)->isGreaterThan($b);
- // 判断字符串是否相等
- $this->string($a)->isEqualTo($b);
- // 判断布尔值
- $this->boolean($a)->isTrue();
- $this->boolean($a)->isFalse();
- Symfony2 (4) - atoum进行单元测试
- Symfony2 (3) - atoum进行单元测试
- Symfony2 (2) - NelmioApiDocBundle自动生成文档(译)
- Symfony2 (1) - 新建一个bundle
- Symfony2 (0) - installation and configuration
- phpunit test (1)