mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2026-09-04 23:12:09 +08:00
- 将 src/Tests 迁移到根目录 tests,并同步 composer autoload-dev 与 phpunit 配置。 - 补充 raw/download/upload、微信支付签名下载、XML 嵌套重复节点和消息加解密异常用例。 - 保持测试命名空间 We\Tests,统一通过 tests/bootstrap.php 引导 Composer 自动加载。
117 lines
3.9 KiB
PHP
117 lines
3.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* 微信支付 APIv3 通知验签与解密测试。
|
|
*/
|
|
|
|
namespace We\Tests;
|
|
|
|
use PHPUnit\Framework\Attributes\CoversClass;
|
|
use PHPUnit\Framework\TestCase;
|
|
use We\Config\WechatPaymentConfig;
|
|
use We\Exception\SignatureException;
|
|
use We\Platform\Wechat\PaymentClient as WechatPaymentClient;
|
|
use We\Support\Signature;
|
|
|
|
/**
|
|
* 微信支付 APIv3 通知验签与解密测试用例。
|
|
*/
|
|
#[CoversClass(WechatPaymentClient::class)]
|
|
final class PaymentClientTest extends TestCase
|
|
{
|
|
/**
|
|
* 测试微信支付回调验签使用原始请求体。
|
|
*/
|
|
public function testDecryptNotificationUsesRawBodyForSignature(): void
|
|
{
|
|
[$platformPrivateKey, $platformPublicKey] = self::keyPair();
|
|
$apiV3Key = str_repeat('k', 32);
|
|
$nonce = '123456789012';
|
|
$aad = 'transaction';
|
|
$plain = '{"out_trade_no":"T202605040001","trade_state":"SUCCESS"}';
|
|
$cipher = openssl_encrypt($plain, 'aes-256-gcm', $apiV3Key, OPENSSL_RAW_DATA, $nonce, $tag, $aad);
|
|
self::assertIsString($cipher);
|
|
|
|
$rawBody = "{\n \"id\": \"notify-id\",\n \"resource\": {\n \"ciphertext\": \"" . base64_encode($cipher . $tag) . "\",\n \"nonce\": \"{$nonce}\",\n \"associated_data\": \"{$aad}\"\n }\n}";
|
|
$timestamp = '1777600000';
|
|
$notifyNonce = 'notify-nonce';
|
|
$headers = [
|
|
'Wechatpay-Timestamp' => $timestamp,
|
|
'Wechatpay-Nonce' => $notifyNonce,
|
|
'Wechatpay-Serial' => 'platform-serial',
|
|
'Wechatpay-Signature' => Signature::paymentV3Sign($platformPrivateKey, "{$timestamp}\n{$notifyNonce}\n{$rawBody}\n"),
|
|
];
|
|
$client = new WechatPaymentClient(new WechatPaymentConfig(
|
|
'wx_app',
|
|
'mch_id',
|
|
$apiV3Key,
|
|
'merchant-serial',
|
|
'merchant-private-key',
|
|
'',
|
|
$platformPublicKey,
|
|
'platform-serial',
|
|
));
|
|
|
|
$data = $client->post('decrypt_notification', [], [
|
|
'headers' => $headers,
|
|
'raw_body' => $rawBody,
|
|
]);
|
|
|
|
self::assertSame('T202605040001', $data['out_trade_no']);
|
|
self::assertSame('SUCCESS', $data['trade_state']);
|
|
}
|
|
|
|
/**
|
|
* 测试微信支付回调平台序列号不匹配时拒绝处理。
|
|
*/
|
|
public function testDecryptNotificationRejectsPlatformSerialMismatch(): void
|
|
{
|
|
[$platformPrivateKey, $platformPublicKey] = self::keyPair();
|
|
$rawBody = '{"resource":{"ciphertext":"invalid","nonce":"nonce"}}';
|
|
$timestamp = '1777600000';
|
|
$notifyNonce = 'notify-nonce';
|
|
$headers = [
|
|
'Wechatpay-Timestamp' => $timestamp,
|
|
'Wechatpay-Nonce' => $notifyNonce,
|
|
'Wechatpay-Serial' => 'other-serial',
|
|
'Wechatpay-Signature' => Signature::paymentV3Sign($platformPrivateKey, "{$timestamp}\n{$notifyNonce}\n{$rawBody}\n"),
|
|
];
|
|
$client = new WechatPaymentClient(new WechatPaymentConfig(
|
|
'wx_app',
|
|
'mch_id',
|
|
str_repeat('k', 32),
|
|
'merchant-serial',
|
|
'merchant-private-key',
|
|
'',
|
|
$platformPublicKey,
|
|
'platform-serial',
|
|
));
|
|
|
|
$this->expectException(SignatureException::class);
|
|
$this->expectExceptionMessage('序列号');
|
|
|
|
$client->post('decrypt_notification', [], [
|
|
'headers' => $headers,
|
|
'raw_body' => $rawBody,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* 生成测试使用的 RSA 密钥对。
|
|
*
|
|
* @return array{0:string,1:string}
|
|
*/
|
|
private static function keyPair(): array
|
|
{
|
|
$resource = openssl_pkey_new(['private_key_bits' => 2048, 'private_key_type' => OPENSSL_KEYTYPE_RSA]);
|
|
self::assertNotFalse($resource);
|
|
openssl_pkey_export($resource, $privateKey);
|
|
$details = openssl_pkey_get_details($resource);
|
|
self::assertIsArray($details);
|
|
|
|
return [$privateKey, (string)$details['key']];
|
|
}
|
|
}
|