-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver_test.go
113 lines (105 loc) · 3.34 KB
/
server_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
package web
import (
"crypto/tls"
"errors"
"net"
"net/http"
"testing"
"github.com/go-chi/chi/v5"
wnet "github.com/webnice/net"
)
func TestImpl_MakeServer(t *testing.T) {
const testAddress = "localhost:18080"
var (
web *impl
srv *http.Server
isTls bool
)
web = New().(*impl)
srv, isTls = web.makeServer(nil)
if !errors.Is(web.Error(), web.Errors().HandlerIsNotSet()) {
t.Errorf("функция makeServer(%v), ошибка: %v, ожидалось: %v", nil, web.Error(), web.Errors().HandlerIsNotSet())
}
if srv != nil {
t.Errorf("функция makeServer(%v), вернулась конфигурация, ожидалось: %v", nil, nil)
}
if isTls {
t.Errorf("функция makeServer(%v), isTls: %t, ожидалось: %t", nil, isTls, false)
}
web.Clean().
Handler(getTestHandlerFn(t))
srv, isTls = web.makeServer(nil)
if !errors.Is(web.Error(), web.Errors().NoConfiguration()) {
t.Errorf("функция makeServer(%v), ошибка: %v, ожидалось: %v", nil, web.Error(), web.Errors().NoConfiguration())
}
web.Clean()
web.cfg, _ = parseAddress(testAddress)
srv, isTls = web.makeServer(nil)
if web.Error() != nil {
t.Errorf("функция makeServer(%v), ошибка: %v, ожидалось: %v", nil, web.Error(), nil)
}
if srv == nil {
t.Errorf("функция makeServer(%v), http.Server: %v, ожидалась конфигурация", nil, srv)
}
if isTls {
t.Errorf("функция makeServer(%v), isTls: %t, ожидалось: %t", nil, isTls, false)
}
if srv != nil && srv.TLSNextProto != nil {
t.Errorf("функция makeServer(%v), TLSNextProto не равно: %v", nil, nil)
}
}
func TestImpl_MakeServerTlsConfig(t *testing.T) {
var (
err error
key *tmpFile
crt *tmpFile
web *impl
)
key, crt = newTmpFile(getKeyEcdsa()), newTmpFile(getCrtEcdsa())
defer func() { key.Clean(); crt.Clean() }()
web = New().(*impl)
web.Handler(chi.NewMux())
web.cfg = &Configuration{
Configuration: wnet.Configuration{
Host: "localhost",
Port: 18080,
TLSPublicKeyPEM: "111",
TLSPrivateKeyPEM: "222",
},
}
if _, _ = web.makeServer(nil); web.Error() == nil {
t.Errorf("функция makeServer(), ошибка: %v, ожидалась ошибка", err)
}
web.Clean()
web.cfg.TLSPublicKeyPEM, web.cfg.TLSPrivateKeyPEM = crt.Filename, key.Filename
if _, _ = web.makeServer(nil); web.Error() != nil {
t.Errorf("функция makeServer(), ошибка: %v, ошибка не ожидалась", err)
}
}
func TestImpl_ServeTLS(t *testing.T) {
var (
err error
key *tmpFile
crt *tmpFile
web Interface
listener net.Listener
tlsConfig *tls.Config
)
key, crt = newTmpFile(getKeyEcdsa()), newTmpFile(getCrtEcdsa())
defer func() { key.Clean(); crt.Clean() }()
web = New().(*impl)
web.Handler(chi.NewMux())
web.(*impl).cfg = &Configuration{
Configuration: wnet.Configuration{
Host: "localhost",
Port: 18080,
TLSPublicKeyPEM: "111",
TLSPrivateKeyPEM: "222",
},
}
listener, err = web.NewListener(web.(*impl).cfg)
//tlsConfig, err = wnet.New().NewTLSConfigDefault(web.(*impl).cfg.TLSPublicKeyPEM, web.(*impl).cfg.TLSPrivateKeyPEM)
if web.ServeTLS(listener, tlsConfig); web.Error() == nil {
t.Errorf("функция makeServer(), ошибка: %v, ожидалась ошибка", err)
}
}