-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtcplistener_test.go
142 lines (129 loc) · 3.54 KB
/
tcplistener_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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
//
//
// Tencent is pleased to support the open source community by making tRPC available.
//
// Copyright (C) 2023 THL A29 Limited, a Tencent company.
// All rights reserved.
//
// If you have downloaded a copy of the tRPC source code from Tencent,
// please note that tRPC source code is licensed under the Apache 2.0 License,
// A copy of the Apache 2.0 License is included in this file.
//
//
package tnet
import (
"net"
"testing"
"unsafe"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"trpc.group/trpc-go/tnet/internal/iovec"
"trpc.group/trpc-go/tnet/internal/netutil"
)
func TestListen(t *testing.T) {
tests := []struct {
name string
network string
address string
expected bool
}{
{"tcp", "tcp", ":0", true},
{"tcp4", "tcp4", "127.0.0.1:0", true},
{"tcp6", "tcp6", "[::1]:0", true},
{"udp", "udp", ":0", false},
{"udp4", "udp4", "127.0.0.1:0", false},
{"udp6", "udp6", "[::1]:0", false},
{"unix", "unix", "/tmp/test.sock", false},
}
for _, test := range tests {
if !netutil.TestableNetwork(test.network) {
t.Logf("skipping %s test", test.name)
continue
}
t.Run(test.name, func(t *testing.T) {
ln, err := Listen(test.network, test.address)
defer func() {
if err == nil {
ln.Close()
}
}()
require.Equal(t, test.expected, err == nil)
if err == nil {
assert.NotEqual(t, -1, ln.(*tcpListener).FD())
assert.NotEmpty(t, ln.Addr())
}
})
}
}
func TestListenerAccept(t *testing.T) {
tests := []struct {
name string
network string
address string
}{
{"tcp normal accept", "tcp", ":0"},
{"tcp4 normal accept", "tcp4", "127.0.0.1:0"},
{"tcp6 normal accept", "tcp6", "[::1]:0"},
}
for _, test := range tests {
if !netutil.TestableNetwork(test.network) {
t.Logf("skipping %s test", test.name)
continue
}
t.Run(test.network, func(t *testing.T) {
MassiveConnections = true
DefaultCleanUpThrottle = 0
ln, err := Listen(test.network, test.address)
require.Nil(t, err)
defer ln.Close()
_, err = ln.Accept()
assert.NotNil(t, err)
ne, ok := err.(net.Error)
require.Equal(t, true, ok)
require.Equal(t, true, ne.Temporary())
assert.Equal(t, false, ne.Timeout())
client, err := net.Dial(ln.Addr().Network(), ln.Addr().String())
require.Nil(t, err)
defer client.Close()
conn, err := ln.Accept()
c := conn.(*tcpconn)
t.Logf("conn size: %v\n", unsafe.Sizeof(*c))
t.Logf("c.writevData.IsNil(): %v\n", c.writevData.IsNil())
t.Logf("IOData size: %v\n", unsafe.Sizeof(iovec.IOData{}))
t.Logf("conn.writevData size: %v\n", unsafe.Sizeof(c.writevData))
t.Logf("conn.postponeWrite size: %v\n", unsafe.Sizeof(c.postpone))
t.Logf("alignOf: %v\n", unsafe.Alignof(c)) // 8
assert.Nil(t, err)
assert.NotNil(t, conn)
assert.NotEmpty(t, conn.LocalAddr())
assert.NotEmpty(t, conn.RemoteAddr())
})
}
}
func TestListenerAcceptAfterClose(t *testing.T) {
tests := []struct {
name string
network string
address string
}{
{"tcp close before accept", "tcp", ":0"},
{"tcp4 close before accept", "tcp4", "127.0.0.1:0"},
{"tcp6 close before accept", "tcp6", "[::1]:0"},
}
for _, test := range tests {
if !netutil.TestableNetwork(test.network) {
t.Logf("skipping %s test", test.name)
continue
}
t.Run(test.network, func(t *testing.T) {
ln, err := Listen(test.network, test.address)
require.Nil(t, err)
client, err := net.Dial(ln.Addr().Network(), ln.Addr().String())
require.Nil(t, err)
defer client.Close()
ln.Close()
_, err = ln.Accept()
assert.NotNil(t, err)
})
}
}