mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
Support content-range from non-compliant server
See GH-509
This commit is contained in:
parent
8709015024
commit
8512fe992e
2 changed files with 23 additions and 5 deletions
|
@ -101,6 +101,17 @@ void HttpHeaderTest::testGetRange()
|
|||
CPPUNIT_ASSERT_EQUAL((int64_t)0, range.endByte);
|
||||
CPPUNIT_ASSERT_EQUAL((int64_t)0, range.entityLength);
|
||||
}
|
||||
{
|
||||
// Support for non-compliant server
|
||||
HttpHeader httpHeader;
|
||||
httpHeader.put(HttpHeader::CONTENT_RANGE, "bytes=0-1023/1024");
|
||||
|
||||
Range range = httpHeader.getRange();
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL((int64_t)0, range.startByte);
|
||||
CPPUNIT_ASSERT_EQUAL((int64_t)1023, range.endByte);
|
||||
CPPUNIT_ASSERT_EQUAL((int64_t)1024, range.entityLength);
|
||||
}
|
||||
{
|
||||
HttpHeader httpHeader;
|
||||
httpHeader.put(HttpHeader::CONTENT_RANGE, "bytes 0-/3");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue