mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
Fix / prefix match
This commit is contained in:
parent
392e1f8503
commit
bf3388258c
4 changed files with 21 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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"]
|
||||
|
|
|
@ -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));
|
||||
|
|
|
@ -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('/') {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue