2007-10-11 16:58:24 +00:00
|
|
|
#include "MultiFileAllocationIterator.h"
|
|
|
|
#include "File.h"
|
|
|
|
#include "MultiDiskAdaptor.h"
|
2008-02-08 15:53:45 +00:00
|
|
|
#include "FileEntry.h"
|
|
|
|
#include "Exception.h"
|
2008-06-15 16:19:06 +00:00
|
|
|
#include "array_fun.h"
|
2008-02-08 15:53:45 +00:00
|
|
|
#include <algorithm>
|
2008-03-03 11:30:12 +00:00
|
|
|
#include <iostream>
|
2007-10-11 16:58:24 +00:00
|
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
|
2008-02-08 15:53:45 +00:00
|
|
|
namespace aria2 {
|
|
|
|
|
2007-10-11 16:58:24 +00:00
|
|
|
class MultiFileAllocationIteratorTest:public CppUnit::TestFixture {
|
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE(MultiFileAllocationIteratorTest);
|
|
|
|
CPPUNIT_TEST(testAllocate);
|
2007-11-28 14:22:28 +00:00
|
|
|
CPPUNIT_TEST(testMakeDiskWriterEntries);
|
2007-10-11 16:58:24 +00:00
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
private:
|
|
|
|
|
|
|
|
public:
|
|
|
|
void setUp() {}
|
|
|
|
|
|
|
|
void testAllocate();
|
2007-11-28 14:22:28 +00:00
|
|
|
void testMakeDiskWriterEntries();
|
2007-10-11 16:58:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION( MultiFileAllocationIteratorTest );
|
|
|
|
|
2007-11-28 14:22:28 +00:00
|
|
|
void MultiFileAllocationIteratorTest::testMakeDiskWriterEntries()
|
2007-11-21 16:14:40 +00:00
|
|
|
{
|
2008-02-08 15:53:45 +00:00
|
|
|
SharedHandle<FileEntry> fs[] = {
|
2008-04-20 00:50:22 +00:00
|
|
|
SharedHandle<FileEntry>(new FileEntry("file1", 1536, 0)),
|
2008-06-15 16:19:06 +00:00
|
|
|
SharedHandle<FileEntry>(new FileEntry("file2", 2048, 1536)),// req no
|
2008-04-20 00:50:22 +00:00
|
|
|
SharedHandle<FileEntry>(new FileEntry("file3", 1024, 3584)),
|
2008-06-15 16:19:06 +00:00
|
|
|
SharedHandle<FileEntry>(new FileEntry("file4", 1024, 4608)),// req no
|
|
|
|
SharedHandle<FileEntry>(new FileEntry("file5", 1024, 5632)),// req no
|
|
|
|
SharedHandle<FileEntry>(new FileEntry("file6", 1024, 6656)),// req no
|
|
|
|
SharedHandle<FileEntry>(new FileEntry("file7", 256, 7680)),// req no
|
|
|
|
SharedHandle<FileEntry>(new FileEntry("file8", 255, 7936)),
|
|
|
|
SharedHandle<FileEntry>(new FileEntry("file9", 1025, 8191)),// req no
|
|
|
|
SharedHandle<FileEntry>(new FileEntry("fileA", 1024, 9216)),// req no
|
|
|
|
SharedHandle<FileEntry>(new FileEntry("fileB", 1024, 10240)),
|
2007-11-21 16:14:40 +00:00
|
|
|
};
|
2008-06-15 16:19:06 +00:00
|
|
|
fs[1]->setRequested(false); // file2
|
|
|
|
fs[3]->setRequested(false); // file4
|
|
|
|
fs[4]->setRequested(false); // file5
|
|
|
|
fs[5]->setRequested(false); // file6
|
|
|
|
fs[6]->setRequested(false); // file7
|
|
|
|
fs[8]->setRequested(false); // file9
|
|
|
|
fs[9]->setRequested(false); // fileA
|
2007-11-21 16:14:40 +00:00
|
|
|
|
2008-02-08 15:53:45 +00:00
|
|
|
std::string storeDir = "/tmp/aria2_MultiFileAllocationIteratorTest_testMakeDiskWriterEntries";
|
2008-04-20 00:50:22 +00:00
|
|
|
SharedHandle<MultiDiskAdaptor> diskAdaptor(new MultiDiskAdaptor());
|
2008-06-15 16:19:06 +00:00
|
|
|
diskAdaptor->setFileEntries(std::deque<SharedHandle<FileEntry> >(&fs[0], &fs[arrayLength(fs)]));
|
2007-11-21 16:14:40 +00:00
|
|
|
diskAdaptor->setPieceLength(1024);
|
2007-11-28 14:22:28 +00:00
|
|
|
diskAdaptor->setStoreDir(storeDir);
|
|
|
|
diskAdaptor->openFile();
|
2007-11-21 16:14:40 +00:00
|
|
|
|
2008-04-20 00:50:22 +00:00
|
|
|
SharedHandle<MultiFileAllocationIterator> itr
|
|
|
|
(dynamic_pointer_cast<MultiFileAllocationIterator>(diskAdaptor->fileAllocationIterator()));
|
2007-11-21 16:14:40 +00:00
|
|
|
|
2007-11-28 14:22:28 +00:00
|
|
|
DiskWriterEntries entries = itr->getDiskWriterEntries();
|
2007-11-21 16:14:40 +00:00
|
|
|
|
2008-02-08 15:53:45 +00:00
|
|
|
std::sort(entries.begin(), entries.end());
|
2007-11-21 16:14:40 +00:00
|
|
|
|
2008-06-15 16:19:06 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL((size_t)8, entries.size());
|
2007-11-21 16:14:40 +00:00
|
|
|
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(storeDir+std::string("/file1"), entries[0]->getFilePath(storeDir));
|
|
|
|
CPPUNIT_ASSERT_EQUAL(storeDir+std::string("/file2"), entries[1]->getFilePath(storeDir));
|
|
|
|
CPPUNIT_ASSERT_EQUAL(storeDir+std::string("/file3"), entries[2]->getFilePath(storeDir));
|
|
|
|
CPPUNIT_ASSERT_EQUAL(storeDir+std::string("/file6"), entries[3]->getFilePath(storeDir));
|
|
|
|
CPPUNIT_ASSERT_EQUAL(storeDir+std::string("/file7"), entries[4]->getFilePath(storeDir));
|
|
|
|
CPPUNIT_ASSERT_EQUAL(storeDir+std::string("/file8"), entries[5]->getFilePath(storeDir));
|
2008-06-15 16:19:06 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(storeDir+std::string("/file9"), entries[6]->getFilePath(storeDir));
|
|
|
|
CPPUNIT_ASSERT_EQUAL(storeDir+std::string("/fileB"), entries[7]->getFilePath(storeDir));
|
2007-11-21 16:14:40 +00:00
|
|
|
}
|
|
|
|
|
2007-10-11 16:58:24 +00:00
|
|
|
void MultiFileAllocationIteratorTest::testAllocate()
|
|
|
|
{
|
2008-02-08 15:53:45 +00:00
|
|
|
std::string dir = "/tmp";
|
|
|
|
std::string topDir = "aria2_MultiFileAllocationIteratorTest_testAllocate";
|
|
|
|
std::string fname1 = "file1";
|
|
|
|
std::string fname2 = "file2";
|
|
|
|
std::string fname3 = "file3";
|
|
|
|
std::string fname4 = "file4";
|
|
|
|
std::string fname5 = "file5";
|
|
|
|
std::string fname6 = "file6";
|
2007-10-11 16:58:24 +00:00
|
|
|
int64_t length1 = 32769;
|
|
|
|
int64_t length2 = 0;
|
|
|
|
int64_t length3 = 8;
|
|
|
|
int64_t length4 = 10;
|
|
|
|
int64_t length5 = 20;
|
|
|
|
int64_t length6 = 30;
|
|
|
|
|
|
|
|
try {
|
2008-04-20 00:50:22 +00:00
|
|
|
SharedHandle<MultiDiskAdaptor> diskAdaptor(new MultiDiskAdaptor());
|
2008-02-08 15:53:45 +00:00
|
|
|
diskAdaptor->setStoreDir(dir);
|
|
|
|
diskAdaptor->setTopDir(topDir);
|
|
|
|
|
|
|
|
int64_t offset = 0;
|
2008-04-20 00:50:22 +00:00
|
|
|
SharedHandle<FileEntry> fileEntry1(new FileEntry(fname1,
|
|
|
|
length1,
|
|
|
|
offset));
|
2008-02-08 15:53:45 +00:00
|
|
|
offset += length1;
|
2008-04-20 00:50:22 +00:00
|
|
|
SharedHandle<FileEntry> fileEntry2(new FileEntry(fname2,
|
|
|
|
length2,
|
|
|
|
offset));
|
2008-02-08 15:53:45 +00:00
|
|
|
|
|
|
|
offset += length2;
|
2008-04-20 00:50:22 +00:00
|
|
|
SharedHandle<FileEntry> fileEntry3(new FileEntry(fname3,
|
|
|
|
length3,
|
|
|
|
offset));
|
2008-02-08 15:53:45 +00:00
|
|
|
|
|
|
|
offset += length3;
|
2008-04-20 00:50:22 +00:00
|
|
|
SharedHandle<FileEntry> fileEntry4(new FileEntry(fname4,
|
|
|
|
length4,
|
|
|
|
offset));
|
2008-02-08 15:53:45 +00:00
|
|
|
fileEntry4->setRequested(false);
|
|
|
|
|
|
|
|
offset += length4;
|
2008-04-20 00:50:22 +00:00
|
|
|
SharedHandle<FileEntry> fileEntry5(new FileEntry(fname5,
|
|
|
|
length5,
|
|
|
|
offset));
|
2008-02-08 15:53:45 +00:00
|
|
|
|
|
|
|
offset += length5;
|
2008-04-20 00:50:22 +00:00
|
|
|
SharedHandle<FileEntry> fileEntry6(new FileEntry(fname6,
|
|
|
|
length6,
|
|
|
|
offset));
|
2008-02-08 15:53:45 +00:00
|
|
|
fileEntry6->setRequested(false);
|
|
|
|
|
|
|
|
std::deque<SharedHandle<FileEntry> > fs;
|
|
|
|
fs.push_back(fileEntry1);
|
|
|
|
fs.push_back(fileEntry2);
|
|
|
|
fs.push_back(fileEntry3);
|
|
|
|
fs.push_back(fileEntry4);
|
|
|
|
fs.push_back(fileEntry5);
|
|
|
|
fs.push_back(fileEntry6);
|
|
|
|
diskAdaptor->setFileEntries(fs);
|
|
|
|
|
|
|
|
// we have to open file first.
|
|
|
|
diskAdaptor->initAndOpenFile();
|
2008-04-20 00:50:22 +00:00
|
|
|
SharedHandle<MultiFileAllocationIterator> itr
|
|
|
|
(dynamic_pointer_cast<MultiFileAllocationIterator>(diskAdaptor->fileAllocationIterator()));
|
2008-02-08 15:53:45 +00:00
|
|
|
while(!itr->finished()) {
|
|
|
|
itr->allocateChunk();
|
|
|
|
}
|
2008-03-09 12:24:01 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL((uint64_t)length1, File(dir+"/"+topDir+"/"+fname1).size());
|
|
|
|
CPPUNIT_ASSERT_EQUAL((uint64_t)length2, File(dir+"/"+topDir+"/"+fname2).size());
|
|
|
|
CPPUNIT_ASSERT_EQUAL((uint64_t)length3, File(dir+"/"+topDir+"/"+fname3).size());
|
2008-06-15 16:19:06 +00:00
|
|
|
CPPUNIT_ASSERT(!File(dir+"/"+topDir+"/"+fname4).isFile());
|
|
|
|
|
2008-03-09 12:24:01 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL((uint64_t)length5, File(dir+"/"+topDir+"/"+fname5).size());
|
2008-06-15 16:19:06 +00:00
|
|
|
CPPUNIT_ASSERT(!File(dir+"/"+topDir+"/"+fname6).isFile());
|
2007-10-11 16:58:24 +00:00
|
|
|
|
2008-04-27 02:22:14 +00:00
|
|
|
} catch(Exception& e) {
|
|
|
|
CPPUNIT_FAIL(e.stackTrace());
|
2007-10-11 16:58:24 +00:00
|
|
|
}
|
|
|
|
}
|
2008-02-08 15:53:45 +00:00
|
|
|
|
|
|
|
} // namespace aria2
|