mirror of
https://gitee.com/yansongda/pay.git
synced 2024-12-04 21:29:29 +08:00
190 lines
6.6 KiB
PHP
190 lines
6.6 KiB
PHP
<?php
|
|
|
|
namespace Yansongda\Pay\Tests\Plugin\Alipay;
|
|
|
|
use Yansongda\Pay\Contract\ConfigInterface;
|
|
use Yansongda\Pay\Exception\Exception;
|
|
use Yansongda\Pay\Exception\InvalidConfigException;
|
|
use Yansongda\Pay\Pay;
|
|
use Yansongda\Pay\Plugin\Alipay\StartPlugin;
|
|
use Yansongda\Pay\Rocket;
|
|
use Yansongda\Pay\Tests\TestCase;
|
|
use Yansongda\Supports\Config;
|
|
|
|
class StartPluginTest extends TestCase
|
|
{
|
|
protected StartPlugin $plugin;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->plugin = new StartPlugin();
|
|
}
|
|
|
|
public function testNormal()
|
|
{
|
|
$rocket = new Rocket();
|
|
$rocket->setParams([]);
|
|
|
|
$result = $this->plugin->assembly($rocket, function ($rocket) { return $rocket; });
|
|
$payload = $result->getPayload();
|
|
|
|
self::assertEquals('e90dd23a37c5c7b616e003970817ff82', $payload->get('app_cert_sn'));
|
|
self::assertEquals('687b59193f3f462dd5336e5abf83c5d8_02941eef3187dddf3d3b83462e1dfcf6', $payload->get('alipay_root_cert_sn'));
|
|
self::assertEquals('yansongda_token', $payload->get('app_auth_token'));
|
|
}
|
|
|
|
public function testGlobalBcscale()
|
|
{
|
|
bcscale(2);
|
|
|
|
$rocket = new Rocket();
|
|
$rocket->setParams([]);
|
|
|
|
$result = $this->plugin->assembly($rocket, function ($rocket) { return $rocket; });
|
|
|
|
self::assertEquals('687b59193f3f462dd5336e5abf83c5d8_02941eef3187dddf3d3b83462e1dfcf6', $result->getPayload()->get('alipay_root_cert_sn'));
|
|
}
|
|
|
|
public function testCustomizedReturnUrl()
|
|
{
|
|
$rocket = new Rocket();
|
|
$rocket->setParams([
|
|
'_return_url' => 'https://yansongda.cn',
|
|
]);
|
|
|
|
$result = $this->plugin->assembly($rocket, function ($rocket) { return $rocket; });
|
|
|
|
self::assertEquals('', $result->getPayload()->get('notify_url'));
|
|
self::assertEquals('https://yansongda.cn', $result->getPayload()->get('return_url'));
|
|
}
|
|
|
|
public function testCustomizedNotifyUrl()
|
|
{
|
|
$rocket = new Rocket();
|
|
$rocket->setParams([
|
|
'_notify_url' => 'https://yansongda.cn',
|
|
]);
|
|
|
|
$result = $this->plugin->assembly($rocket, function ($rocket) { return $rocket; });
|
|
|
|
self::assertEquals('', $result->getPayload()->get('return_url'));
|
|
self::assertEquals('https://yansongda.cn', $result->getPayload()->get('notify_url'));
|
|
}
|
|
|
|
public function testCustomizedReturnNotifyUrl()
|
|
{
|
|
$rocket = new Rocket();
|
|
$rocket->setParams([
|
|
'_return_url' => 'https://yansongda.cn',
|
|
'_notify_url' => 'https://yansongda.cn',
|
|
]);
|
|
|
|
$result = $this->plugin->assembly($rocket, function ($rocket) { return $rocket; });
|
|
|
|
self::assertEquals('https://yansongda.cn', $result->getPayload()->get('return_url'));
|
|
self::assertEquals('https://yansongda.cn', $result->getPayload()->get('notify_url'));
|
|
}
|
|
|
|
public function testCustomizedAppAuthToken()
|
|
{
|
|
$rocket = new Rocket();
|
|
$rocket->setParams([
|
|
'_app_auth_token' => 'yansongda.cn',
|
|
]);
|
|
|
|
$result = $this->plugin->assembly($rocket, function ($rocket) { return $rocket; });
|
|
|
|
self::assertEquals('yansongda.cn', $result->getPayload()->get('app_auth_token'));
|
|
}
|
|
|
|
public function testMissingAppPublicCertPath()
|
|
{
|
|
$rocket = new Rocket();
|
|
|
|
Pay::set(ConfigInterface::class, new Config());
|
|
|
|
self::expectException(InvalidConfigException::class);
|
|
self::expectExceptionCode(Exception::CONFIG_ALIPAY_INVALID);
|
|
self::expectExceptionMessage('Missing Alipay Config -- [app_public_cert_path]');
|
|
|
|
$this->plugin->assembly($rocket, function ($rocket) { return $rocket; });
|
|
}
|
|
|
|
public function testWrongAppPublicCertPath()
|
|
{
|
|
$rocket = new Rocket();
|
|
$config = Pay::get(ConfigInterface::class);
|
|
$config->set('alipay.default.app_public_cert_path', __DIR__.'/../../Cert/foo');
|
|
|
|
Pay::set(ConfigInterface::class, $config);
|
|
|
|
self::expectException(InvalidConfigException::class);
|
|
self::expectExceptionCode(Exception::CONFIG_ALIPAY_INVALID);
|
|
self::expectExceptionMessage('Parse `app_public_cert_path` Error');
|
|
|
|
$this->plugin->assembly($rocket, function ($rocket) { return $rocket; });
|
|
}
|
|
|
|
public function testMissingAlipayRootPath()
|
|
{
|
|
$rocket = new Rocket();
|
|
$config = Pay::get(ConfigInterface::class);
|
|
|
|
$config->set('alipay.default.alipay_root_cert_path', null);
|
|
|
|
self::expectException(InvalidConfigException::class);
|
|
self::expectExceptionCode(Exception::CONFIG_ALIPAY_INVALID);
|
|
self::expectExceptionMessage('Missing Alipay Config -- [alipay_root_cert_path]');
|
|
|
|
$this->plugin->assembly($rocket, function ($rocket) { return $rocket; });
|
|
}
|
|
|
|
public function testWrongAlipayRootPath()
|
|
{
|
|
$rocket = new Rocket();
|
|
$config = Pay::get(ConfigInterface::class);
|
|
|
|
$config->set('alipay.default.alipay_root_cert_path', __DIR__.'/../../Cert/foo');
|
|
|
|
self::expectException(InvalidConfigException::class);
|
|
self::expectExceptionCode(Exception::CONFIG_ALIPAY_INVALID);
|
|
self::expectExceptionMessage('Invalid alipay_root_cert');
|
|
|
|
$this->plugin->assembly($rocket, function ($rocket) { return $rocket; });
|
|
}
|
|
|
|
public function testAppCertSnCached()
|
|
{
|
|
$result = $this->plugin->assembly(new Rocket(), function ($rocket) { return $rocket; });
|
|
$payload = $result->getPayload();
|
|
|
|
self::assertEquals('e90dd23a37c5c7b616e003970817ff82', $payload->get('app_cert_sn'));
|
|
|
|
$config = Pay::get(ConfigInterface::class);
|
|
$config->set('alipay.default.app_public_cert_path', null);
|
|
|
|
$result = $this->plugin->assembly(new Rocket(), function ($rocket) { return $rocket; });
|
|
$payload = $result->getPayload();
|
|
|
|
self::assertEquals('e90dd23a37c5c7b616e003970817ff82', $payload->get('app_cert_sn'));
|
|
}
|
|
|
|
public function testAlipayRootCertSnCached()
|
|
{
|
|
$result = $this->plugin->assembly(new Rocket(), function ($rocket) { return $rocket; });
|
|
$payload = $result->getPayload();
|
|
|
|
self::assertEquals('687b59193f3f462dd5336e5abf83c5d8_02941eef3187dddf3d3b83462e1dfcf6', $payload->get('alipay_root_cert_sn'));
|
|
|
|
$config = Pay::get(ConfigInterface::class);
|
|
$config->set('alipay.default.alipay_root_cert_path', null);
|
|
|
|
$result = $this->plugin->assembly(new Rocket(), function ($rocket) { return $rocket; });
|
|
$payload = $result->getPayload();
|
|
|
|
self::assertEquals('687b59193f3f462dd5336e5abf83c5d8_02941eef3187dddf3d3b83462e1dfcf6', $payload->get('alipay_root_cert_sn'));
|
|
}
|
|
}
|