jonpurvis/lawman
Composer 安装命令:
composer require --dev jonpurvis/lawman
包简介
A PestPHP Plugin to help with architecture testing SaloonPHP integrations
README 文档
README
Lawman - Your Architectural Enforcer for SaloonPHP
A PestPHP Plugin for SaloonPHP that helps you enforce architectural rules with your API integrations.
Introduction
Lawman is a PestPHP Plugin for SaloonPHP which allows you to easily write architecture tests for your API integrations with a focus on them being easy to write and easy to read. After all, if SaloonPHP makes our API integrations beautiful, the tests for them should be beautiful too, right?
Lawman makes testing your SaloonPHP API integrations, from an architecture point of view, much easier to do. Allowing you to see, at a glance, what a test is actually doing. Lawman is a plugin for PestPHP meaning you can use Lawman Expectations and PestPHP Expectations together, just chain whatever you need for your tests!
Examples
Let's take a look at how Lawman can help make writing tests easier.
Let's say we have a Connector class that we want to test, with PestPHP we could do the following:
test('connector') ->expect('App\Http\Integrations\Integration\Connector') ->toExtend('Saloon\Http\Connector') ->toUse('Saloon\Traits\Plugins\AcceptsJson') ->toUse('Saloon\Traits\Plugins\AlwaysThrowOnErrors');
So that test is ensuring our class extends the base Connector and uses the AcceptJson and
AlwaysThrowOnErrors traits. Whilst that test works, we could perhaps make it quicker to write
and easier to read, so with Lawman, you can do:
test('connector') ->expect('App\Http\Integrations\Integration\Connector') ->toBeSaloonConnector() ->toUseAcceptsJsonTrait() ->toUseAlwaysThrowOnErrorsTrait();
Next up, let's take a Request test that we have:
test('request') ->expect('App\Http\Integrations\Integration\Requests\Request') ->toExtend('\Saloon\Http\Request') ->toImplement('Saloon\Contracts\Body\HasBody') ->toUse('Saloon\Traits\Body\HasFormBody') ->toUse('Saloon\Traits\Plugins\AcceptsJson');
Lawman makes this test much nicer to read:
test('request') ->expect('App\Http\Integrations\Integration\Requests\Request') ->toBeSaloonRequest() ->toSendPostRequest() ->toHaveFormBody() ->toUseAcceptsJsonTrait();
What about if we want to test our Connector has an Authentication method? Lawman makes this easy to do, it even works with multi auth:
test('connector') ->expect('App\Http\Integrations\Integration\Connector') ->toBeSaloonConnector() ->toUseCertificateAuthentication() ->toUseTokenAuthentication();
Lawman also has Expectations for the Pagination, Cache and Rate Limit Plugins:
test('request') ->expect('App\Http\Integrations\Integration\Requests\Request') ->toBeSaloonRequest() ->toSendPostRequest() ->toUsePagedPagination() ->toHaveCaching() ->toHaveRateLimits()
Maybe our Connector has some Retry instructions that we want to test. Again, with Lawman, it's as simple as:
test('connector') ->expect('App\Http\Integrations\Integration\Connector') ->toBeSaloonConnector() ->toBeTriedAgainOnFailure(tries: 3) ->toHaveRetryInterval(retryInterval: 1500) ->toUseExponentialBackoff()
Maybe our Connector is for an API that tends to be quite slow, so we increased some timeouts:
test('connector') ->expect('App\Http\Integrations\Integration\Connector') ->toBeSaloonConnector() ->toSetConnectTimeout(connectTimeout: 30) ->toSetRequestTimeout(requestTimeout: 60) ->toUseExponentialBackoff()
Contributing
Contributions to the package are more than welcome so if you think of an Expectation you'd like to see, feel free to submit a Pull Request or Open an Issue. If you do submit a Pull Request, please make sure you add a new Fixture and test for your Expectation(s).
Useful Links
jonpurvis/lawman 适用场景与选型建议
jonpurvis/lawman 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 37.05k 次下载、GitHub Stars 达 41, 最近一次更新时间为 2024 年 02 月 14 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「framework」 「php」 「testing」 「plugin」 「test」 「unit」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 jonpurvis/lawman 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 jonpurvis/lawman 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 jonpurvis/lawman 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
PHP Framework HLEB2 is the foundation of the web application. Provides ease of development and application performance.
Testing Suite For Lumen like Laravel does.
The PHP SDK for Checkmango
Alfabank REST API integration
The testing extension of TYPO3voilà.
Auto-generate dummy data with realistic relationships per Model-like config classes
统计信息
- 总下载量: 37.05k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 41
- 点击次数: 18
- 依赖项目数: 9
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-02-14
