mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
Merge pull request #2440 from lucas-clemente/integrationtests-qlog
add a command line option to export qlogs from the integration tests
This commit is contained in:
commit
b9ab1d172d
17 changed files with 137 additions and 105 deletions
|
@ -24,7 +24,7 @@ var _ = Describe("Stateless Resets", func() {
|
|||
It(fmt.Sprintf("sends and recognizes stateless resets, for %d byte connection IDs", connIDLen), func() {
|
||||
statelessResetKey := make([]byte, 32)
|
||||
rand.Read(statelessResetKey)
|
||||
serverConfig := &quic.Config{StatelessResetKey: statelessResetKey}
|
||||
serverConfig := getQuicConfigForServer(&quic.Config{StatelessResetKey: statelessResetKey})
|
||||
|
||||
ln, err := quic.ListenAddr("localhost:0", getTLSConfig(), serverConfig)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
|
@ -58,10 +58,10 @@ var _ = Describe("Stateless Resets", func() {
|
|||
sess, err := quic.DialAddr(
|
||||
fmt.Sprintf("localhost:%d", proxy.LocalPort()),
|
||||
getTLSClientConfig(),
|
||||
&quic.Config{
|
||||
getQuicConfigForClient(&quic.Config{
|
||||
ConnectionIDLength: connIDLen,
|
||||
MaxIdleTimeout: 2 * time.Second,
|
||||
},
|
||||
}),
|
||||
)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
str, err := sess.AcceptStream(context.Background())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue