webino/nette-tester
Composer 安装命令:
composer require --dev webino/nette-tester
包简介
Nette Tester: enjoyable unit testing in PHP with code coverage reporter. 🍏🍏🍎🍏
README 文档
README
Introduction
Nette Tester is a productive and enjoyable unit testing framework. It's used by the Nette Framework and is capable of testing any PHP code.
Documentation is available on the Nette Tester website. Read the blog for new information.
Installation
The recommended way to install Nette Tester is through Composer:
composer require nette/tester --dev
Alternatively, you can download the tester.phar file.
Nette Tester requires PHP 5.3.0 and supports PHP up to 7.2. Collecting and processing code coverage information depends on Xdebug, or PHPDBG.
Writing Tests
Imagine that we are testing this simple class:
class Greeting { function say($name) { if (!$name) { throw new InvalidArgumentException('Invalid name.'); } return "Hello $name"; } }
So we create test file named greeting.test.phpt:
require 'src/bootstrap.php'; use Tester\Assert; $h = new Greeting; // use an assertion function to test say() Assert::same( 'Hello John', $h->say('John') );
Thats' all!
Now we run tests from command-line using the tester command:
> tester
_____ ___ ___ _____ ___ ___
|_ _/ __)( __/_ _/ __)| _ )
|_| \___ /___) |_| \___ |_|_\ v1.7.2
PHP 5.3.16 | "php-cgi" -n | 8 threads
.
OK (1 tests, 0 skipped, 0.0 seconds)
Nette Tester prints dot for successful test, F for failed test and S when the test has been skipped.
Assertions
This table shows all assertions (class Assert means Tester\Assert):
Assert::same($expected, $actual)- Reports an error if $expected and $actual are not the same.Assert::notSame($expected, $actual)- Reports an error if $expected and $actual are the same.Assert::equal($expected, $actual)- Like same(), but identity of objects and the order of keys in the arrays are ignored.Assert::notEqual($expected, $actual)- Like notSame(), but identity of objects and arrays order are ignored.Assert::contains($needle, array $haystack)- Reports an error if $needle is not an element of $haystack.Assert::contains($needle, string $haystack)- Reports an error if $needle is not a substring of $haystack.Assert::notContains($needle, array $haystack)- Reports an error if $needle is an element of $haystack.Assert::notContains($needle, string $haystack)- Reports an error if $needle is a substring of $haystack.Assert::true($value)- Reports an error if $value is not TRUE.Assert::false($value)- Reports an error if $value is not FALSE.Assert::truthy($value)- Reports an error if $value is not truthy.Assert::falsey($value)- Reports an error if $value is not falsey.Assert::null($value)- Reports an error if $value is not NULL.Assert::nan($value)- Reports an error if $value is not NAN.Assert::type($type, $value)- Reports an error if the variable $value is not of PHP or class type $type.Assert::exception($closure, $class, $message = NULL, $code = NULL)- Checks if the function throws exception.Assert::error($closure, $level, $message = NULL)- Checks if the function $closure throws PHP warning/notice/error.Assert::noError($closure)- Checks that the function $closure does not throw PHP warning/notice/error or exception.Assert::match($pattern, $value)- Compares result using regular expression or mask.Assert::matchFile($file, $value)- Compares result using regular expression or mask sorted in file.Assert::count($count, $value)- Reports an error if number of items in $value is not $count.
Testing exceptions:
Assert::exception(function() { $h = new Greeting; $h->say(NULL); }, 'InvalidArgumentException', 'Invalid name.');
Testing PHP errors, warnings or notices:
Assert::error(function() { $h = new Greeting; echo $h->abc; }, E_NOTICE, 'Undefined property: Greeting::$abc');
Tips and features
Running unit tests manually is annoying, so let Nette Tester to watch your folder with code and automatically re-run tests whenever code is changed:
tester -w /my/source/codes
Running tests in parallel is very much faster and Nette Tester uses 8 threads as default. If you wish to run the tests in series use:
tester -j 1
How do you find code that is not yet tested? Use Code-Coverage Analysis. This feature
requires you have installed Xdebug in php.ini. This will
generate nice HTML report in coverage.html.
tester . -c php.ini --coverage coverage.html --coverage-src /my/source/codes
We can load Nette Tester using Composer's autoloader. In this case it is important to setup Nette Tester environment:
require 'vendor/autoload.php'; Tester\Environment::setup();
We can also test HTML pages. Let the template engine generate
HTML code or download existing page to $html variable. We will check whether
the page contains form fields for username and password. The syntax is the
same as the CSS selectors:
$dom = Tester\DomQuery::fromHtml($html); Assert::true( $dom->has('input[name="username"]') ); Assert::true( $dom->has('input[name="password"]') );
For more inspiration see how Nette Tester tests itself.
Running tests
The command-line test runner can be invoked through the tester command (or php tester.php). Take a look
at the command-line options:
> tester
Usage:
tester.php [options] [<test file> | <directory>]...
Options:
-p <path> Specify PHP executable to run (default: php-cgi).
-c <path> Look for php.ini file (or look in directory) <path>.
-l | --log <path> Write log to file <path>.
-d <key=value>... Define INI entry 'key' with value 'val'.
-s Show information about skipped tests.
--stop-on-fail Stop execution upon the first failure.
-j <num> Run <num> jobs in parallel (default: 8).
-o <console|tap|junit|none> Specify output format.
-w | --watch <path> Watch directory.
-i | --info Show tests environment info and exit.
--setup <path> Script for runner setup.
--colors [1|0] Enable or disable colors.
--coverage <path> Generate code coverage report to file.
--coverage-src <path> Path to source code.
-h | --help This help.
webino/nette-tester 适用场景与选型建议
webino/nette-tester 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 104 次下载、GitHub Stars 达 1, 最近一次更新时间为 2019 年 06 月 24 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「testing」 「phpunit」 「Xdebug」 「nette」 「unit」 「code coverage」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 webino/nette-tester 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 webino/nette-tester 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 webino/nette-tester 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
HiDev plugin for PHPUnit
Testing Suite For Lumen like Laravel does.
A cli tool which generates unit tests.
Runs a php script with XDebug disabled
😎 Tracy: the addictive tool to ease debugging PHP code for cool developers. Friendly design, logging, profiler, advanced features like debugging AJAX calls or CLI support. You will love it.
The PHP SDK for Checkmango
统计信息
- 总下载量: 104
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 17
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2019-06-24