mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
Allow subsecond value in ns cookie.txt file's expiry time field
This commit is contained in:
parent
6976ffed9e
commit
bafbbe7c1d
7 changed files with 64 additions and 9 deletions
|
@ -328,10 +328,10 @@ void CookieStorageTest::testLoad()
|
|||
c = cookies[3];
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("TAX"), c->getName());
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("1000"), c->getValue());
|
||||
CPPUNIT_ASSERT((time_t)INT32_MAX <= c->getExpiryTime());
|
||||
CPPUNIT_ASSERT_EQUAL((time_t)1463304912, c->getExpiryTime());
|
||||
CPPUNIT_ASSERT(c->getPersistent());
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("/"), c->getPath());
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("overflow"), c->getDomain());
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("something"), c->getDomain());
|
||||
CPPUNIT_ASSERT(!c->getSecure());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue