测试
CodeIgniter 从一开始就尽可能地简化了框架和应用程序的测试。对 PHPUnit 的支持是内置的,框架还提供了许多方便的辅助方法,使得对应用程序的各个方面的测试变得尽可能轻松。
系统设置
安装 PHPUnit
CodeIgniter 使用 PHPUnit 作为所有测试的基础。有两种在系统内安装 PHPUnit 的方法。
Composer
推荐的方法是使用 Composer 在项目中安装它。尽管可以全局安装,但我们不建议这样做,因为随着时间的推移,它可能与系统上的其他项目造成兼容性问题。
确保系统中安装了 Composer。从项目根目录(包含应用程序和系统目录的目录)命令行输入以下命令:
> composer require --dev phpunit/phpunit
这将为当前 PHP 版本安装正确的版本。完成后,可以通过输入以下命令来运行此项目的所有测试:
> vendor/bin/phpunit
如果使用 Windows,请使用以下命令:
> vendor\bin\phpunit
Phar
另一种选择是从 PHPUnit 站点下载 .phar 文件。这是一个独立的文件,应该放在项目根目录中。
测试应用程序
PHPUnit 配置
项目根目录中有一个 phpunit.xml.dist
文件。它控制框架本身的单元测试。如果提供自己的 phpunit.xml
,则会覆盖它。
如果正在对应用程序进行单元测试,则 phpunit.xml
应该排除 system
文件夹以及任何 vendor
或 ThirdParty
文件夹。
测试类
为了利用所提供的其他工具,测试必须扩展 CIUnitTestCase
。默认情况下,所有测试都预计位于 tests/app 目录中。
要测试新的库 Foo,你将在 tests/app/Libraries/FooTest.php 中创建一个新文件:
<?php
namespace App\Libraries;
use CodeIgniter\Test\CIUnitTestCase;
class FooTest extends CIUnitTestCase
{
public function testFooNotBar()
{
// ...
}
}
要测试模型之一,你最终可能会在 tests/app/Models/OneOfMyModelsTest.php 中以类似以下形式结束:
<?php
namespace App\Models;
use CodeIgniter\Test\CIUnitTestCase;
class OneOfMyModelsTest extends CIUnitTestCase
{
public function testFooNotBar()
{
// ...
}
}
你可以创建任何适合测试风格或需求的目录结构。在给测试类加命名空间时,请记住 app 目录是 App
命名空间的根目录,因此所使用的任何类都必须与 App
具有正确的相对命名空间。
备注
对测试类使用命名空间不是强制的,但它有助于确保类名不冲突。
在测试数据库结果时,必须在类中使用 DatabaseTestTrait。
搭建环境
大多数测试都需要一些准备才能正确运行。PHPUnit 的 TestCase
提供了四个方法来帮助搭建环境和清理:
public static function setUpBeforeClass(): void
public static function tearDownAfterClass(): void
protected function setUp(): void
protected function tearDown(): void
静态方法 setUpBeforeClass()
和 tearDownAfterClass()
分别在整个测试用例之前和之后运行,而受保护的方法 setUp()
和 tearDown()
在每个测试之间运行。
如果实现了这些特殊函数中的任何一个,请确保也运行其父函数,以免扩展的测试用例干扰环境搭建:
<?php
namespace App\Models;
use CodeIgniter\Test\CIUnitTestCase;
final class OneOfMyModelsTest extends CIUnitTestCase
{
protected function setUp(): void
{
parent::setUp(); // Do not forget
helper('text');
}
// ...
}
Traits
通过 traits 统一不同测试用例的环境搭建是一个加强测试的常用方式。CIUnitTestCase
将检测任何类 traits,并查找以 trait 本身命名的环境搭建方法(即 setUp{TraitName}() 和 tearDown{TraitName}())。
例如,如果你需要在某些测试用例中添加认证,可以创建一个具有假登录用户设置方法的认证 trait:
<?php
trait AuthTrait
{
protected function setUpAuthTrait()
{
$user = $this->createFakeUser();
$this->logInUser($user);
}
// ...
}
use CodeIgniter\Test\CIUnitTestCase;
final class AuthenticationFeatureTest extends CIUnitTestCase
{
use AuthTrait;
// ...
}
其他断言
CIUnitTestCase
提供了你可能会发现有用的其他单元测试断言。
assertLogged($level, $expectedMessage)
确保预期的内容确实已记录到日志:
assertLogContains($level, $logMessage)
确保日志中存在包含消息片段的记录:
<?php
$config = new Config\Logger();
$logger = new CodeIgniter\Log\Logger($config);
// check verbatim the log message
$logger->log('error', "That's no moon");
$this->assertLogged('error', "That's no moon");
// check that a portion of the message is found in the logs
$exception = new RuntimeException('Hello world.');
$logger->log('error', $exception->getTraceAsString());
$this->assertLogContains('error', '{main}');
assertEventTriggered($eventName)
确保预期触发的事件确实被触发了:
<?php
Events::on('foo', static function ($arg) use (&$result) {
$result = $arg;
});
Events::trigger('foo', 'bar');
$this->assertEventTriggered('foo');
assertHeaderEmitted($header, $ignoreCase = false)
确保标头或 Cookie 已实际发送:
<?php
$response->setCookie('foo', 'bar');
ob_start();
$this->response->send();
$output = ob_get_clean(); // in case you want to check the actual body
$this->assertHeaderEmitted('Set-Cookie: foo=bar');
备注
带有此内容的测试用例应 在 PHPunit 中作为单独进程运行。
assertHeaderNotEmitted($header, $ignoreCase = false)
确保标头或 Cookie 没有被发送:
<?php
$response->setCookie('foo', 'bar');
ob_start();
$this->response->send();
$output = ob_get_clean(); // in case you want to check the actual body
$this->assertHeaderNotEmitted('Set-Cookie: banana');
备注
带有此内容的测试用例应 在 PHPunit 中作为单独进程运行。
assertCloseEnough($expected, $actual, $message = ‘’, $tolerance = 1)
对于延长执行时间的测试,测试预期时间与实际时间之间的绝对差值是否在允许公差范围内:
<?php
$timer = new Timer();
$timer->start('longjohn', strtotime('-11 minutes'));
$this->assertCloseEnough(11 * 60, $timer->getElapsedTime('longjohn'));
上面的测试将允许实际时间为 660 或 661 秒。
assertCloseEnoughString($expected, $actual, $message = ‘’, $tolerance = 1)
对于延长执行时间的测试,测试格式化为字符串的预期和实际时间之间的绝对差值是否在允许公差范围内:
<?php
$timer = new Timer();
$timer->start('longjohn', strtotime('-11 minutes'));
$this->assertCloseEnoughString(11 * 60, $timer->getElapsedTime('longjohn'));
上面的测试将允许实际时间为 660 或 661 秒。
访问 Protected/Private 属性
在测试期间,可以使用以下 setter 和 getter 方法访问要测试类中的 protected 和 private 方法和属性。
getPrivateMethodInvoker($instance, $method)
启用你从类外调用私有方法。它返回一个可调用的函数。第一个参数是要测试的类的实例。第二个参数是要调用的方法名称。
<?php
// Create an instance of the class to test
$obj = new Foo();
// Get the invoker for the 'privateMethod' method.
$method = $this->getPrivateMethodInvoker($obj, 'privateMethod');
// Test the results
$this->assertEquals('bar', $method('param1', 'param2'));
getPrivateProperty($instance, $property)
从类的实例中检索私有/受保护类属性的值。第一个参数是要测试的类的实例。第二个参数是属性名称。
<?php
// Create an instance of the class to test
$obj = new Foo();
// Test the value
$this->assertEquals('bar', $this->getPrivateProperty($obj, 'baz'));
setPrivateProperty($instance, $property, $value)
在类实例中设置受保护的值。第一个参数是要测试的类的实例。第二个参数是要设置值的属性名称。第三个参数是要设置的值:
<?php
// Create an instance of the class to test
$obj = new Foo();
// Set the value
$this->setPrivateProperty($obj, 'baz', 'oops!');
// Do normal testing...
模拟服务
在测试中,你经常会发现需要模拟 app/Config/Services.php 中定义的服务之一,以将测试限制于仅检查相关代码,同时模拟服务的各种响应。这在测试控制器和其他集成测试中尤其如此。Services 类提供了以下方法来简化此操作。
Services::injectMock()
此方法允许你定义 Services 类将返回的确切实例。你可以使用它来设置服务的属性,以使其以某种方式运行,或将服务替换为模拟类。
<?php
use CodeIgniter\Test\CIUnitTestCase;
use Config\Services;
final class SomeTest extends CIUnitTestCase
{
public function testSomething()
{
$curlrequest = $this->getMockBuilder('CodeIgniter\HTTP\CURLRequest')
->setMethods(['request'])
->getMock();
Services::injectMock('curlrequest', $curlrequest);
// Do normal testing here....
}
}
第一个参数是要替换的服务。名称必须与 Services 类中的函数名称完全匹配。第二个参数是要替换的实例。
Services::reset()
从 Services 类中删除所有模拟类,将其恢复到原始状态。
你也可以使用 CIUnitTestCase
提供的 $this->resetServices()
方法。
Services::resetSingle(string $name)
通过名称删除单个服务的所有模拟和共享实例。
备注
Cache
、Email
和 Session
服务默认进行模拟,以防止侵入式测试行为。要阻止模拟,请从类属性中删除方法回调:$setUpMethods = ['mockEmail', 'mockSession'];
模拟 Factory 实例
与 Services 类似,在测试期间你可能需要提供预先配置的类实例用于 Factories
。像 Services 一样使用相同的 Factories::injectMock()
和 Factories::reset()
静态方法,但它们需要在前面附加组件名称作为额外参数:
<?php
use CodeIgniter\Config\Factories;
use CodeIgniter\Test\CIUnitTestCase;
final class SomeTest extends CIUnitTestCase
{
protected function setUp(): void
{
parent::setUp();
$model = new MockUserModel();
Factories::injectMock('models', 'App\Models\UserModel', $model);
}
}
备注
所有组件工厂在每个测试之间默认重置。如果需要实例持久化,请修改测试用例的 $setUpMethods
。
测试 CLI 输出
StreamFilterTrait
4.3.0 新版功能.
StreamFilterTrait 提供了这些帮助方法的替代方法。
你可能需要测试一些难以测试的内容。有时,捕获流,如 PHP 自己的 STDOUT 或 STDERR,可能会有所帮助。StreamFilterTrait
帮助你从选择的流中捕获输出。
方法概览
StreamFilterTrait::getStreamFilterBuffer()
获取缓冲区中的捕获数据。StreamFilterTrait::resetStreamFilterBuffer()
重置捕获的数据。
在测试用例中演示此用法的示例:
<?php
use CodeIgniter\CLI\CLI;
use CodeIgniter\Test\CIUnitTestCase;
use CodeIgniter\Test\StreamFilterTrait;
final class SomeTest extends CIUnitTestCase
{
use StreamFilterTrait;
public function testSomeOutput(): void
{
CLI::write('first.');
$this->assertSame("\nfirst.\n", $this->getStreamFilterBuffer());
$this->resetStreamFilterBuffer();
CLI::write('second.');
$this->assertSame("second.\n", $this->getStreamFilterBuffer());
}
}
StreamFilterTrait
具有自动调用的配置器。请参阅 Testing Traits。
如果在测试中覆盖 setUp()
或 tearDown()
方法,则必须分别调用 parent::setUp()
和 parent::tearDown()
方法来配置 StreamFilterTrait
。
CITestStreamFilter
CITestStreamFilter 用于手动单次使用。
如果只需要在一个测试中捕获流,那么可以手动将过滤器添加到流,而不是使用 StreamFilterTrait trait。
方法概览
CITestStreamFilter::registration()
过滤器注册。CITestStreamFilter::addOutputFilter()
向输出流添加过滤器。CITestStreamFilter::addErrorFilter()
向错误流添加过滤器。CITestStreamFilter::removeOutputFilter()
从输出流中移除过滤器。CITestStreamFilter::removeErrorFilter()
从错误流中移除过滤器。
<?php
use CodeIgniter\CLI\CLI;
use CodeIgniter\Test\CIUnitTestCase;
use CodeIgniter\Test\Filters\CITestStreamFilter;
final class SomeTest extends CIUnitTestCase
{
public function testSomeOutput(): void
{
CITestStreamFilter::registration();
CITestStreamFilter::addOutputFilter();
CLI::write('first.');
CITestStreamFilter::removeOutputFilter();
}
}
测试 CLI 输入
PhpStreamWrapper
4.3.0 新版功能.
PhpStreamWrapper 提供了测试需要用户输入的方法(如 CLI::prompt()
、CLI::wait()
和 CLI::input()
)的途径。
备注
PhpStreamWrapper 是一个流包装器类。如果你不了解 PHP 的流包装器,请参阅 PHP 手册中的 The streamWrapper class。
方法概览
PhpStreamWrapper::register()
将PhpStreamWrapper
注册到php
协议。PhpStreamWrapper::restore()
将 php 协议包装器恢复为内置的 PHP 包装器。PhpStreamWrapper::setContent()
设置输入数据。
重要
PhpStreamWrapper 仅用于测试 php://stdin
。但是在注册时,它会处理所有 php 协议 流,例如 php://stdout
、php://stderr
、php://memory
。所以,强烈建议仅在需要时注册/取消注册 PhpStreamWrapper。否则,它会在注册期间干扰其他内置的 php 流。
在测试用例中演示用法的示例:
<?php
use CodeIgniter\CLI\CLI;
use CodeIgniter\Test\CIUnitTestCase;
use CodeIgniter\Test\PhpStreamWrapper;
final class SomeTest extends CIUnitTestCase
{
public function testPrompt(): void
{
// Register the PhpStreamWrapper.
PhpStreamWrapper::register();
// Set the user input to 'red'. It will be provided as `php://stdin` output.
$expected = 'red';
PhpStreamWrapper::setContent($expected);
$output = CLI::prompt('What is your favorite color?');
$this->assertSame($expected, $output);
// Restore php protocol wrapper.
PhpStreamWrapper::restore();
}
}