forked from olivere/elastic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
canonicalize_test.go
53 lines (49 loc) · 1.42 KB
/
canonicalize_test.go
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
// Copyright 2012-present Oliver Eilhard. All rights reserved.
// Use of this source code is governed by a MIT-license.
// See http://olivere.mit-license.org/license.txt for details.
package elastic
import (
"reflect"
"testing"
)
func TestCanonicalize(t *testing.T) {
tests := []struct {
Input []string
Output []string
}{
{
Input: []string{"http://127.0.0.1/"},
Output: []string{"http://127.0.0.1"},
},
{
Input: []string{"http://127.0.0.1:9200/", "gopher://golang.org/", "http://127.0.0.1:9201"},
Output: []string{"http://127.0.0.1:9200", "http://127.0.0.1:9201"},
},
{
Input: []string{"http://user:[email protected]/path?query=1#fragment"},
Output: []string{"http://user:[email protected]/path"},
},
{
Input: []string{"https://somewhere.on.mars:9999/path?query=1#fragment"},
Output: []string{"https://somewhere.on.mars:9999/path"},
},
{
Input: []string{"https://prod1:9999/one?query=1#fragment", "https://prod2:9998/two?query=1#fragment"},
Output: []string{"https://prod1:9999/one", "https://prod2:9998/two"},
},
{
Input: []string{"http://127.0.0.1/one/"},
Output: []string{"http://127.0.0.1/one"},
},
{
Input: []string{"http://127.0.0.1/one///"},
Output: []string{"http://127.0.0.1/one"},
},
}
for _, test := range tests {
got := canonicalize(test.Input...)
if !reflect.DeepEqual(got, test.Output) {
t.Errorf("expected %v; got: %v", test.Output, got)
}
}
}