This repository has been archived by the owner on Jun 2, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclient_test.go
75 lines (61 loc) · 2.09 KB
/
client_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
package preev
import (
"fmt"
"net/http"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
// TestNewClient test new client
func TestNewClient(t *testing.T) {
t.Parallel()
client := NewClient(nil, nil)
assert.NotEqual(t, "", client.UserAgent())
assert.NotNil(t, client)
}
// TestNewClient_CustomHttpClient test new client with custom HTTP client
func TestNewClient_CustomHttpClient(t *testing.T) {
t.Parallel()
client := NewClient(nil, http.DefaultClient)
assert.NotNil(t, client)
}
// ExampleNewClient example using NewClient()
func ExampleNewClient() {
client := NewClient(nil, nil)
fmt.Println(client.UserAgent())
// Output:go-preev: v0.3.0
}
// BenchmarkNewClient benchmarks the NewClient method
func BenchmarkNewClient(b *testing.B) {
for i := 0; i < b.N; i++ {
_ = NewClient(nil, nil)
}
}
// TestClientDefaultOptions tests setting ClientDefaultOptions()
func TestClientDefaultOptions(t *testing.T) {
t.Parallel()
options := ClientDefaultOptions()
assert.NotNil(t, options)
assert.Equal(t, defaultUserAgent, options.UserAgent)
assert.Equal(t, 2.0, options.BackOffExponentFactor)
assert.Equal(t, 2*time.Millisecond, options.BackOffInitialTimeout)
assert.Equal(t, 2*time.Millisecond, options.BackOffMaximumJitterInterval)
assert.Equal(t, 10*time.Millisecond, options.BackOffMaxTimeout)
assert.Equal(t, 20*time.Second, options.DialerKeepAlive)
assert.Equal(t, 5*time.Second, options.DialerTimeout)
assert.Equal(t, 2, options.RequestRetryCount)
assert.Equal(t, 10*time.Second, options.RequestTimeout)
assert.Equal(t, 3*time.Second, options.TransportExpectContinueTimeout)
assert.Equal(t, 20*time.Second, options.TransportIdleTimeout)
assert.Equal(t, 10, options.TransportMaxIdleConnections)
assert.Equal(t, 5*time.Second, options.TransportTLSHandshakeTimeout)
}
// TestClientDefaultOptions_NoRetry will set 0 retry counts
func TestClientDefaultOptions_NoRetry(t *testing.T) {
options := ClientDefaultOptions()
options.RequestRetryCount = 0
client := NewClient(options, nil)
assert.NotNil(t, client)
assert.NotNil(t, options)
assert.Equal(t, defaultUserAgent, options.UserAgent)
}