mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
增加Windows微信浏览器识别(issue#IB3SJF@Gitee)
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package cn.hutool.http.useragent;
|
||||
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class IssueIB3SJFTest {
|
||||
@Test
|
||||
void isMobileTest() {
|
||||
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";
|
||||
UserAgent ua = UserAgentUtil.parse(str);
|
||||
|
||||
Assertions.assertFalse(ua.isMobile());
|
||||
Assertions.assertEquals("7.0.20.1781", ua.getBrowser().getVersion(str));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user