添加网站文件
This commit is contained in:
42
vendor/alipaysdk/easysdk/php/test/payment/facetoface/ClientTest.php
vendored
Normal file
42
vendor/alipaysdk/easysdk/php/test/payment/facetoface/ClientTest.php
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Alipay\EasySDK\Test\payment\facetoface;
|
||||
|
||||
|
||||
use Alipay\EasySDK\Kernel\Factory;
|
||||
use Alipay\EasySDK\Test\TestAccount;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class ClientTest extends TestCase
|
||||
{
|
||||
public function __construct($name = null, array $data = [], $dataName = '')
|
||||
{
|
||||
parent::__construct($name, $data, $dataName);
|
||||
$account = new TestAccount();
|
||||
Factory::setOptions($account->getTestAccount());
|
||||
}
|
||||
|
||||
public function testPay()
|
||||
{
|
||||
$create =Factory::payment()->common()->create("Iphone6 16G",
|
||||
microtime(), "88.88", "2088002656718920");
|
||||
|
||||
$result = Factory::payment()->faceToFace()->pay("Iphone6 16G", $create->outTradeNo, "0.10",
|
||||
"1234567890");
|
||||
$this->assertEquals('40004', $result->code);
|
||||
$this->assertEquals('Business Failed', $result->msg);
|
||||
$this->assertEquals('ACQ.PAYMENT_AUTH_CODE_INVALID', $result->subCode);
|
||||
$this->assertEquals('支付失败,获取顾客账户信息失败,请顾客刷新付款码后重新收款,如再次收款失败,请联系管理员处理。[SOUNDWAVE_PARSER_FAIL]', $result->subMsg);
|
||||
}
|
||||
|
||||
public function testPrecreate(){
|
||||
$create =Factory::payment()->common()->create("Iphone6 16G",
|
||||
microtime(), "88.88", "2088002656718920");
|
||||
$result = Factory::payment()->faceToFace()->precreate("Iphone6 16G", $create->outTradeNo, "0.10");
|
||||
|
||||
$this->assertEquals('10000', $result->code);
|
||||
$this->assertEquals('Success', $result->msg);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user