mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 12:27:36 +03:00
Add naive inbound and test
This commit is contained in:
parent
ccdfab378a
commit
b79b19c470
23 changed files with 709 additions and 87 deletions
|
@ -8,8 +8,6 @@ import (
|
|||
|
||||
"github.com/sagernet/sing-box"
|
||||
"github.com/sagernet/sing-box/option"
|
||||
"github.com/sagernet/sing/common/control"
|
||||
F "github.com/sagernet/sing/common/format"
|
||||
M "github.com/sagernet/sing/common/metadata"
|
||||
N "github.com/sagernet/sing/common/network"
|
||||
"github.com/sagernet/sing/protocol/socks"
|
||||
|
@ -17,23 +15,6 @@ import (
|
|||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
func mkPort(t *testing.T) uint16 {
|
||||
var lc net.ListenConfig
|
||||
lc.Control = control.ReuseAddr()
|
||||
for {
|
||||
tcpListener, err := lc.Listen(context.Background(), "tcp", ":0")
|
||||
require.NoError(t, err)
|
||||
listenPort := M.SocksaddrFromNet(tcpListener.Addr()).Port
|
||||
tcpListener.Close()
|
||||
udpListener, err := lc.Listen(context.Background(), "tcp", F.ToString(":", listenPort))
|
||||
if err != nil {
|
||||
continue
|
||||
}
|
||||
udpListener.Close()
|
||||
return listenPort
|
||||
}
|
||||
}
|
||||
|
||||
func startInstance(t *testing.T, options option.Options) {
|
||||
var instance *box.Box
|
||||
var err error
|
||||
|
@ -54,6 +35,14 @@ func startInstance(t *testing.T, options option.Options) {
|
|||
})
|
||||
}
|
||||
|
||||
func testTCP(t *testing.T, clientPort uint16, testPort uint16) {
|
||||
dialer := socks.NewClient(N.SystemDialer, M.ParseSocksaddrHostPort("127.0.0.1", clientPort), socks.Version5, "", "")
|
||||
dialTCP := func() (net.Conn, error) {
|
||||
return dialer.DialContext(context.Background(), "tcp", M.ParseSocksaddrHostPort("127.0.0.1", testPort))
|
||||
}
|
||||
require.NoError(t, testPingPongWithConn(t, testPort, dialTCP))
|
||||
}
|
||||
|
||||
func testSuit(t *testing.T, clientPort uint16, testPort uint16) {
|
||||
dialer := socks.NewClient(N.SystemDialer, M.ParseSocksaddrHostPort("127.0.0.1", clientPort), socks.Version5, "", "")
|
||||
dialTCP := func() (net.Conn, error) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue