jonpurvis/lawman 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

jonpurvis/lawman

最新稳定版本:v4.1.0

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.

Tests GitHub last commit Packagist PHP Version GitHub issues GitHub Packagist Downloads

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

统计信息

  • 总下载量: 22.03k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 42
  • 点击次数: 3
  • 依赖项目数: 6
  • 推荐数: 0

GitHub 信息

  • Stars: 42
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-04

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固