mirror of
https://gitee.com/yansongda/pay.git
synced 2024-12-04 13:20:02 +08:00
49 lines
1.4 KiB
PHP
49 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Yansongda\Pay\Tests\Plugin\Alipay\V2;
|
|
|
|
use Yansongda\Pay\Plugin\Alipay\V2\FormatPayloadBizContentPlugin;
|
|
use Yansongda\Artful\Rocket;
|
|
use Yansongda\Pay\Tests\TestCase;
|
|
use Yansongda\Supports\Collection;
|
|
|
|
class FormatPayloadBizContentPluginTest extends TestCase
|
|
{
|
|
protected FormatPayloadBizContentPlugin $plugin;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->plugin = new FormatPayloadBizContentPlugin();
|
|
}
|
|
|
|
public function testSignNormal()
|
|
{
|
|
$payload = [
|
|
"biz_content" => ['out_trade_no' => "yansongda-1622986519"],
|
|
];
|
|
|
|
$rocket = new Rocket();
|
|
$rocket->setParams([])->setPayload(new Collection($payload));
|
|
|
|
$result = $this->plugin->assembly($rocket, function ($rocket) { return $rocket; });
|
|
|
|
self::assertEquals('{"out_trade_no":"yansongda-1622986519"}', $result->getPayload()->get('biz_content'));
|
|
}
|
|
|
|
public function testSignUnderlineParams()
|
|
{
|
|
$payload = [
|
|
"biz_content" => ['out_trade_no' => "yansongda-1622986519", '_method' => 'get', '_ignore' => true],
|
|
];
|
|
|
|
$rocket = new Rocket();
|
|
$rocket->setParams([])->setPayload(new Collection($payload));
|
|
|
|
$result = $this->plugin->assembly($rocket, function ($rocket) { return $rocket; });
|
|
|
|
self::assertEquals('{"out_trade_no":"yansongda-1622986519"}', $result->getPayload()->get('biz_content'));
|
|
}
|
|
}
|