1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
|
package trie
import (
"testing"
)
func TestPathInsert(t *testing.T) {
trie := New()
if trie.root == nil {
t.Error("Expected to not be nil")
}
trie.AddRoute("GET", "/", "1")
if trie.root.Children["/"] == nil {
t.Error("Expected to not be nil")
}
trie.AddRoute("GET", "/r", "2")
if trie.root.Children["/"].Children["r"] == nil {
t.Error("Expected to not be nil")
}
trie.AddRoute("GET", "/r/", "3")
if trie.root.Children["/"].Children["r"].Children["/"] == nil {
t.Error("Expected to not be nil")
}
}
func TestTrieCompression(t *testing.T) {
trie := New()
trie.AddRoute("GET", "/abc", "3")
trie.AddRoute("GET", "/adc", "3")
// before compression
if trie.root.Children["/"].Children["a"].Children["b"].Children["c"] == nil {
t.Error("Expected to not be nil")
}
if trie.root.Children["/"].Children["a"].Children["d"].Children["c"] == nil {
t.Error("Expected to not be nil")
}
trie.Compress()
// after compression
if trie.root.Children["/abc"] == nil {
t.Errorf("%+v", trie.root)
}
if trie.root.Children["/adc"] == nil {
t.Errorf("%+v", trie.root)
}
}
func TestParamInsert(t *testing.T) {
trie := New()
trie.AddRoute("GET", "/:id/", "")
if trie.root.Children["/"].ParamChild.Children["/"] == nil {
t.Error("Expected to not be nil")
}
if trie.root.Children["/"].ParamName != "id" {
t.Error("Expected ParamName to be id")
}
trie.AddRoute("GET", "/:id/:property.:format", "")
if trie.root.Children["/"].ParamChild.Children["/"].ParamChild.Children["."].ParamChild == nil {
t.Error("Expected to not be nil")
}
if trie.root.Children["/"].ParamName != "id" {
t.Error("Expected ParamName to be id")
}
if trie.root.Children["/"].ParamChild.Children["/"].ParamName != "property" {
t.Error("Expected ParamName to be property")
}
if trie.root.Children["/"].ParamChild.Children["/"].ParamChild.Children["."].ParamName != "format" {
t.Error("Expected ParamName to be format")
}
}
func TestRelaxedInsert(t *testing.T) {
trie := New()
trie.AddRoute("GET", "/#id/", "")
if trie.root.Children["/"].RelaxedChild.Children["/"] == nil {
t.Error("Expected to not be nil")
}
if trie.root.Children["/"].RelaxedName != "id" {
t.Error("Expected RelaxedName to be id")
}
}
func TestSplatInsert(t *testing.T) {
trie := New()
trie.AddRoute("GET", "/*splat", "")
if trie.root.Children["/"].SplatChild == nil {
t.Error("Expected to not be nil")
}
}
func TestDupeInsert(t *testing.T) {
trie := New()
trie.AddRoute("GET", "/", "1")
err := trie.AddRoute("GET", "/", "2")
if err == nil {
t.Error("Expected to not be nil")
}
if trie.root.Children["/"].HttpMethodToRoute["GET"] != "1" {
t.Error("Expected to be 1")
}
}
func isInMatches(test string, matches []*Match) bool {
for _, match := range matches {
if match.Route.(string) == test {
return true
}
}
return false
}
func TestFindRoute(t *testing.T) {
trie := New()
trie.AddRoute("GET", "/", "root")
trie.AddRoute("GET", "/r/:id", "resource")
trie.AddRoute("GET", "/r/:id/property", "property")
trie.AddRoute("GET", "/r/:id/property.*format", "property_format")
trie.AddRoute("GET", "/user/#username/property", "user_property")
trie.Compress()
matches := trie.FindRoutes("GET", "/")
if len(matches) != 1 {
t.Errorf("expected one route, got %d", len(matches))
}
if !isInMatches("root", matches) {
t.Error("expected 'root'")
}
matches = trie.FindRoutes("GET", "/notfound")
if len(matches) != 0 {
t.Errorf("expected zero route, got %d", len(matches))
}
matches = trie.FindRoutes("GET", "/r/1")
if len(matches) != 1 {
t.Errorf("expected one route, got %d", len(matches))
}
if !isInMatches("resource", matches) {
t.Errorf("expected 'resource', got %+v", matches)
}
if matches[0].Params["id"] != "1" {
t.Error("Expected Params id to be 1")
}
matches = trie.FindRoutes("GET", "/r/1/property")
if len(matches) != 1 {
t.Errorf("expected one route, got %d", len(matches))
}
if !isInMatches("property", matches) {
t.Error("expected 'property'")
}
if matches[0].Params["id"] != "1" {
t.Error("Expected Params id to be 1")
}
matches = trie.FindRoutes("GET", "/r/1/property.json")
if len(matches) != 1 {
t.Errorf("expected one route, got %d", len(matches))
}
if !isInMatches("property_format", matches) {
t.Error("expected 'property_format'")
}
if matches[0].Params["id"] != "1" {
t.Error("Expected Params id to be 1")
}
if matches[0].Params["format"] != "json" {
t.Error("Expected Params format to be json")
}
matches = trie.FindRoutes("GET", "/user/antoine.imbert/property")
if len(matches) != 1 {
t.Errorf("expected one route, got %d", len(matches))
}
if !isInMatches("user_property", matches) {
t.Error("expected 'user_property'")
}
if matches[0].Params["username"] != "antoine.imbert" {
t.Error("Expected Params username to be antoine.imbert")
}
}
func TestFindRouteMultipleMatches(t *testing.T) {
trie := New()
trie.AddRoute("GET", "/r/1", "resource1")
trie.AddRoute("GET", "/r/2", "resource2")
trie.AddRoute("GET", "/r/:id", "resource_generic")
trie.AddRoute("GET", "/s/*rest", "special_all")
trie.AddRoute("GET", "/s/:param", "special_generic")
trie.AddRoute("GET", "/s/#param", "special_relaxed")
trie.AddRoute("GET", "/", "root")
trie.Compress()
matches := trie.FindRoutes("GET", "/r/1")
if len(matches) != 2 {
t.Errorf("expected two matches, got %d", len(matches))
}
if !isInMatches("resource_generic", matches) {
t.Error("Expected resource_generic to match")
}
if !isInMatches("resource1", matches) {
t.Error("Expected resource1 to match")
}
matches = trie.FindRoutes("GET", "/s/1")
if len(matches) != 3 {
t.Errorf("expected two matches, got %d", len(matches))
}
if !isInMatches("special_all", matches) {
t.Error("Expected special_all to match")
}
if !isInMatches("special_generic", matches) {
t.Error("Expected special_generic to match")
}
if !isInMatches("special_relaxed", matches) {
t.Error("Expected special_relaxed to match")
}
}
func TestConsistentPlaceholderName(t *testing.T) {
trie := New()
trie.AddRoute("GET", "/r/:id", "oneph")
err := trie.AddRoute("GET", "/r/:rid/other", "twoph")
if err == nil {
t.Error("Should have died on inconsistent placeholder name")
}
trie.AddRoute("GET", "/r/#id", "oneph")
err = trie.AddRoute("GET", "/r/#rid/other", "twoph")
if err == nil {
t.Error("Should have died on inconsistent placeholder name")
}
trie.AddRoute("GET", "/r/*id", "oneph")
err = trie.AddRoute("GET", "/r/*rid", "twoph")
if err == nil {
t.Error("Should have died on duplicated route")
}
}
func TestDuplicateName(t *testing.T) {
trie := New()
err := trie.AddRoute("GET", "/r/:id/o/:id", "two")
if err == nil {
t.Error("Should have died, this route has two placeholder named `id`")
}
err = trie.AddRoute("GET", "/r/:id/o/*id", "two")
if err == nil {
t.Error("Should have died, this route has two placeholder named `id`")
}
err = trie.AddRoute("GET", "/r/:id/o/#id", "two")
if err == nil {
t.Error("Should have died, this route has two placeholder named `id`")
}
}
|