mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
test(proxymux): reduce wait in the tests
This commit is contained in:
parent
044620a5db
commit
8e886b6e05
2 changed files with 66 additions and 29 deletions
|
@ -31,9 +31,6 @@ func TestListenSOCKS(t *testing.T) {
|
||||||
}
|
}
|
||||||
sl.Close()
|
sl.Close()
|
||||||
|
|
||||||
// Wait for muxListener.socksListener released
|
|
||||||
time.Sleep(time.Second)
|
|
||||||
|
|
||||||
sl, err = ListenSOCKS(address)
|
sl, err = ListenSOCKS(address)
|
||||||
if !assert.NoError(t, err) {
|
if !assert.NoError(t, err) {
|
||||||
return
|
return
|
||||||
|
@ -63,9 +60,6 @@ func TestListenHTTP(t *testing.T) {
|
||||||
}
|
}
|
||||||
hl.Close()
|
hl.Close()
|
||||||
|
|
||||||
// Wait for muxListener.socksListener released
|
|
||||||
time.Sleep(time.Second)
|
|
||||||
|
|
||||||
hl, err = ListenHTTP(address)
|
hl, err = ListenHTTP(address)
|
||||||
if !assert.NoError(t, err) {
|
if !assert.NoError(t, err) {
|
||||||
return
|
return
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
package proxymux
|
package proxymux
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
"net"
|
"net"
|
||||||
|
"sync"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
@ -13,25 +15,52 @@ import (
|
||||||
|
|
||||||
//go:generate mockery
|
//go:generate mockery
|
||||||
|
|
||||||
func testMockListener(t *testing.T, firstByte byte) net.Listener {
|
func testMockListener(t *testing.T, connChan <-chan net.Conn) net.Listener {
|
||||||
mockConn := mocks.NewMockConn(t)
|
closedChan := make(chan struct{})
|
||||||
mockConn.EXPECT().Read(mock.Anything).RunAndReturn(func(b []byte) (int, error) {
|
|
||||||
b[0] = firstByte
|
|
||||||
return 1, nil
|
|
||||||
})
|
|
||||||
mockConn.EXPECT().Close().Return(nil)
|
|
||||||
mockListener := mocks.NewMockListener(t)
|
mockListener := mocks.NewMockListener(t)
|
||||||
mockListener.EXPECT().Accept().RunAndReturn(func() (net.Conn, error) {
|
mockListener.EXPECT().Accept().RunAndReturn(func() (net.Conn, error) {
|
||||||
// Wait for all listener set up
|
select {
|
||||||
time.Sleep(200 * time.Millisecond)
|
case <-closedChan:
|
||||||
return mockConn, nil
|
return nil, net.ErrClosed
|
||||||
|
case conn, ok := <-connChan:
|
||||||
|
if !ok {
|
||||||
|
panic("unexpected closed channel (connChan)")
|
||||||
|
}
|
||||||
|
return conn, nil
|
||||||
|
}
|
||||||
|
})
|
||||||
|
mockListener.EXPECT().Close().RunAndReturn(func() error {
|
||||||
|
select {
|
||||||
|
case <-closedChan:
|
||||||
|
default:
|
||||||
|
close(closedChan)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
})
|
})
|
||||||
mockListener.EXPECT().Close().Return(nil)
|
|
||||||
return mockListener
|
return mockListener
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func testMockConn(t *testing.T, b []byte) net.Conn {
|
||||||
|
buf := bytes.NewReader(b)
|
||||||
|
isClosed := false
|
||||||
|
mockConn := mocks.NewMockConn(t)
|
||||||
|
mockConn.EXPECT().Read(mock.Anything).RunAndReturn(func(b []byte) (int, error) {
|
||||||
|
if isClosed {
|
||||||
|
return 0, net.ErrClosed
|
||||||
|
}
|
||||||
|
return buf.Read(b)
|
||||||
|
})
|
||||||
|
mockConn.EXPECT().Close().RunAndReturn(func() error {
|
||||||
|
isClosed = true
|
||||||
|
return nil
|
||||||
|
})
|
||||||
|
return mockConn
|
||||||
|
}
|
||||||
|
|
||||||
func TestMuxHTTP(t *testing.T) {
|
func TestMuxHTTP(t *testing.T) {
|
||||||
mockListener := testMockListener(t, 'C')
|
connChan := make(chan net.Conn)
|
||||||
|
mockListener := testMockListener(t, connChan)
|
||||||
|
mockConn := testMockConn(t, []byte("CONNECT example.com:443 HTTP/1.1\r\n\r\n"))
|
||||||
|
|
||||||
mux := newMuxListener(mockListener, func() {})
|
mux := newMuxListener(mockListener, func() {})
|
||||||
hl, err := mux.ListenHTTP()
|
hl, err := mux.ListenHTTP()
|
||||||
|
@ -43,22 +72,28 @@ func TestMuxHTTP(t *testing.T) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
connChan <- mockConn
|
||||||
|
|
||||||
var socksConn, httpConn net.Conn
|
var socksConn, httpConn net.Conn
|
||||||
var socksErr, httpErr error
|
var socksErr, httpErr error
|
||||||
|
|
||||||
|
var wg sync.WaitGroup
|
||||||
|
wg.Add(2)
|
||||||
go func() {
|
go func() {
|
||||||
socksConn, socksErr = sl.Accept()
|
socksConn, socksErr = sl.Accept()
|
||||||
|
wg.Done()
|
||||||
}()
|
}()
|
||||||
|
|
||||||
go func() {
|
go func() {
|
||||||
httpConn, httpErr = hl.Accept()
|
httpConn, httpErr = hl.Accept()
|
||||||
|
wg.Done()
|
||||||
}()
|
}()
|
||||||
|
|
||||||
time.Sleep(1 * time.Second)
|
time.Sleep(time.Second)
|
||||||
|
|
||||||
sl.Close()
|
sl.Close()
|
||||||
hl.Close()
|
hl.Close()
|
||||||
// Wait for unmatched handler error
|
|
||||||
time.Sleep(1 * time.Second)
|
wg.Wait()
|
||||||
|
|
||||||
assert.Nil(t, socksConn)
|
assert.Nil(t, socksConn)
|
||||||
assert.ErrorIs(t, socksErr, net.ErrClosed)
|
assert.ErrorIs(t, socksErr, net.ErrClosed)
|
||||||
|
@ -67,11 +102,13 @@ func TestMuxHTTP(t *testing.T) {
|
||||||
assert.NoError(t, httpErr)
|
assert.NoError(t, httpErr)
|
||||||
|
|
||||||
// Wait for muxListener released
|
// Wait for muxListener released
|
||||||
time.Sleep(time.Second)
|
<-mux.acceptChan
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestMuxSOCKS(t *testing.T) {
|
func TestMuxSOCKS(t *testing.T) {
|
||||||
mockListener := testMockListener(t, '\x05')
|
connChan := make(chan net.Conn)
|
||||||
|
mockListener := testMockListener(t, connChan)
|
||||||
|
mockConn := testMockConn(t, []byte{0x05, 0x02, 0x00, 0x01}) // SOCKS5 Connect Request: NOAUTH+GSSAPI
|
||||||
|
|
||||||
mux := newMuxListener(mockListener, func() {})
|
mux := newMuxListener(mockListener, func() {})
|
||||||
hl, err := mux.ListenHTTP()
|
hl, err := mux.ListenHTTP()
|
||||||
|
@ -83,22 +120,28 @@ func TestMuxSOCKS(t *testing.T) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
connChan <- mockConn
|
||||||
|
|
||||||
var socksConn, httpConn net.Conn
|
var socksConn, httpConn net.Conn
|
||||||
var socksErr, httpErr error
|
var socksErr, httpErr error
|
||||||
|
|
||||||
|
var wg sync.WaitGroup
|
||||||
|
wg.Add(2)
|
||||||
go func() {
|
go func() {
|
||||||
socksConn, socksErr = sl.Accept()
|
socksConn, socksErr = sl.Accept()
|
||||||
|
wg.Done()
|
||||||
}()
|
}()
|
||||||
|
|
||||||
go func() {
|
go func() {
|
||||||
httpConn, httpErr = hl.Accept()
|
httpConn, httpErr = hl.Accept()
|
||||||
|
wg.Done()
|
||||||
}()
|
}()
|
||||||
|
|
||||||
time.Sleep(1 * time.Second)
|
time.Sleep(time.Second)
|
||||||
|
|
||||||
sl.Close()
|
sl.Close()
|
||||||
hl.Close()
|
hl.Close()
|
||||||
// Wait for unmatched handler error
|
|
||||||
time.Sleep(1 * time.Second)
|
wg.Wait()
|
||||||
|
|
||||||
assert.NotNil(t, socksConn)
|
assert.NotNil(t, socksConn)
|
||||||
socksConn.Close()
|
socksConn.Close()
|
||||||
|
@ -107,5 +150,5 @@ func TestMuxSOCKS(t *testing.T) {
|
||||||
assert.ErrorIs(t, httpErr, net.ErrClosed)
|
assert.ErrorIs(t, httpErr, net.ErrClosed)
|
||||||
|
|
||||||
// Wait for muxListener released
|
// Wait for muxListener released
|
||||||
time.Sleep(time.Second)
|
<-mux.acceptChan
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue