From 605c63e5a88f2217863041387aa8d159929d4968 Mon Sep 17 00:00:00 2001 From: Looly Date: Thu, 3 Oct 2024 11:12:03 +0800 Subject: [PATCH] add test --- .../hutool/core/xml/IssueIASB22Test.java | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 hutool-core/src/test/java/org/dromara/hutool/core/xml/IssueIASB22Test.java diff --git a/hutool-core/src/test/java/org/dromara/hutool/core/xml/IssueIASB22Test.java b/hutool-core/src/test/java/org/dromara/hutool/core/xml/IssueIASB22Test.java new file mode 100644 index 000000000..0d1c36409 --- /dev/null +++ b/hutool-core/src/test/java/org/dromara/hutool/core/xml/IssueIASB22Test.java @@ -0,0 +1,38 @@ +/* + * Copyright (c) 2024 Hutool Team and hutool.cn + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.dromara.hutool.core.xml; + +import org.dromara.hutool.core.io.file.FileUtil; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; +import org.w3c.dom.Document; + +import javax.xml.xpath.XPathConstants; +import java.io.File; + +public class IssueIASB22Test { + @Test + @Disabled + void getByPathTest() { + final File xmlFile = FileUtil.file("D:/test/pom.xml"); + final Document docResult = XmlUtil.readXml(xmlFile); + final Object value = XPathUtil.getByXPath("//project/artifactId", docResult, XPathConstants.STRING, + new UniversalNamespaceCache(docResult, false)); + Assertions.assertTrue(value.toString().isEmpty()); + } +}