# 单元测试(Unit testing)
适当的测试有帮于更好的编写软件。如果你设置了适当的测试用例,可以消除大多数功能性的错误,并且更好地维护你的软件。
## 整合 PHPunit 到 phalcon(Integrating PHPunit with phalcon)
如果你还没有安装好 phpunit,可以使用以下 composer 命令:
~~~
composer require phpunit/phpunit:^5.0
~~~
或者手动添加 composer.json:
~~~
{
"require-dev": {
"phpunit/phpunit": "^5.0"
}
}
~~~
phpunit 安装后将会在你的根目录创建一个名为 ‘tests’ 的目录:
~~~
app/
public/
tests/
~~~
接下来,我们需要用一个 ‘helper’ 文件来引导单元测试程序。
## PHPunit 辅助文件(The PHPunit helper file)
需要使用 helper 文件来引导运行测试程序。我们预先准备好一个示例文件,将该文件放到 tests/ 目录下并命名为 TestHelper.php
~~~
<?php
use Phalcon\Di;
use Phalcon\Di\FactoryDefault;
use Phalcon\Loader;
ini_set("display_errors", 1);
error_reporting(E_ALL);
define("ROOT_PATH", __DIR__);
set_include_path(
ROOT_PATH . PATH_SEPARATOR . get_include_path()
);
// Required for phalcon/incubator
include __DIR__ . "/../vendor/autoload.php";
// Use the application autoloader to autoload the classes
// Autoload the dependencies found in composer
$loader = new Loader();
$loader->registerDirs(
[
ROOT_PATH,
]
);
$loader->register();
$di = new FactoryDefault();
Di::reset();
// Add any needed services to the DI here
Di::setDefault($di);
~~~
你需要从自己的 library 类库中测试组件,将它们添加到 autoloader 加载器或在主程序中使用 autoloader 加载器。
为了更好地帮助你构建单元测试,我们写了一些抽象的类库,你可以使用这些抽象类来引导单元测试。 这些文件在 @[https://github.com/phalcon/incubator](https://github.com/phalcon/incubator).
你可以添加 incubator 依赖库:
~~~
composer require phalcon/incubator
~~~
或手动添加到 composer.json:
~~~
{
"require": {
"phalcon/incubator": "^3.0"
}
}
~~~
你也可以使用链接克隆仓库。
## PHPunit.xml 文件(PHPunit.xml file)
现在,创建一个 phpunit 文件:
~~~
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./TestHelper.php"
backupGlobals="false"
backupStaticAttributes="false"
verbose="true"
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="true">
<testsuite name="Phalcon - Testsuite">
<directory>./</directory>
</testsuite>
</phpunit>
~~~
按照你的需求修改 phpunit.xml 然后保存到 tests/ 目录。
你将在 tests/ 目录运行所有测试。
## 简单的单元测试(Sample unit test)
要运行任何单元测试,你要事先定义好。autoloader 加载器将确保正确的文件被加载进来,所以你需要做的是创建文件然后 phpunit 运行测试。
该示例不包含配置文件,但大多数测试用例都需要配置文件,你可以将它添加到 DI 得到 UnitTestCase 文件。
首先在 /tests 目录创建一个 UnitTestCase.php 基本单元测试:
~~~
<?php
use Phalcon\Di;
use Phalcon\Test\UnitTestCase as PhalconTestCase;
abstract class UnitTestCase extends PhalconTestCase
{
/**
* @var bool
*/
private $_loaded = false;
public function setUp()
{
parent::setUp();
// Load any additional services that might be required during testing
$di = Di::getDefault();
// Get any DI components here. If you have a config, be sure to pass it to the parent
$this->setDi($di);
$this->_loaded = true;
}
/**
* Check if the test case is setup properly
*
* @throws \PHPUnit_Framework_IncompleteTestError;
*/
public function __destruct()
{
if (!$this->_loaded) {
throw new \PHPUnit_Framework_IncompleteTestError(
"Please run parent::setUp()."
);
}
}
}
~~~
独立命名空间的单元测试是一个很好的主意,对于这个测试创建命名空间 ‘Test’,即创建一个文件名为 testsTestUnitTest.php:
~~~
<?php
namespace Test;
/**
* Class UnitTest
*/
class UnitTest extends \UnitTestCase
{
public function testTestCase()
{
$this->assertEquals(
"works",
"works",
"This is OK"
);
$this->assertEquals(
"works",
"works1",
"This will fail"
);
}
}
~~~
你现在可以在命令行 tests 目录执行 ‘phpunit’ 得到以下输出:
~~~
$ phpunit
PHPUnit 3.7.23 by Sebastian Bergmann.
Configuration read from /private/var/www/tests/phpunit.xml
Time: 3 ms, Memory: 3.25Mb
There was 1 failure:
1) Test\UnitTest::testTestCase
This will fail
Failed asserting that two strings are equal.
--- Expected
+++ Actual
@@ @@
-'works'
+'works1'
/private/var/www/tests/Test/UnitTest.php:25
FAILURES!
Tests: 1, Assertions: 2, Failures: 1.
~~~
现在,你可以开始构建单元测试了。你可以在这里查看一份很好的指南(如果你不熟悉PHPUnit,我们也推荐阅读PHPUnit文档)
[http://blog.stevensanderson.com/2009/08/24/writing-great-unit-tests-best-and-worst-practises/](http://blog.stevensanderson.com/2009/08/24/writing-great-unit-tests-best-and-worst-practises/)
- 简介
- 安装
- 安装(installlation)
- XAMPP下的安装
- WAMP下安装
- Nginx安装说明
- Apache安装说明
- Cherokee 安装说明
- 使用 PHP 内置 web 服务器
- Phalcon 开发工具
- Linux 系统下使用 Phalcon 开发工具
- Mac OS X 系统下使用 Phalcon 开发工具
- Windows 系统下使用 Phalcon 开发工具
- 教程
- 教程 1:让我们通过例子来学习
- 教程 2:INVO简介
- 教程 3: 保护INVO
- 教程4: 使用CRUD
- 教程5: 定制INVO
- 教程 6: Vökuró
- 教程 7:创建简单的 REST API
- 组件
- 依赖注入与服务定位器
- MVC架构
- 使用控制器
- 使用模型
- 模型关系
- 事件与事件管理器
- Behaviors
- 模型元数据
- 事务管理
- 验证数据完整性
- Workingwith Models
- Phalcon查询语言
- 缓存对象关系映射
- 对象文档映射 ODM
- 使用视图
- 视图助手
- 资源文件管理
- Volt 模版引擎
- MVC 应用
- 路由
- 调度控制器
- Micro Applications
- 使用命名空间
- 事件管理器
- Request Environmen
- 返回响应
- Cookie 管理
- 生成 URL 和 路径
- 闪存消息
- 使用 Session 存储数据
- 过滤与清理
- 上下文编码
- 验证Validation
- 表单_Forms
- 读取配置
- 分页 Pagination
- 使用缓存提高性能
- 安全
- 加密与解密 Encryption/Decryption
- 访问控制列表
- 多语言支持
- 类加载器 Class Autoloader
- 日志记录_Logging
- 注释解析器 Annotations Parser
- 命令行应用 Command Line Applications
- Images
- 队列 Queueing
- 数据库抽象层
- 国际化
- 数据库迁移
- 调试应用程序
- 单元测试
- 进阶技巧与延伸阅读
- 提高性能:下一步该做什么?
- Dependency Injection Explained
- Understanding How Phalcon Applications Work
- Api
- Abstract class Phalcon\Acl