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

This commit is contained in:
Looly
2024-11-12 18:54:19 +08:00
parent ab4fefc892
commit 0ba6c8ecda
3 changed files with 21 additions and 1 deletions

View File

@@ -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));
}
}