mattersight / phppact
10.0.0
2024-09-04 11:12 UTC
Requires
- php: ^8.1
- ext-ffi: *
- ext-json: *
- ext-openssl: *
- composer/semver: ^1.4.0|^3.2.0
- guzzlehttp/psr7: ^2.4.5
- pact-foundation/composer-downloads-plugin: ^2.1
- symfony/process: ^5.4|^6.0|^7.0
Requires (Dev)
- ext-sockets: *
- behat/behat: ^3.13
- friendsofphp/php-cs-fixer: ^3.0
- galbar/jsonpath: ^3.0
- guzzlehttp/guzzle: ^7.8
- pact-foundation/example-protobuf-sync-message-provider: @dev
- php-amqplib/php-amqplib: ^3.0
- phpstan/phpstan: ^1.9
- phpunit/phpunit: ^10.1.0|>=11.0 <11.3
- ramsey/uuid: ^4.7
- roave/security-advisories: dev-latest
- slim/slim: ^4.13
- dev-master
- 10.0.0
- 10.0.0-beta2
- 10.0.0-beta1
- 10.0.0-alpha7
- 10.0.0-alpha6
- 10.0.0-alpha5
- 10.0.0-alpha4
- 10.0.0-alpha3
- 10.0.0-alpha2
- 10.0.0-alpha1
- 9.1.1
- 9.1.0
- 9.0.0
- 8.1.0
- 8.0.0
- 7.2.0
- 7.1.2
- 7.1.1
- 7.1.0
- 7.0.1
- 7.0.0
- 6.0.3
- 6.0.2
- 6.0.1
- 6.0.0
- 5.0.7
- 5.0.6
- 5.0.5
- 5.0.4
- 5.0.3
- 5.0.2
- 5.0.1
- 5.0.0
- 4.0.2
- 4.0.1
- 4.0.0
- 3.1.1
- 3.1.0
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.2.1
- 2.2.0
- 2.1.0
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 1.1.3
- 1.1.0
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.1
- dev-dependabot/composer/phpunit/phpunit-tw-11.3.6
- dev-dependabot/composer/phpunit/phpunit-tw-11.3.5
- dev-release/9.x
- dev-ubuntu-sockets
This package is auto-updated.
Last update: 2024-09-23 14:41:55 UTC
README
Pact PHP
为您的API和微服务提供快速、简单、可靠的测试。
文档
此README提供对库的基本介绍。Pact PHP和整个框架的完整文档可在https://docs.pact.io/找到。
需要帮助
- 加入我们的社区slack工作区。
- Stack Overflow: https://stackoverflow.com/questions/tagged/pact
- 在Twitter上打个招呼:[@pact_up]
安装
composer require pact-foundation/pact-php --dev
# 🚀 now write some tests!
寻找之前的稳定9.x.x版本?
要求
PHP 8.1+(从pact-php v10开始)
不跟踪
为了获得更好的统计数据,了解谁在使用Pact,我们有一个匿名跟踪事件,在Pact首次安装时触发。我们跟踪的唯一事情是您的操作系统类型和正在安装的包的版本信息。此请求不发送任何PII数据。您可以通过设置环境变量PACT_DO_NOT_TRACK=1
来禁用跟踪。
使用
编写消费者测试
namespace App\Tests; use App\Service\HttpClientService; use PhpPact\Consumer\InteractionBuilder; use PhpPact\Consumer\Matcher\Matcher; use PhpPact\Consumer\Model\ConsumerRequest; use PhpPact\Consumer\Model\ProviderResponse; use PhpPact\Standalone\MockService\MockServerConfig; use PHPUnit\Framework\TestCase; class ConsumerServiceHelloTest extends TestCase { public function testGetHelloString(): void { $matcher = new Matcher(); // Create your expected request from the consumer. $request = new ConsumerRequest(); $request ->setMethod('GET') ->setPath('/hello/Bob') ->addHeader('Content-Type', 'application/json'); // Create your expected response from the provider. $response = new ProviderResponse(); $response ->setStatus(200) ->addHeader('Content-Type', 'application/json') ->setBody([ 'message' => $matcher->term('Hello, Bob', '(Hello, )[A-Za-z]+') ]); // Create a configuration that reflects the server that was started. You can create a custom MockServerConfigInterface if needed. $config = new MockServerConfig(); $config ->setConsumer('jsonConsumer') ->setProvider('jsonProvider') ->setPactDir(__DIR__.'/../../../pacts'); if ($logLevel = \getenv('PACT_LOGLEVEL')) { $config->setLogLevel($logLevel); } $builder = new InteractionBuilder($config); $builder ->uponReceiving('A get request to /hello/{name}') ->with($request) ->willRespondWith($response); // This has to be last. This is what makes FFI calls to register the interaction and start the mock server. $service = new HttpClientService($config->getBaseUri()); // Pass in the URL to the Mock Server. $helloResult = $service->getHelloString('Bob'); // Make the real API request against the Mock Server. $verifyResult = $builder->verify(); // This will verify that the interactions took place. $this->assertTrue($verifyResult); // Make your assertions. $this->assertEquals('Hello, Bob', $helloResult); } }
您可以在./examples/json
中查看(并运行)此版本的完整内容,以及父文件夹中的其他示例。
运行示例
- 克隆存储库
git@github.com:pact-foundation/pact-php.git
- 进入存储库
cd pact-php
- 安装所有依赖项
composer install
运行单个示例
- 切换到所需的示例文件夹
cd examples/json
- 运行示例 -
phpunit
运行所有示例
- 切换到示例文件夹
cd examples
- 安装所有示例
phpunit
验证提供者
提供者测试需要一个或多个pact文件(合同)作为输入,Pact将验证您的提供者是否遵守合同。在最简单的情况下,您可以使用本地pact文件如下验证提供者,尽管在实际中,您通常会使用Pact Broker来管理您的合同和CI/CD工作流程。
namespace App\Tests; use GuzzleHttp\Psr7\Uri; use PhpPact\Standalone\ProviderVerifier\Model\VerifierConfig; use PhpPact\Standalone\ProviderVerifier\Verifier; use PhpPactTest\Helper\PhpProcess; use PHPUnit\Framework\TestCase; class PactVerifyTest extends TestCase { private PhpProcess $process; protected function setUp(): void { $this->process = new PhpProcess(__DIR__ . '/path/to/public/'); $this->process->start(); } protected function tearDown(): void { $this->process->stop(); } /** * This test will run after the web server is started. */ public function testPactVerifyConsumer() { $config = new VerifierConfig(); $config->getProviderInfo() ->setName('jsonProvider') // Providers name to fetch. ->setHost('localhost') ->setPort($this->process->getPort()); $config->getProviderState() ->setStateChangeUrl(new Uri(sprintf('http://localhost:%d/pact-change-state', $this->process->getPort()))) ; if ($level = \getenv('PACT_LOGLEVEL')) { $config->setLogLevel($level); } $verifier = new Verifier($config); $verifier->addFile(__DIR__ . '/path/to/pacts/jsonConsumer-jsonProvider.json'); $verifyResult = $verifier->verify(); $this->assertTrue($verifyResult); } }
最好将Pact验证测试作为您单元测试套件的一部分运行,这样您就可以轻松访问存根、IaC和其他有用工具。
兼容性
版本
* v3支持仅限于启用语言互操作性消息支持所需的功能子集。
支持的平台
* 对于9.x及以下版本,通过工作区支持Ruby Standalone with Alpine。
路线图
Pact和Pact PHP的路线图在我们主网站上进行了概述。
贡献
请参阅贡献指南。