Treat 30X response without Location header field as error

This is required to make segmented download work.
This commit is contained in:
Tatsuhiro Tsujikawa 2014-02-05 21:20:09 +09:00
parent ec4b729704
commit b18e62dba7
3 changed files with 16 additions and 6 deletions

View file

@ -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);