-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathclient_test.go
77 lines (66 loc) · 1.63 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
76
77
package mysqlrouter
import (
"crypto/tls"
"crypto/x509"
"github.com/stretchr/testify/assert"
"net/http"
"os"
"path/filepath"
"testing"
)
var (
client *Client
)
func setupWithoutTLS() {
var err error
client, err = New("http://mysql-router-http:8080", "root", "mysql", nil)
if err != nil {
panic(err)
}
}
// TestNewClientWithSkipTLSVerify check a connection with InsecureSkipVerify: true
func TestNewClientWithSkipTLSVerify(t *testing.T) {
opts := &Options{
Transport: &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
},
}
_, err := New("https://mysql-router-https:8443", "root", "mysql", opts)
assert.NoError(t, err)
}
// TestNewClientWithTLS check a connection with certificates
func TestNewClientWithTLS(t *testing.T) {
certPath, err := filepath.Abs("test/mysql-router/certs/localhost.crt")
if err != nil {
assert.NoError(t, err)
}
keyPath, err := filepath.Abs("test/mysql-router/certs/localhost.key")
if err != nil {
assert.NoError(t, err)
}
caPath, err := filepath.Abs("test/mysql-router/certs/localCA.crt")
if err != nil {
assert.NoError(t, err)
}
cert, err := tls.LoadX509KeyPair(certPath, keyPath)
if err != nil {
assert.NoError(t, err)
}
caCert, err := os.ReadFile(caPath)
if err != nil {
assert.NoError(t, err)
}
caCertPool := x509.NewCertPool()
caCertPool.AppendCertsFromPEM(caCert)
tlsConfig := &tls.Config{
Certificates: []tls.Certificate{cert},
RootCAs: caCertPool,
}
opts := &Options{
Transport: &http.Transport{
TLSClientConfig: tlsConfig,
},
}
_, err = New("https://mysql-router-https:8443", "root", "mysql", opts)
assert.NoError(t, err)
}