2007-10-12 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>

Implemented BitTorrent/http/ftp integrated download.
	I've rewritten lots of files and now some headers have forward
	class declarations to reduce compile time.
	The implementation is extremely alpha stage, I recommend to use this
	for testing purpose only.
This commit is contained in:
Tatsuhiro Tsujikawa 2007-10-11 16:58:24 +00:00
parent e26bbbb9ee
commit 048a2cf597
252 changed files with 8646 additions and 5343 deletions

View file

@ -3,6 +3,7 @@
#include <sys/stat.h>
#include <fcntl.h>
#include <string>
#include <fstream>
#include <cppunit/extensions/HelperMacros.h>
using namespace std;
@ -18,6 +19,7 @@ class FileTest:public CppUnit::TestFixture {
CPPUNIT_TEST(testMkdir);
CPPUNIT_TEST(testGetDirname);
CPPUNIT_TEST(testGetBasename);
CPPUNIT_TEST(testRenameTo);
CPPUNIT_TEST_SUITE_END();
private:
@ -33,6 +35,7 @@ public:
void testMkdir();
void testGetDirname();
void testGetBasename();
void testRenameTo();
};
@ -132,3 +135,23 @@ void FileTest::testGetBasename()
File f("/tmp/dist/aria2.tar.bz2");
CPPUNIT_ASSERT_EQUAL(string("aria2.tar.bz2"), f.getBasename());
}
void FileTest::testRenameTo()
{
string fname = "FileTest_testRenameTo.txt";
ofstream of(fname.c_str());
of.close();
File f(fname);
string fnameTo = "FileTest_testRenameTo_dest.txt";
CPPUNIT_ASSERT(f.renameTo(fnameTo));
CPPUNIT_ASSERT(f.exists());
CPPUNIT_ASSERT(!File(fname).exists());
CPPUNIT_ASSERT_EQUAL(fnameTo, f.getBasename());
// to see renameTo() work even when the destination file exists
of.open(fname.c_str());
of.close();
CPPUNIT_ASSERT(f.renameTo(fname));
}