mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-10-29 01:18:36 +08:00
🎨 重构补充部分单元测试代码
This commit is contained in:
@ -7,6 +7,7 @@ import java.util.concurrent.ExecutorService;
|
||||
import java.util.concurrent.Executors;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
import me.chanjar.weixin.common.api.WxConsts;
|
||||
import me.chanjar.weixin.common.bean.WxJsapiSignature;
|
||||
import me.chanjar.weixin.common.bean.WxNetCheckResult;
|
||||
import me.chanjar.weixin.common.error.WxErrorException;
|
||||
import me.chanjar.weixin.mp.api.WxMpService;
|
||||
@ -57,52 +58,6 @@ public class BaseWxMpServiceImplTest {
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testNectCheckResult() {
|
||||
String json = "{\n" +
|
||||
" \"dns\": [\n" +
|
||||
" {\n" +
|
||||
" \"ip\": \"111.161.64.40\", \n" +
|
||||
" \"real_operator\": \"UNICOM\"\n" +
|
||||
" }, \n" +
|
||||
" {\n" +
|
||||
" \"ip\": \"111.161.64.48\", \n" +
|
||||
" \"real_operator\": \"UNICOM\"\n" +
|
||||
" }\n" +
|
||||
" ], \n" +
|
||||
" \"ping\": [\n" +
|
||||
" {\n" +
|
||||
" \"ip\": \"111.161.64.40\", \n" +
|
||||
" \"from_operator\": \"UNICOM\"," +
|
||||
" \"package_loss\": \"0%\", \n" +
|
||||
" \"time\": \"23.079ms\"\n" +
|
||||
" }, \n" +
|
||||
" {\n" +
|
||||
" \"ip\": \"111.161.64.48\", \n" +
|
||||
" \"from_operator\": \"UNICOM\", \n" +
|
||||
" \"package_loss\": \"0%\", \n" +
|
||||
" \"time\": \"21.434ms\"\n" +
|
||||
" }\n" +
|
||||
" ]\n" +
|
||||
"}";
|
||||
WxNetCheckResult result = WxNetCheckResult.fromJson(json);
|
||||
Assert.assertNotNull(result);
|
||||
Assert.assertNotNull(result.getDnsInfos());
|
||||
|
||||
WxNetCheckResult.WxNetCheckDnsInfo dnsInfo = new WxNetCheckResult.WxNetCheckDnsInfo();
|
||||
dnsInfo.setIp("111.161.64.40");
|
||||
dnsInfo.setRealOperator("UNICOM");
|
||||
Assert.assertEquals(result.getDnsInfos().get(0), dnsInfo);
|
||||
|
||||
WxNetCheckResult.WxNetCheckPingInfo pingInfo = new WxNetCheckResult.WxNetCheckPingInfo();
|
||||
pingInfo.setTime("21.434ms");
|
||||
pingInfo.setFromOperator("UNICOM");
|
||||
pingInfo.setIp("111.161.64.48");
|
||||
pingInfo.setPackageLoss("0%");
|
||||
Assert.assertEquals(result.getPingInfos().get(1), pingInfo);
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGetCallbackIP() throws WxErrorException {
|
||||
String[] ipArray = this.wxService.getCallbackIP();
|
||||
@ -174,7 +129,11 @@ public class BaseWxMpServiceImplTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCreateJsapiSignature() {
|
||||
public void testCreateJsapiSignature() throws WxErrorException {
|
||||
final WxJsapiSignature jsapiSignature = this.wxService.createJsapiSignature("http://www.baidu.com");
|
||||
assertThat(jsapiSignature).isNotNull();
|
||||
assertThat(jsapiSignature.getSignature()).isNotNull();
|
||||
System.out.println(jsapiSignature);
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
Reference in New Issue
Block a user