mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
* wire: implement frame classification into probing / non-probing * wire: consolidate files * check if frame is ack eliciting and path probing in frames fuzz test
29 lines
680 B
Go
29 lines
680 B
Go
package wire
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestProbingFrames(t *testing.T) {
|
|
testCases := map[Frame]bool{
|
|
&AckFrame{}: false,
|
|
&ConnectionCloseFrame{}: false,
|
|
&DataBlockedFrame{}: false,
|
|
&PingFrame{}: false,
|
|
&ResetStreamFrame{}: false,
|
|
&StreamFrame{}: false,
|
|
&DatagramFrame{}: false,
|
|
&MaxDataFrame{}: false,
|
|
&MaxStreamDataFrame{}: false,
|
|
&StopSendingFrame{}: false,
|
|
&PathChallengeFrame{}: true,
|
|
&PathResponseFrame{}: true,
|
|
&NewConnectionIDFrame{}: true,
|
|
}
|
|
|
|
for f, expected := range testCases {
|
|
require.Equal(t, expected, IsProbingFrame(f))
|
|
}
|
|
}
|