RouteHttpHandler

This commit is contained in:
Looly
2024-12-26 00:10:45 +08:00
parent ae7e3b76cb
commit 0ead90d433
7 changed files with 264 additions and 14 deletions

View File

@@ -23,7 +23,6 @@ import org.dromara.hutool.http.HttpUtil;
import org.dromara.hutool.http.meta.ContentType;
import org.dromara.hutool.http.meta.HeaderName;
import org.dromara.hutool.http.multipart.UploadFile;
import org.dromara.hutool.http.server.engine.sun.SunServerRequest;
import org.dromara.hutool.json.JSONUtil;
import java.net.HttpCookie;
@@ -40,7 +39,7 @@ public class SimpleServerTest {
.setRoot(FileUtil.file("html"))
// get数据测试返回请求的PATH
.addAction("/get", (request, response) ->
response.write(((SunServerRequest)request).getURI().toString(), ContentType.TEXT_PLAIN.toString())
response.write(request.getPath(), ContentType.TEXT_PLAIN.toString())
)
// 返回JSON数据测试
.addAction("/restTest", (request, response) -> {

View File

@@ -0,0 +1,51 @@
/*
* 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.http.server.handler;
import org.dromara.hutool.core.lang.Console;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
public class PathTrieTest {
@Test
public void testPathTrie() {
final PathTrie trie = new PathTrie();
// 添加一些路径和对应的处理器
trie.add("/user", (req, res) -> Console.log("User handler"));
trie.add("/user/profile", (req, res) -> Console.log("Profile handler"));
// 测试精确匹配
assertNotNull(trie.match("/user"));
// 匹配父路径
assertNotNull(trie.match("/user/test1"));
// 匹配最近的上级路径
assertNotNull(trie.match("/user/test1/test2"));
// 自动忽略空路径,尾部的/也忽略
assertNotNull(trie.match("/user/profile"));
assertNotNull(trie.match("/user/profile/"));
assertNotNull(trie.match("/user////profile/"));
// 测试不存在的路径
assertNull(trie.match("/nonexistent"));
assertNull(trie.match("/"));
assertNull(trie.match(""));
assertNull(trie.match(null));
}
}