-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathweb_test.go
85 lines (76 loc) · 1.89 KB
/
web_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
package web
import (
"net"
"testing"
wnet "github.com/webnice/net"
"github.com/go-chi/chi/v5"
"github.com/google/uuid"
)
func TestImpl_IdGenerate(t *testing.T) {
var web Interface
web = New().
Handler(getTestHandlerFn(t))
web.ListenAndServeWithConfig(&Configuration{
Configuration: wnet.Configuration{
Host: "localhost",
Port: 10180,
Mode: "tcp",
},
})
defer web.Stop()
if web.Error() != nil {
t.Errorf("функция ListenAndServeWithConfig(), ошибка: %v, ожидалось: %v", web.Error(), nil)
}
if web.ID() == "" {
t.Errorf("функция ID(), ошибка, ожидалось не пустое значение")
}
}
func TestImpl_IdStatic(t *testing.T) {
var (
id string
web Interface
)
id = uuid.NewString()
web = New().
Handler(getTestHandlerFn(t))
web.ListenAndServeWithConfig(&Configuration{
Configuration: wnet.Configuration{
ID: id,
Host: "localhost",
Port: 10180,
Mode: "tcp",
},
})
defer web.Stop()
if web.Error() != nil {
t.Errorf("функция ListenAndServeWithConfig(), ошибка: %v, ожидалось: %v", web.Error(), nil)
}
if web.ID() != id {
t.Errorf("функция ID(), вернулось: %q, ожидалось: %q", web.ID(), id)
}
}
func TestImpl_ServeWithId(t *testing.T) {
var (
err error
id string
web Interface
listener net.Listener
)
id = uuid.NewString()
web = New().(*impl)
web.Handler(chi.NewMux())
web.(*impl).cfg = &Configuration{
Configuration: wnet.Configuration{
Host: "localhost",
Port: 18080,
},
}
listener, err = web.NewListener(web.(*impl).cfg)
if web.ServeWithId(listener, id); web.Error() != nil {
t.Errorf("функция ServeWithId(), ошибка: %v, ожидалась: %v", err, nil)
}
defer web.Stop()
if web.ID() != id {
t.Errorf("функция ID(), вернулось: %q, ожидалось: %q", web.ID(), id)
}
}