mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 19:56:51 +08:00
70 lines
1.2 KiB
Go
70 lines
1.2 KiB
Go
|
package trie
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestTrie_Basic(t *testing.T) {
|
||
|
tree := New()
|
||
|
domains := []string{
|
||
|
"example.com",
|
||
|
"google.com",
|
||
|
}
|
||
|
|
||
|
for _, domain := range domains {
|
||
|
tree.Insert(domain, net.ParseIP("127.0.0.1"))
|
||
|
}
|
||
|
|
||
|
node := tree.Search("example.com")
|
||
|
if node == nil {
|
||
|
t.Error("should not recv nil")
|
||
|
}
|
||
|
|
||
|
if !node.Data.(net.IP).Equal(net.IP{127, 0, 0, 1}) {
|
||
|
t.Error("should equal 127.0.0.1")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestTrie_Wildcard(t *testing.T) {
|
||
|
tree := New()
|
||
|
domains := []string{
|
||
|
"*.example.com",
|
||
|
"sub.*.example.com",
|
||
|
"*.dev",
|
||
|
}
|
||
|
|
||
|
for _, domain := range domains {
|
||
|
tree.Insert(domain, nil)
|
||
|
}
|
||
|
|
||
|
if tree.Search("sub.example.com") == nil {
|
||
|
t.Error("should not recv nil")
|
||
|
}
|
||
|
|
||
|
if tree.Search("sub.foo.example.com") == nil {
|
||
|
t.Error("should not recv nil")
|
||
|
}
|
||
|
|
||
|
if tree.Search("foo.sub.example.com") != nil {
|
||
|
t.Error("should recv nil")
|
||
|
}
|
||
|
|
||
|
if tree.Search("foo.example.dev") != nil {
|
||
|
t.Error("should recv nil")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestTrie_Boundary(t *testing.T) {
|
||
|
tree := New()
|
||
|
tree.Insert("*.dev", nil)
|
||
|
|
||
|
if err := tree.Insert("com", nil); err == nil {
|
||
|
t.Error("should recv err")
|
||
|
}
|
||
|
|
||
|
if tree.Search("dev") != nil {
|
||
|
t.Error("should recv nil")
|
||
|
}
|
||
|
}
|