mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +03:00
2008-09-07 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Implemented the ability to get timestamp from remote HTTP server and apply it to local file. To enable this feature, --remote-time option is added. No usage text has been written yet. If several servers returns difference timestamp, then aria2 uses latest one. * src/CopyDiskAdaptor.cc * src/CopyDiskAdaptor.h * src/DirectDiskAdaptor.cc * src/DirectDiskAdaptor.h * src/DiskAdaptor.h * src/File.cc * src/File.h * src/HttpHeader.cc * src/HttpHeader.h * src/HttpResponse.cc * src/HttpResponse.h * src/HttpResponseCommand.cc * src/HttpResponseCommand.h * src/MultiDiskAdaptor.cc * src/MultiDiskAdaptor.h * src/OptionHandlerFactory.cc * src/RequestGroup.cc * src/RequestGroup.h * src/RequestGroupMan.cc * src/option_processing.cc * src/prefs.cc * src/prefs.h * test/CopyDiskAdaptorTest.cc * test/FileTest.cc * test/Makefile.am * test/Makefile.in * test/MultiDiskAdaptorTest.cc * test/TestUtil.cc
This commit is contained in:
parent
4e28efd925
commit
dbc8f5b737
29 changed files with 352 additions and 13 deletions
|
@ -1,4 +1,5 @@
|
|||
#include "File.h"
|
||||
#include "TestUtil.h"
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <fcntl.h>
|
||||
|
@ -20,6 +21,7 @@ class FileTest:public CppUnit::TestFixture {
|
|||
CPPUNIT_TEST(testGetDirname);
|
||||
CPPUNIT_TEST(testGetBasename);
|
||||
CPPUNIT_TEST(testRenameTo);
|
||||
CPPUNIT_TEST(testUtime);
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
private:
|
||||
|
||||
|
@ -36,6 +38,7 @@ public:
|
|||
void testGetDirname();
|
||||
void testGetBasename();
|
||||
void testRenameTo();
|
||||
void testUtime();
|
||||
};
|
||||
|
||||
|
||||
|
@ -208,4 +211,20 @@ void FileTest::testRenameTo()
|
|||
CPPUNIT_ASSERT(f.renameTo(fname));
|
||||
}
|
||||
|
||||
void FileTest::testUtime()
|
||||
{
|
||||
File f("/tmp/FileTest_testUTime");
|
||||
createFile(f.getPath(), 0);
|
||||
CPPUNIT_ASSERT(f.utime(Time(1000), Time(2000)));
|
||||
|
||||
struct stat buf;
|
||||
CPPUNIT_ASSERT(0 == stat(f.getPath().c_str(), &buf));
|
||||
CPPUNIT_ASSERT_EQUAL((time_t)1000, buf.st_atime);
|
||||
CPPUNIT_ASSERT_EQUAL((time_t)2000, f.getModifiedTime().getTime());
|
||||
|
||||
File notFound("/tmp/FileTest_testUTime_notFound");
|
||||
notFound.remove();
|
||||
CPPUNIT_ASSERT(!notFound.utime(Time(1000), Time(2000)));
|
||||
}
|
||||
|
||||
} // namespace aria2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue