-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconnection_test.go
More file actions
154 lines (131 loc) · 3.95 KB
/
Copy pathconnection_test.go
File metadata and controls
154 lines (131 loc) · 3.95 KB
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
package solr
import (
"context"
"net"
"net/http"
"net/http/httptest"
"sync/atomic"
"testing"
"time"
)
func TestNewConnection(t *testing.T) {
_, err := NewConnection("", "mycore", http.DefaultClient)
if err == nil {
t.Fatal("shouldn't run without a host")
}
_, err = NewConnection("invalid", "mycore", http.DefaultClient)
if err == nil {
t.Fatal("shouldn't run without a proper host")
}
_, err = NewConnection("http://localhost", "", http.DefaultClient)
if err == nil {
t.Fatal("shouldn't run without a core defined")
}
c, err := NewConnection("http://localhost:8983", "mycore", http.DefaultClient)
if err != nil {
t.Fatal("shouldn't get an error but got one")
}
_, err = NewSingleClient(c)
if err != nil {
t.Fatal("shouldn't get an error but got one")
}
}
func TestConnectionDrainsResponseBody(t *testing.T) {
var connCount int32
ts := httptest.NewUnstartedServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
w.Write([]byte(`{"responseHeader":{"status":0,"QTime":1}}` + "\n\n\n"))
}))
ts.Config.ConnState = func(conn net.Conn, state http.ConnState) {
if state == http.StateNew {
atomic.AddInt32(&connCount, 1)
}
}
ts.Start()
defer ts.Close()
client := &http.Client{Transport: &http.Transport{}}
conn, err := NewConnection(ts.URL, "testcore", client)
if err != nil {
t.Fatal(err)
}
ctx := context.Background()
url := conn.formatBasePath() + "/select?q=*%3A*&wt=json"
for i := 0; i < 3; i++ {
_, err = conn.request(ctx, http.MethodGet, url, "application/json", nil)
if err != nil {
t.Fatal(err)
}
}
if c := atomic.LoadInt32(&connCount); c != 1 {
t.Errorf("expected 1 connection (reuse), got %d", c)
}
}
func TestNewRetryableConnection(t *testing.T) {
conf := &RetryableConfig{
Timeout: 10 * time.Second,
RetryWaitMin: 50 * time.Millisecond,
RetryWaitMax: 2 * time.Second,
RetryMax: 4,
NoLog: true,
}
_, err := NewRetryableConnection("", "mycore", http.DefaultClient, conf)
if err == nil {
t.Fatal("shouldn't run without a host")
}
_, err = NewRetryableConnection("invalid", "mycore", http.DefaultClient, conf)
if err == nil {
t.Fatal("shouldn't run without a proper host")
}
_, err = NewRetryableConnection("http://localhost", "", http.DefaultClient, conf)
if err == nil {
t.Fatal("shouldn't run without a core defined")
}
c, err := NewRetryableConnection("http://localhost:8983", "mycore", http.DefaultClient, conf)
if err != nil {
t.Fatal("shouldn't get an error but got one")
}
_, err = NewSingleClient(c)
if err != nil {
t.Fatal("shouldn't get an error but got one")
}
}
func TestNewDefaultHTTPClient(t *testing.T) {
client := NewDefaultHTTPClient()
if client == nil {
t.Fatal("expected non-nil client")
}
transport, ok := client.Transport.(*http.Transport)
if !ok {
t.Fatal("expected *http.Transport")
}
if transport.MaxIdleConns != 100 {
t.Fatalf("expected MaxIdleConns=100, got %d", transport.MaxIdleConns)
}
if transport.MaxIdleConnsPerHost != 100 {
t.Fatalf("expected MaxIdleConnsPerHost=100, got %d", transport.MaxIdleConnsPerHost)
}
if transport.IdleConnTimeout != 90*time.Second {
t.Fatalf("expected IdleConnTimeout=90s, got %v", transport.IdleConnTimeout)
}
if !transport.ForceAttemptHTTP2 {
t.Fatal("expected ForceAttemptHTTP2=true")
}
}
func TestNewDefaultHTTPClientWorksWithNewConnection(t *testing.T) {
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
w.Write([]byte(`{"responseHeader":{"status":0,"QTime":1}}`))
}))
defer ts.Close()
client := NewDefaultHTTPClient()
conn, err := NewConnection(ts.URL, "testcore", client)
if err != nil {
t.Fatal(err)
}
ctx := context.Background()
url := conn.formatBasePath() + "/admin/ping"
_, err = conn.request(ctx, http.MethodGet, url, "application/json", nil)
if err != nil {
t.Fatalf("request with default client failed: %v", err)
}
}