mirror of
https://gitee.com/yansongda/pay.git
synced 2024-12-03 12:48:24 +08:00
64 lines
2.3 KiB
PHP
64 lines
2.3 KiB
PHP
<?php
|
|
|
|
namespace Yansongda\Pay\Tests\Plugin\Alipay\V2;
|
|
|
|
use GuzzleHttp\Psr7\Request;
|
|
use Psr\Http\Message\ResponseInterface;
|
|
use Yansongda\Pay\Plugin\Alipay\V2\ResponseHtmlPlugin;
|
|
use Yansongda\Artful\Rocket;
|
|
use Yansongda\Pay\Tests\TestCase;
|
|
use Yansongda\Supports\Collection;
|
|
|
|
class ResponseHtmlPluginTest extends TestCase
|
|
{
|
|
private ResponseHtmlPlugin $plugin;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->plugin = new ResponseHtmlPlugin();
|
|
}
|
|
|
|
public function testRedirect()
|
|
{
|
|
$rocket = new Rocket();
|
|
$rocket->setRadar(new Request('GET', 'https://yansongda.cn'))
|
|
->setPayload(new Collection(['name' => 'yansongda']));
|
|
|
|
$result = $this->plugin->assembly($rocket, function ($rocket) { return $rocket; });
|
|
|
|
self::assertInstanceOf(ResponseInterface::class, $result->getDestination());
|
|
self::assertArrayHasKey('Location', $result->getDestination()->getHeaders());
|
|
self::assertEquals('https://yansongda.cn?name=yansongda', $result->getDestination()->getHeaderLine('Location'));
|
|
}
|
|
|
|
public function testRedirectIncludeMark()
|
|
{
|
|
$rocket = new Rocket();
|
|
$rocket->setRadar(new Request('GET', 'https://yansongda.cn?charset=utf8'))
|
|
->setPayload(new Collection(['name' => 'yansongda']));
|
|
|
|
$result = $this->plugin->assembly($rocket, function ($rocket) { return $rocket; });
|
|
|
|
self::assertInstanceOf(ResponseInterface::class, $result->getDestination());
|
|
self::assertArrayHasKey('Location', $result->getDestination()->getHeaders());
|
|
self::assertEquals('https://yansongda.cn?charset=utf8&name=yansongda', $result->getDestination()->getHeaderLine('Location'));
|
|
}
|
|
|
|
public function testHtml()
|
|
{
|
|
$rocket = new Rocket();
|
|
$rocket->setRadar(new Request('POST', 'https://yansongda.cn'))
|
|
->setPayload(new Collection(['name' => 'yansongda']));
|
|
|
|
$result = $this->plugin->assembly($rocket, function ($rocket) { return $rocket; });
|
|
|
|
$contents = (string) $result->getDestination()->getBody();
|
|
|
|
self::assertInstanceOf(ResponseInterface::class, $result->getDestination());
|
|
self::assertStringContainsString('alipay_submit', $contents);
|
|
self::assertStringContainsString('yansongda', $contents);
|
|
}
|
|
}
|