🆕 #2646 【微信支付】增加报关v3接口
This commit is contained in:
@@ -0,0 +1,74 @@
|
||||
package com.github.binarywang.wxpay.service.impl;
|
||||
|
||||
import com.github.binarywang.wxpay.bean.customs.*;
|
||||
import com.github.binarywang.wxpay.exception.WxPayException;
|
||||
import com.github.binarywang.wxpay.service.CustomDeclarationService;
|
||||
import com.github.binarywang.wxpay.service.WxPayService;
|
||||
import com.github.binarywang.wxpay.testbase.ApiTestModule;
|
||||
import com.google.gson.Gson;
|
||||
import com.google.gson.GsonBuilder;
|
||||
import com.google.inject.Inject;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.testng.annotations.Guice;
|
||||
import org.testng.annotations.Test;
|
||||
|
||||
@Slf4j
|
||||
@Test
|
||||
@Guice(modules = ApiTestModule.class)
|
||||
public class CustomDeclarationServiceImplTest {
|
||||
private static final Gson GSON = new GsonBuilder().create();
|
||||
@Inject
|
||||
private WxPayService wxPayService;
|
||||
|
||||
@Test
|
||||
public void testDeclare() throws WxPayException {
|
||||
CustomDeclarationService customDeclarationService = new CustomDeclarationServiceImpl(wxPayService);
|
||||
String requestParamStr = "{\"appid\":\"wx4275b35dac8f1bde\",\"mchid\":\"1623887211\",\"out_trade_no\":\"schiff32205031811186126779176\",\"transaction_id\":\"4200001480202205035540107159\",\"customs\":\"NINGBO\",\"merchant_customs_no\":\"4401230148\"}";
|
||||
DeclarationRequest request = GSON.fromJson(requestParamStr, DeclarationRequest.class);
|
||||
|
||||
DeclarationResult result = customDeclarationService.declare(request);
|
||||
System.out.println("result = " + result);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testQuery() throws WxPayException {
|
||||
CustomDeclarationService customDeclarationService = new CustomDeclarationServiceImpl(wxPayService);
|
||||
String requestParamStr = "{\"appid\":\"wx4275b35dac8f1bde\",\"mchid\":\"1623887211\",\"order_type\":\"transaction_id\",\"order_no\":\"4200001480202205035540107159\",\"customs\":\"NINGBO\",\"offset\":\"0\",\"limit\":\"20\"}";
|
||||
DeclarationQueryRequest request = GSON.fromJson(requestParamStr, DeclarationQueryRequest.class);
|
||||
|
||||
DeclarationQueryResult result = customDeclarationService.query(request);
|
||||
System.out.println("result = " + result);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testVerifyCertificate() throws WxPayException {
|
||||
CustomDeclarationService customDeclarationService = new CustomDeclarationServiceImpl(wxPayService);
|
||||
String requestParamStr = "{\"appid\":\"wx4275b35dac8f1bde\",\"mchid\":\"1623887211\",\"out_trade_no\":\"schiff32205031811186126779176\",\"transaction_id\":\"4200001480202205035540107159\",\"customs\":\"NINGBO\",\"merchant_customs_no\":\"4401230148\",\"certificate_type\":\"IDCARD\",\"certificate_id\":\"430223199101264838\",\"certificate_name\":\"易株强\"}";
|
||||
VerifyCertificateRequest request = GSON.fromJson(requestParamStr, VerifyCertificateRequest.class);
|
||||
|
||||
VerifyCertificateResult result = customDeclarationService.verifyCertificate(request);
|
||||
System.out.println("result = " + result);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testModify() throws WxPayException {
|
||||
CustomDeclarationService customDeclarationService = new CustomDeclarationServiceImpl(wxPayService);
|
||||
|
||||
String requestParamStr = "{\"appid\":\"wx4275b35dac8f1bde\",\"mchid\":\"1623887211\",\"out_trade_no\":\"schiff32205031811186126779176\",\"transaction_id\":\"4200001480202205035540107159\",\"customs\":\"NINGBO\",\"merchant_customs_no\":\"4401230148\"}";
|
||||
|
||||
DeclarationRequest request = GSON.fromJson(requestParamStr, DeclarationRequest.class);
|
||||
|
||||
DeclarationResult result = customDeclarationService.modify(request);
|
||||
System.out.println("result = " + result);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testRedeclare() throws WxPayException {
|
||||
CustomDeclarationService customDeclarationService = new CustomDeclarationServiceImpl(wxPayService);
|
||||
String requestParamStr = "{\"appid\":\"wx4275b35dac8f1bde\",\"mchid\":\"1623887211\",\"out_trade_no\":\"schiff32205031811186126779176\",\"transaction_id\":\"4200001480202205035540107159\",\"customs\":\"NINGBO\",\"merchant_customs_no\":\"4401230148\"}";
|
||||
RedeclareRequest request = GSON.fromJson(requestParamStr, RedeclareRequest.class);
|
||||
|
||||
RedeclareResult result = customDeclarationService.redeclare(request);
|
||||
System.out.println("result = " + result);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user