mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-05-02 20:02:37 +08:00
🎨 增加微信推送的自定义交易组件付款通知事件类型OPEN_PRODUCT_ORDER_PAY
This commit is contained in:
parent
3477e41ad2
commit
aa19a2874d
@ -413,6 +413,10 @@ public class WxConsts {
|
||||
*/
|
||||
public static final String WEAPP_AUDIT_FAIL = "weapp_audit_fail";
|
||||
|
||||
/**
|
||||
* 小程序自定义交易组件支付通知
|
||||
*/
|
||||
public static final String OPEN_PRODUCT_ORDER_PAY = "open_product_order_pay";
|
||||
/**
|
||||
* 点击菜单跳转小程序的事件推送
|
||||
*/
|
||||
|
@ -6,6 +6,7 @@ import org.testng.annotations.Test;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import static org.assertj.core.api.Assertions.as;
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
import static org.testng.Assert.assertEquals;
|
||||
import static org.testng.Assert.assertNotNull;
|
||||
@ -291,4 +292,40 @@ public class WxMaMessageTest {
|
||||
.containsEntry("Lat", "0")
|
||||
.containsEntry("Lng", "0");
|
||||
}
|
||||
|
||||
/**
|
||||
* 自定义交易组件付款通知事件测试用例
|
||||
* msgType等于event且event等于WxConsts.EventType.OPEN_PRODUCT_ORDER_PAY
|
||||
*/
|
||||
@Test
|
||||
public void testFromXmlForOpenProductOrderPayEvent(){
|
||||
String xml = "<xml> \n" +
|
||||
" <ToUserName>gh_abcdefg</ToUserName> \n" +
|
||||
" <FromUserName>oABCD</FromUserName> \n" +
|
||||
" <CreateTime>1642658087</CreateTime> \n" +
|
||||
" <MsgType>event</MsgType> \n" +
|
||||
" <Event>open_product_order_pay</Event>\n" +
|
||||
" <order_info>\n" +
|
||||
" <out_order_id>123456</out_order_id>\n" +
|
||||
" <order_id>1234567</order_id>\n" +
|
||||
" <transaction_id>42000000123123</transaction_id>\n" +
|
||||
" <pay_time>2021-12-30 22:31:00</pay_time>\n" +
|
||||
" <amount>10</amount>\n" +
|
||||
" <sp_openid>oNMZ-5C0SPGHUiKsTwnOXpSHzFvw</sp_openid>\n" +
|
||||
" </order_info>\n" +
|
||||
"</xml>";
|
||||
WxMaMessage wxMessage = WxMaMessage.fromXml(xml);
|
||||
assertThat(wxMessage.getMsgType()).isEqualTo("event");
|
||||
assertThat(wxMessage.getEvent()).isEqualTo(WxConsts.EventType.OPEN_PRODUCT_ORDER_PAY);
|
||||
Map<String, Object> allFieldsMap = wxMessage.getAllFieldsMap();
|
||||
Map<String, Object> orderInfo = (Map<String, Object>) allFieldsMap.get("order_info");
|
||||
assertThat(orderInfo).isNotEmpty();
|
||||
assertThat(orderInfo)
|
||||
.containsEntry("out_order_id","123456")
|
||||
.containsEntry("order_id","1234567")
|
||||
.containsEntry("transaction_id","42000000123123")
|
||||
.containsEntry("pay_time","2021-12-30 22:31:00")
|
||||
.containsEntry("amount","10")
|
||||
.containsEntry("sp_openid","oNMZ-5C0SPGHUiKsTwnOXpSHzFvw");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user