pay/tests/Plugin/Alipay/PreparePluginTest.php
branll 7ff004f05f
fix: 微信代金券详情 url 不正确 (#663)
* fixed: 微信代金券详情插件

* tests

Co-authored-by: yansongda <me@yansongda.cn>
2022-09-03 13:39:21 +08:00

159 lines
5.3 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\PreparePlugin;
use Yansongda\Pay\Rocket;
use Yansongda\Pay\Tests\TestCase;
use Yansongda\Supports\Config;
class PreparePluginTest extends TestCase
{
protected $plugin;
protected function setUp(): void
{
parent::setUp();
$this->plugin = new PreparePlugin();
}
public function testNormal()
{
$rocket = new Rocket();
$rocket->setParams([]);
$result = $this->plugin->assembly($rocket, function ($rocket) { return $rocket; });
$payload = $result->getPayload();
self::assertTrue($payload->has('app_cert_sn'));
self::assertEquals('fb5e86cfb784de936dd3594e32381cf8', $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::ALIPAY_CONFIG_ERROR);
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::ALIPAY_CONFIG_ERROR);
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::ALIPAY_CONFIG_ERROR);
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::ALIPAY_CONFIG_ERROR);
self::expectExceptionMessage('Invalid alipay_root_cert');
$this->plugin->assembly($rocket, function ($rocket) { return $rocket; });
}
}