mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
use a mock qlogger in the client tests
This commit is contained in:
parent
6ba147119d
commit
80418be227
2 changed files with 44 additions and 13 deletions
|
@ -56,6 +56,8 @@ var (
|
|||
// make it possible to mock connection ID generation in the tests
|
||||
generateConnectionID = protocol.GenerateConnectionID
|
||||
generateConnectionIDForInitial = protocol.GenerateConnectionIDForInitial
|
||||
// make it possible to the qlogger
|
||||
newQlogger = qlog.NewTracer
|
||||
)
|
||||
|
||||
// DialAddr establishes a new QUIC connection to a server.
|
||||
|
@ -181,7 +183,7 @@ func dialContext(
|
|||
|
||||
if c.config.GetLogWriter != nil {
|
||||
if w := c.config.GetLogWriter(c.destConnID); w != nil {
|
||||
c.qlogger = qlog.NewTracer(w, protocol.PerspectiveClient, c.destConnID)
|
||||
c.qlogger = newQlogger(w, protocol.PerspectiveClient, c.destConnID)
|
||||
}
|
||||
}
|
||||
if err := c.dial(ctx); err != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue