3
3
package pool
4
4
5
5
import (
6
+ "crypto/tls"
6
7
"net"
7
8
"net/http/httptest"
8
9
"time"
@@ -14,12 +15,17 @@ import (
14
15
var _ = Describe ("tests conn_check with real conns" , func () {
15
16
var ts * httptest.Server
16
17
var conn net.Conn
18
+ var tlsConn * tls.Conn
17
19
var err error
18
20
19
21
BeforeEach (func () {
20
22
ts = httptest .NewServer (nil )
21
23
conn , err = net .DialTimeout (ts .Listener .Addr ().Network (), ts .Listener .Addr ().String (), time .Second )
22
24
Expect (err ).NotTo (HaveOccurred ())
25
+ tlsTestServer := httptest .NewUnstartedServer (nil )
26
+ tlsTestServer .StartTLS ()
27
+ tlsConn , err = tls .DialWithDialer (& net.Dialer {Timeout : time .Second }, tlsTestServer .Listener .Addr ().Network (), tlsTestServer .Listener .Addr ().String (), & tls.Config {InsecureSkipVerify : true })
28
+ Expect (err ).NotTo (HaveOccurred ())
23
29
})
24
30
25
31
AfterEach (func () {
@@ -33,11 +39,23 @@ var _ = Describe("tests conn_check with real conns", func() {
33
39
Expect (connCheck (conn )).To (HaveOccurred ())
34
40
})
35
41
42
+ It ("good tls conn check" , func () {
43
+ Expect (connCheck (tlsConn )).NotTo (HaveOccurred ())
44
+
45
+ Expect (tlsConn .Close ()).NotTo (HaveOccurred ())
46
+ Expect (connCheck (tlsConn )).To (HaveOccurred ())
47
+ })
48
+
36
49
It ("bad conn check" , func () {
37
50
Expect (conn .Close ()).NotTo (HaveOccurred ())
38
51
Expect (connCheck (conn )).To (HaveOccurred ())
39
52
})
40
53
54
+ It ("bad tls conn check" , func () {
55
+ Expect (tlsConn .Close ()).NotTo (HaveOccurred ())
56
+ Expect (connCheck (tlsConn )).To (HaveOccurred ())
57
+ })
58
+
41
59
It ("check conn deadline" , func () {
42
60
Expect (conn .SetDeadline (time .Now ())).NotTo (HaveOccurred ())
43
61
time .Sleep (time .Millisecond * 10 )
0 commit comments