feat(wip): test reworks

This commit is contained in:
Toby 2023-07-26 13:48:08 -07:00
parent 55fb903192
commit dd836b4496
22 changed files with 934 additions and 185 deletions

View file

@ -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()