Fix / prefix match

This commit is contained in:
Nikolay Kim 2020-04-11 11:33:16 +06:00
parent 392e1f8503
commit bf3388258c
4 changed files with 21 additions and 2 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.3.3] - 2020-04-11
* Fix `/` prefix match
## [0.3.2] - 2020-04-06
* Fix IdxSegment item for paths with no root

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-router"
version = "0.3.2"
version = "0.3.3"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Path router"
keywords = ["ntex"]

View file

@ -761,6 +761,11 @@ mod tests {
#[test]
fn test_resource_prefix() {
let tree = Tree::new(&ResourceDef::prefix("/"), 1);
assert_eq!(tree.find(&mut Path::new("/")), Some(1));
assert_eq!(tree.find(&mut Path::new("/a")), Some(1));
assert_eq!(tree.find(&mut Path::new("/a/test/test")), Some(1));
let tree = Tree::new(&ResourceDef::prefix("/name"), 1);
assert_eq!(tree.find(&mut Path::new("/name")), Some(1));
assert_eq!(tree.find(&mut Path::new("/name/")), Some(1));

View file

@ -208,7 +208,7 @@ impl Tree {
if path == "/" {
for val in &self.value {
let v = match val {
Value::Slesh(v) | Value::Prefix(v) => *v,
Value::Slesh(v) | Value::Prefix(v) | Value::PrefixSlesh(v) => *v,
_ => continue,
};
if check(v, resource) {
@ -225,6 +225,16 @@ impl Tree {
return Some(v);
}
}
} else {
for val in &self.value {
let v = match val {
Value::PrefixSlesh(v) => *v,
_ => continue,
};
if check(v, resource) {
return Some(v);
}
}
}
let path = if path.starts_with('/') {