mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-04 13:07:39 +03:00
feat(wip): test reworks
This commit is contained in:
parent
55fb903192
commit
dd836b4496
22 changed files with 934 additions and 185 deletions
|
@ -58,15 +58,15 @@ func TestPluggableOutboundAdapter(t *testing.T) {
|
|||
adapter := &PluggableOutboundAdapter{
|
||||
PluggableOutbound: &mockPluggableOutbound{},
|
||||
}
|
||||
// DialTCP with correct addr
|
||||
// TCP with correct addr
|
||||
_, err := adapter.DialTCP("correct_host_1:34567")
|
||||
if err != nil {
|
||||
t.Fatal("DialTCP with correct addr failed", err)
|
||||
t.Fatal("TCP with correct addr failed", err)
|
||||
}
|
||||
// DialTCP with wrong addr
|
||||
// TCP with wrong addr
|
||||
_, err = adapter.DialTCP("wrong_host_1:34567")
|
||||
if err != errWrongAddr {
|
||||
t.Fatal("DialTCP with wrong addr should fail, got", err)
|
||||
t.Fatal("TCP with wrong addr should fail, got", err)
|
||||
}
|
||||
// DialUDP
|
||||
uConn, err := adapter.DialUDP()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue