| // 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. |
| func TestPing(t *testing.T) { |
| tc := newTestConn(t, clientSide) |
| tc.conn.ping(appDataSpace) |
| tc.wantFrame("connection should send a PING frame", |
| packetType1RTT, debugFramePing{}) |
| tc.wantFrame("on PTO, connection should send another PING frame", |
| packetType1RTT, debugFramePing{}) |
| tc.wantIdle("after sending PTO probe, no additional frames to send") |
| func TestAck(t *testing.T) { |
| tc := newTestConn(t, serverSide) |
| // Send two packets, to trigger an immediate ACK. |
| tc.writeFrames(packetType1RTT, |
| tc.writeFrames(packetType1RTT, |
| tc.wantFrame("connection should respond to ack-eliciting packet with an ACK frame", |
| ranges: []i64range[packetNumber]{{0, 4}}, |