mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
Rewritten parse*Int
This commit is contained in:
parent
226480ad60
commit
2f4393d17c
24 changed files with 257 additions and 289 deletions
|
@ -196,10 +196,10 @@ void ChunkedDecodingStreamFilterTest::testTransform_with2Trailers()
|
|||
|
||||
void ChunkedDecodingStreamFilterTest::testTransform_largeChunkSize()
|
||||
{
|
||||
// chunkSize should be under 2^64-1
|
||||
// chunkSize should be under 2^63-1
|
||||
{
|
||||
std::basic_string<unsigned char> msg =
|
||||
reinterpret_cast<const unsigned char*>("ffffffffffffffff\r\n");
|
||||
reinterpret_cast<const unsigned char*>("7fffffffffffffff\r\n");
|
||||
filter_->transform(writer_, segment_, msg.data(), msg.size());
|
||||
}
|
||||
}
|
||||
|
@ -209,7 +209,7 @@ void ChunkedDecodingStreamFilterTest::testTransform_tooLargeChunkSize()
|
|||
// chunkSize 2^64 causes error
|
||||
{
|
||||
std::basic_string<unsigned char> msg =
|
||||
reinterpret_cast<const unsigned char*>("10000000000000000\r\n");
|
||||
reinterpret_cast<const unsigned char*>("ffffffffffffffff\r\n");
|
||||
try {
|
||||
filter_->transform(writer_, segment_, msg.data(), msg.size());
|
||||
CPPUNIT_FAIL("exception must be thrown.");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue