loophp/mock-soapclient
Composer 安装命令:
composer require --dev loophp/mock-soapclient
包简介
A fake and predictable SOAP client, useful for your unit tests.
README 文档
README
Mock SOAP Client
A fake and predictable SOAP client ;-)
This library let you configure a SOAP client and the responses it returns.
Not any real SOAP requests are sent, the sole purpose of this library is for testing.
Installation
composer require loophp/mock-soapclient --dev
Usage
Using an array of responses
<?php include __DIR__ . '/vendor/autoload.php'; use loophp\MockSoapClient\MockSoapClient; $responses = ['a', 'b', 'c']; $client = new MockSoapClient($responses); $client->foo(); // a $client->bar(); // b $client->w00t(); // c $client->foobar(); // a $client->barfoo(); // b $client->plop(); // c
Or using a closure
<?php include __DIR__ . '/vendor/autoload.php'; use loophp\MockSoapClient\MockSoapClient; $responses = static function ($method, $arguments) { return $method; }; $client = new MockSoapClient($responses); $client->foo(); // foo $client->bar(); // bar $client->w00t(); // w00t $client->foobar(); // foobar $client->barfoo(); // barfoo $client->plop(); // plop
<?php declare(strict_types=1); include __DIR__ . '/vendor/autoload.php'; use loophp\MockSoapClient\MockSoapClient; $responses = static function ($method, $arguments) { switch ($method) { case 'foo': return 'foo_method'; case 'bar': return 'bar_method'; } throw new SoapFault('Server', sprintf('Unknown SOAP method "%s"', $method)); }; $client = new MockSoapClient($responses); $client->foo(); // foo_method $client->__soapCall('foo', []); // foo_method $client->bar(); // bar_method $client->__soapCall('bar', []); // bar_method $client->w00t(); // Throws exception SoapFault. $client->__soapCall('w00t', []); // Throws exception SoapFault.
Or using multiple closures
<?php include __DIR__ . '/vendor/autoload.php'; use loophp\MockSoapClient\MockSoapClient; $responses = [ static function (string $method, array $arguments) { return '00' . $method; }, static function (string $method, array $arguments) { return '11' . $method; }, static function (string $method, array $arguments) { throw new SoapFault('Server', 'Server'); }, ]; $client = new MockSoapClient($responses); $client->foo(); // 00foo $client->bar(); // 11bar $client->w00t(); // SoapFault exception.
Advanced responses factory
<?php declare(strict_types=1); include __DIR__ . '/vendor/autoload.php'; use loophp\MockSoapClient\MockSoapClient; $responses = [ 'a', 'b', 'c', 'a' => 'aaa', 'b' => [ 'bbb1', 'bbb2', ], 'c' => [ static function ($method, $arguments) { return 'ccc1'; }, static function ($method, $arguments) { return 'ccc2'; }, ], ]; $client = new MockSoapClient($responses); $client->foo(); // a $client->foo(); // b $client->foo(); // c $client->foo(); // a $client->a(); // aaa $client->a(); // aaa $client->b(); // bbb1 $client->b(); // bbb2 $client->b(); // bbb1 $client->c(); // ccc1 $client->c(); // ccc2 $client->c(); // ccc1
Code quality, tests and benchmarks
Every time changes are introduced into the library, Github run the tests and the benchmarks.
The library has tests written with PHPSpec. Feel free
to check them out in the spec directory. Run composer phpspec to trigger the
tests.
Before each commit some inspections are executed with
GrumPHP, run ./vendor/bin/grumphp run to
check manually.
PHPInfection is used to ensure that
your code is properly tested, run composer infection to test your code.
Contributing
Feel free to contribute by sending pull requests. We are a usually very responsive team and we will help you going through your pull request from the beginning to the end.
For some reasons, if you can't contribute to the code and willing to help, sponsoring is a good, sound and safe way to show us some gratitude for the hours we invested in this package.
Sponsor me on [Github][github sponsors] and/or any of the contributors.
Changelog
See CHANGELOG.md for a changelog based on git commits.
For more detailed changelogs, please check the release changelogs.
loophp/mock-soapclient 适用场景与选型建议
loophp/mock-soapclient 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 75.58k 次下载、GitHub Stars 达 12, 最近一次更新时间为 2020 年 02 月 18 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「testing」 「soap」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 loophp/mock-soapclient 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 loophp/mock-soapclient 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 loophp/mock-soapclient 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
cURL and cURL based Soap-Client for PHP
A PHP client for the Salesforce SOAP API
Testing Suite For Lumen like Laravel does.
A Yii2 component for working with TurboSMS.ua SOAP service
The PHP SDK for Checkmango
Zend Framework 1 Soap package
统计信息
- 总下载量: 75.58k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 12
- 点击次数: 14
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-02-18