mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
Support network-path reference in HTTP redirect.
This commit is contained in:
parent
2997fa0631
commit
a6803c21b5
2 changed files with 13 additions and 1 deletions
|
@ -137,6 +137,11 @@ void RequestTest::testRedirectUri()
|
|||
"relativepath/to/file"),
|
||||
req.getCurrentUri());
|
||||
CPPUNIT_ASSERT_EQUAL(4, req.getRedirectCount());
|
||||
|
||||
// Give network-path reference
|
||||
CPPUNIT_ASSERT(req.redirectUri("//host/to/file"));
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("http://host/to/file"), req.getCurrentUri());
|
||||
CPPUNIT_ASSERT_EQUAL(5, req.getRedirectCount());
|
||||
}
|
||||
|
||||
void RequestTest::testRedirectUri2()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue