codeception/domain-assert
Composer 安装命令:
composer require codeception/domain-assert
包简介
Custom assertions for PHPUnit and Codeception
关键字:
README 文档
README
Assertion library for PHPUnit or Codeception powered by Symfony Expression Language.
Pitch
This tiny library helps you to create domain-specific assertions in tests:
Instead of:
$this->assertTrue($user->isValid(), 'user is valid');
use
$this->assertUserIsValid($user);
Why?
See how test fails in first example:
user is valid
Failed asserting that false is true.
And how test fails in second example:
Failed asserting that `user.isValid()`. [user]: User Object &000000005689696e000000004066036e ( 'role' => 'guest' )
What makes more sense to you? In second example you get the business logic behind the assertion as well as values passed into it.
That's why if you have business logic in your project domain-assert is your choice.
How To Use It
Install this package:
composer require codeception/domain-assert --dev
Create a trait with a custom assertion. We recommend using traits as you can reuse them accross different test cases.
use Codeception\DomainRule; trait CustomAssertion { public function assertValidUser(User $user) { $this->assertThat( ['user' => $user], new DomainRule('user and user.isValid()') ); } }
In this example we check that $user exists and $user->isValid() return true;
That's all! Now inject this trait to TestCases and use it.
class UserTest extends \PHPUnit\Framework\TestCase { use CustomAssertion; }
Defining Business Rules
This library uses Expression Language to define domain rules for assertions.
Let's define a rule to check if we have enough products in the stock:
stock and product.getStock() == stock and product.getAmount() > amount
We have 3 items here: product, stock, and amount which is a number of items we need.
Let's create assertion according to this rule:
public function assertEnoughProductsInStock(Stock stock, Product product, amount) { $this->assertThat([ 'product' => $product, 'stock' => $stock, 'amount' => $amount ], new DomainRule('stock and product.getStock() == stock and product.getAmount() > amount') ); }
Now it can be used inside your tests:
$product = new Product('iPhone'); $stock->addProduct($product); $stock->addProduct($product); $stock->addProduct($product); $this->assertEnoughProductsInStock($stock, $product, 2);
Advanced Concepts
- Instead of
$this->assertThatyou can call static version of this method:PHPUnit\Framework\Assert::assertThat Codeception\DomainRuleextendsPHPUnit\Framework\Constraint.Codeception\DomainRuleusesSymfony\Component\ExpressionLanguage\ExpressionLanguage- Expression Language can be extended by calling
$domainRule->getLanguage() assertThatcan receive first parameter as scalar value. In this case it will be treated asexpectedinside an expression:
public function assertIsGreaterThanMinimal() { $this->assertThat( $minimalPrice, new DomainRule('expected > 1000') ); }
License
Open-source software licensed under the MIT License. © Codeception PHP Testing Framework
codeception/domain-assert 适用场景与选型建议
codeception/domain-assert 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 146.15k 次下载、GitHub Stars 达 22, 最近一次更新时间为 2017 年 11 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「BDD」 「TDD」 「unit testing」 「assertions」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 codeception/domain-assert 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 codeception/domain-assert 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 codeception/domain-assert 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Helper that decorates any SUS with a phpspec lazy object wrapper
Behat Context for testing Symfony Api
LazyPDO is a set of wrappers over PHP's standard PDO and PDOStatement classes. It enables lazy loading, serialization and decoration.
Provides access to magento2 object manager from behat and allows to change magento config settings temporarly
Symfony bundle for unigen test generator
A cli tool which generates unit tests.
统计信息
- 总下载量: 146.15k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 22
- 点击次数: 17
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-11-12