mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
Treat 30X response without Location header field as error
This is required to make segmented download work.
This commit is contained in:
parent
ec4b729704
commit
b18e62dba7
3 changed files with 16 additions and 6 deletions
|
@ -362,7 +362,14 @@ void HttpResponseTest::testValidateResponse()
|
|||
httpResponse.setHttpHeader(make_unique<HttpHeader>());
|
||||
httpResponse.getHttpHeader()->setStatusCode(301);
|
||||
|
||||
// It is fine without Location header
|
||||
try {
|
||||
httpResponse.validateResponse();
|
||||
CPPUNIT_FAIL("exception must be thrown.");
|
||||
} catch(Exception& e) {
|
||||
// success
|
||||
}
|
||||
|
||||
httpResponse.getHttpHeader()->put(HttpHeader::LOCATION, "http://a/b");
|
||||
httpResponse.validateResponse();
|
||||
|
||||
httpResponse.getHttpHeader()->setStatusCode(201);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue