增加Windows微信浏览器识别(issue#IB3SJF@Gitee)

This commit is contained in:
Looly
2024-11-12 18:54:26 +08:00
parent 0ec182e03e
commit d88eac0dac
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package org.dromara.hutool.http.useragent;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
public class IssueIB3SJFTest {
@Test
void isMobileTest() {
final String str="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 NetType/WIFI " +
"MicroMessenger/7.0.20.1781(0x6700143B) WindowsWechat(0x63090c11) XWEB/11275 Flue";
final UserAgent ua = UserAgentUtil.parse(str);
Assertions.assertFalse(ua.isMobile());
Assertions.assertEquals("7.0.20.1781", ua.getBrowser().getVersion(str));
}
}