Skip to content

Commit 6d5f59b

Browse files
authored
Add unit test for variable length encoding HTTP/3 (#60766)
Fixes #51519
1 parent 26c045b commit 6d5f59b

File tree

3 files changed

+381
-6
lines changed

3 files changed

+381
-6
lines changed

src/libraries/Common/src/System/Net/Http/aspnetcore/Http3/Helpers/VariableLengthIntegerHelper.cs

+6-6
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public static bool TryWrite(Span<byte> buffer, long longToEncode, out int bytesW
149149
Debug.Assert(longToEncode >= 0);
150150
Debug.Assert(longToEncode <= EightByteLimit);
151151

152-
if (longToEncode < OneByteLimit)
152+
if (longToEncode <= OneByteLimit)
153153
{
154154
if (buffer.Length != 0)
155155
{
@@ -158,15 +158,15 @@ public static bool TryWrite(Span<byte> buffer, long longToEncode, out int bytesW
158158
return true;
159159
}
160160
}
161-
else if (longToEncode < TwoByteLimit)
161+
else if (longToEncode <= TwoByteLimit)
162162
{
163163
if (BinaryPrimitives.TryWriteUInt16BigEndian(buffer, (ushort)((uint)longToEncode | TwoByteLengthMask)))
164164
{
165165
bytesWritten = 2;
166166
return true;
167167
}
168168
}
169-
else if (longToEncode < FourByteLimit)
169+
else if (longToEncode <= FourByteLimit)
170170
{
171171
if (BinaryPrimitives.TryWriteUInt32BigEndian(buffer, (uint)longToEncode | FourByteLengthMask))
172172
{
@@ -200,9 +200,9 @@ public static int GetByteCount(long value)
200200
Debug.Assert(value <= EightByteLimit);
201201

202202
return
203-
value < OneByteLimit ? 1 :
204-
value < TwoByteLimit ? 2 :
205-
value < FourByteLimit ? 4 :
203+
value <= OneByteLimit ? 1 :
204+
value <= TwoByteLimit ? 2 :
205+
value <= FourByteLimit ? 4 :
206206
8; // EightByteLimit
207207
}
208208
}

src/libraries/Common/tests/Common.Tests.csproj

+3
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@
6767
Link="Common\System\Net\Http\aspnetcore\Http2\Hpack\H2StaticTable.Http2.cs" />
6868
<Compile Include="$(CommonPath)System\Net\Http\aspnetcore\Http2\Hpack\StatusCodes.cs"
6969
Link="Common\System\Net\Http\aspnetcore\Http2\Hpack\StatusCodes.cs" />
70+
<Compile Include="$(CommonPath)System\Net\Http\aspnetcore\Http3\Helpers\VariableLengthIntegerHelper.cs"
71+
Link="Common\System\Net\Http\aspnetcore\Http3\Helpers\VariableLengthIntegerHelper.cs" />
7072
<Compile Include="$(CommonPath)System\Text\SimpleRegex.cs"
7173
Link="Common\System\Text\SimpleRegex.cs" />
7274
<Compile Include="$(CommonPath)System\Text\ValueStringBuilder.cs"
@@ -95,6 +97,7 @@
9597
<Compile Include="Tests\System\Net\aspnetcore\Http2\HPackDecoderTest.cs" />
9698
<Compile Include="Tests\System\Net\aspnetcore\Http2\HPackIntegerTest.cs" />
9799
<Compile Include="Tests\System\Net\aspnetcore\Http2\HuffmanDecodingTests.cs" />
100+
<Compile Include="Tests\System\Net\aspnetcore\Http3\VariableLengthIntegerHelperTests.cs" />
98101
<Compile Include="System\Net\Sockets\Fletcher32.cs"
99102
Link="System\Net\Sockets\Fletcher32.cs" />
100103
<Compile Include="$(CommonPath)System\Net\Logging\NetEventSource.Common.cs"

0 commit comments

Comments
 (0)