-
Notifications
You must be signed in to change notification settings - Fork 627
/
Copy pathelasticsearch_internal_test.go
executable file
·199 lines (168 loc) · 4.73 KB
/
elasticsearch_internal_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
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
// +build !integration
package elasticsearch
import (
"errors"
"net/http"
"net/url"
"os"
"regexp"
"testing"
"github.com/elastic/go-elasticsearch/estransport"
)
func TestClientConfiguration(t *testing.T) {
t.Parallel()
t.Run("With empty", func(t *testing.T) {
_, err := NewDefaultClient()
if err != nil {
t.Errorf("Unexpected error: %s", err)
}
})
t.Run("With address", func(t *testing.T) {
c, err := NewClient(Config{Addresses: []string{"http://localhost:8080//"}})
if err != nil {
t.Fatalf("Unexpected error: %s", err)
}
u := c.Transport.(*estransport.Client).URLs()[0].String()
if u != "http://localhost:8080" {
t.Errorf("Unexpected URL, want=http://localhost:8080, got=%s", u)
}
})
t.Run("With URL from environment", func(t *testing.T) {
os.Setenv("ELASTICSEARCH_URL", "http://example.com")
defer func() { os.Setenv("ELASTICSEARCH_URL", "") }()
c, err := NewDefaultClient()
if err != nil {
t.Errorf("Unexpected error: %s", err)
}
u := c.Transport.(*estransport.Client).URLs()[0].String()
if u != "http://example.com" {
t.Errorf("Unexpected URL, want=http://example.com, got=%s", u)
}
})
t.Run("With URL from environment and cfg.Addresses", func(t *testing.T) {
os.Setenv("ELASTICSEARCH_URL", "http://example.com")
defer func() { os.Setenv("ELASTICSEARCH_URL", "") }()
_, err := NewClient(Config{Addresses: []string{"http://localhost:8080//"}})
if err == nil {
t.Fatalf("Expected error, got: %v", err)
}
match, _ := regexp.MatchString("both .* are set", err.Error())
if !match {
t.Errorf("Expected error when addresses from environment and configuration are used together, got: %v", err)
}
})
t.Run("With invalid URL", func(t *testing.T) {
u := ":foo"
_, err := NewClient(Config{Addresses: []string{u}})
if err == nil {
t.Errorf("Expected error for URL %q, got %v", u, err)
}
})
t.Run("With invalid URL from environment", func(t *testing.T) {
os.Setenv("ELASTICSEARCH_URL", ":foobar")
defer func() { os.Setenv("ELASTICSEARCH_URL", "") }()
c, err := NewDefaultClient()
if err == nil {
t.Errorf("Expected error, got: %+v", c)
}
})
}
var called bool
type mockTransp struct{}
func (t *mockTransp) RoundTrip(req *http.Request) (*http.Response, error) {
called = true
return &http.Response{}, nil
}
func TestClientInterface(t *testing.T) {
t.Run("Transport", func(t *testing.T) {
c, err := NewClient(Config{Transport: &mockTransp{}})
if err != nil {
t.Fatalf("Unexpected error: %s", err)
}
if called != false { // megacheck ignore
t.Errorf("Unexpected call to transport by client")
}
c.Perform(&http.Request{URL: &url.URL{}}) // errcheck ignore
if called != true { // megacheck ignore
t.Errorf("Expected client to call transport")
}
})
}
func TestAddrsToURLs(t *testing.T) {
tt := []struct {
name string
addrs []string
urls []*url.URL
err error
}{
{
name: "valid",
addrs: []string{
"http://example.com",
"https://example.com",
"http://192.168.255.255",
"http://example.com:8080",
},
urls: []*url.URL{
{Scheme: "http", Host: "example.com"},
{Scheme: "https", Host: "example.com"},
{Scheme: "http", Host: "192.168.255.255"},
{Scheme: "http", Host: "example.com:8080"},
},
err: nil,
},
{
name: "trim trailing slash",
addrs: []string{"http://example.com/", "http://example.com//"},
urls: []*url.URL{
{Scheme: "http", Host: "example.com", Path: ""},
{Scheme: "http", Host: "example.com", Path: ""},
},
},
{
name: "keep suffix",
addrs: []string{"http://example.com/foo"},
urls: []*url.URL{{Scheme: "http", Host: "example.com", Path: "/foo"}},
},
{
name: "invalid url",
addrs: []string{"://invalid.com"},
urls: nil,
err: errors.New("missing protocol scheme"),
},
}
for _, tc := range tt {
t.Run(tc.name, func(t *testing.T) {
res, err := addrsToURLs(tc.addrs)
if tc.err != nil {
if err == nil {
t.Errorf("Expected error, got: %v", err)
}
match, _ := regexp.MatchString(tc.err.Error(), err.Error())
if !match {
t.Errorf("Expected err [%s] to match: %s", err.Error(), tc.err.Error())
}
}
for i := range tc.urls {
if res[i].Scheme != tc.urls[i].Scheme {
t.Errorf("%s: Unexpected scheme, want=%s, got=%s", tc.name, tc.urls[i].Scheme, res[i].Scheme)
}
}
for i := range tc.urls {
if res[i].Host != tc.urls[i].Host {
t.Errorf("%s: Unexpected host, want=%s, got=%s", tc.name, tc.urls[i].Host, res[i].Host)
}
}
for i := range tc.urls {
if res[i].Path != tc.urls[i].Path {
t.Errorf("%s: Unexpected path, want=%s, got=%s", tc.name, tc.urls[i].Path, res[i].Path)
}
}
})
}
}
func TestVersion(t *testing.T) {
if Version == "" {
t.Error("Version is empty")
}
}