mirror of
https://github.com/golang/net.git
synced 2026-03-31 02:17:08 +09:00
Now that the x/net module requires Go 1.25.0, the go1.25 build constraint is always satisfied. Simplify the code accordingly. Change-Id: I3d6fe4a132a26918455489b998730b494f5273c4 Reviewed-on: https://go-review.googlesource.com/c/net/+/744800 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Nicholas Husin <nsh@golang.org> Reviewed-by: Nicholas Husin <husin@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
71 lines
2.1 KiB
Go
71 lines
2.1 KiB
Go
// Copyright 2023 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package quic
|
|
|
|
import (
|
|
"testing"
|
|
"testing/synctest"
|
|
)
|
|
|
|
func TestPathChallengeReceived(t *testing.T) {
|
|
for _, test := range []struct {
|
|
name string
|
|
padTo int
|
|
wantPadding int
|
|
}{{
|
|
name: "unexpanded",
|
|
padTo: 0,
|
|
wantPadding: 0,
|
|
}, {
|
|
name: "expanded",
|
|
padTo: 1200,
|
|
wantPadding: 1200,
|
|
}} {
|
|
synctestSubtest(t, test.name, func(t *testing.T) {
|
|
// "The recipient of [a PATH_CHALLENGE] frame MUST generate
|
|
// a PATH_RESPONSE frame [...] containing the same Data value."
|
|
// https://www.rfc-editor.org/rfc/rfc9000.html#section-19.17-7
|
|
tc := newTestConn(t, clientSide)
|
|
tc.handshake()
|
|
tc.ignoreFrame(frameTypeAck)
|
|
data := pathChallengeData{0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef}
|
|
tc.writeFrames(packetType1RTT, debugFramePathChallenge{
|
|
data: data,
|
|
}, debugFramePadding{
|
|
to: test.padTo,
|
|
})
|
|
tc.wantFrame("response to PATH_CHALLENGE",
|
|
packetType1RTT, debugFramePathResponse{
|
|
data: data,
|
|
})
|
|
if got, want := tc.lastDatagram.paddedSize, test.wantPadding; got != want {
|
|
t.Errorf("PATH_RESPONSE expanded to %v bytes, want %v", got, want)
|
|
}
|
|
tc.wantIdle("connection is idle")
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestPathResponseMismatchReceived(t *testing.T) {
|
|
synctest.Test(t, testPathResponseMismatchReceived)
|
|
}
|
|
func testPathResponseMismatchReceived(t *testing.T) {
|
|
// "If the content of a PATH_RESPONSE frame does not match the content of
|
|
// a PATH_CHALLENGE frame previously sent by the endpoint,
|
|
// the endpoint MAY generate a connection error of type PROTOCOL_VIOLATION."
|
|
// https://www.rfc-editor.org/rfc/rfc9000.html#section-19.18-4
|
|
tc := newTestConn(t, clientSide)
|
|
tc.handshake()
|
|
tc.ignoreFrame(frameTypeAck)
|
|
tc.writeFrames(packetType1RTT, debugFramePathResponse{
|
|
data: pathChallengeData{},
|
|
})
|
|
tc.wantFrame("invalid PATH_RESPONSE causes the connection to close",
|
|
packetType1RTT, debugFrameConnectionCloseTransport{
|
|
code: errProtocolViolation,
|
|
},
|
|
)
|
|
}
|