截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ClientTest.php 3.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php
  2. namespace Alipay\EasySDK\Test\util\generic;
  3. use Alipay\EasySDK\Kernel\Factory;
  4. use Alipay\EasySDK\Test\TestAccount;
  5. use Alipay\EasySDK\Kernel\Util\ResponseChecker;
  6. use PHPUnit\Framework\TestCase;
  7. class ClientTest extends TestCase
  8. {
  9. public function __construct($name = null, array $data = [], $dataName = '')
  10. {
  11. parent::__construct($name, $data, $dataName);
  12. $account = new TestAccount();
  13. Factory::setOptions($account->getTestAccount());
  14. }
  15. public function testSDKExecute()
  16. {
  17. $bizParams = array(
  18. "subject" => "Iphone6 16G",
  19. "out_trade_no" => "f4833085-0c46-4bb0-8e5f-622a02a4cffc",
  20. "total_amount" => "0.10"
  21. );
  22. $textParams = array();
  23. $result = Factory::util()->generic()->sdkExecute("alipay.trade.app.pay", $textParams, $bizParams);
  24. $this->assertEquals(true, strpos($result->body, 'alipay_sdk=alipay-easysdk-php') > 0);
  25. $this->assertEquals(true, strpos($result->body, 'sign') > 0);
  26. }
  27. public function testFileExecute()
  28. {
  29. $textParams = array(
  30. "image_type" => "png",
  31. "image_name" => "海底捞",
  32. "image_pids" => "22088021822217233"
  33. );
  34. $account = new TestAccount();
  35. $filePath = $account->getResourcesPath(). '/resources/fixture/sample.png';
  36. $fileParams = array(
  37. "image_content" => $filePath
  38. );
  39. $result = Factory::util()->generic()->fileExecute("alipay.offline.material.image.upload", $textParams, null, $fileParams);
  40. $responseChecker = new ResponseChecker();
  41. $this->assertEquals(true, $responseChecker->success($result));
  42. $this->assertEquals('Success', $result->msg);
  43. }
  44. public function testExecuteWithoutAppAuthToken()
  45. {
  46. $result = Factory::util()->generic()->execute("alipay.trade.create", null, $this->getBizParams(microtime()));
  47. $this->assertEquals('10000', $result->code);
  48. $this->assertEquals('Success', $result->msg);
  49. }
  50. public function testExecuteWithAppAuthToken()
  51. {
  52. $result = Factory::util()->generic()->execute("alipay.trade.create", $this->getTextParams(), $this->getBizParams(microtime()));
  53. $this->assertEquals('20001', $result->code);
  54. $this->assertEquals('Insufficient Token Permissions', $result->msg);
  55. $this->assertEquals('aop.invalid-app-auth-token', $result->subCode);
  56. $this->assertEquals('无效的应用授权令牌', $result->subMsg);
  57. }
  58. //设置系统参数(OpenAPI中非biz_content里的参数)
  59. private function getTextParams()
  60. {
  61. return array("app_auth_token" => "201712BB_D0804adb2e743078d1822d536956X34");
  62. }
  63. private function getBizParams($outTradeNo)
  64. {
  65. $bizParams = array(
  66. "subject" => "Iphone6 16G",
  67. "out_trade_no" => $outTradeNo,
  68. "total_amount" => "0.10",
  69. "buyer_id" => "2088002656718920",
  70. "extend_params" => $this->getHuabeiParams()
  71. );
  72. return $bizParams;
  73. }
  74. private function getHuabeiParams()
  75. {
  76. $extendParams = array("hb_fq_num" => "3", "hb_fq_seller_percent" => "3");
  77. return $extendParams;
  78. }
  79. }