123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- #include "MultiDiskAdaptor.h"
- #include "FileEntry.h"
- #include "Exception.h"
- #include "a2io.h"
- #include "array_fun.h"
- #include "TestUtil.h"
- #include <string>
- #include <cerrno>
- #include <cstring>
- #include <cppunit/extensions/HelperMacros.h>
- namespace aria2 {
- class MultiDiskAdaptorTest:public CppUnit::TestFixture {
- CPPUNIT_TEST_SUITE(MultiDiskAdaptorTest);
- CPPUNIT_TEST(testWriteData);
- CPPUNIT_TEST(testReadData);
- CPPUNIT_TEST(testCutTrailingGarbage);
- CPPUNIT_TEST(testSize);
- CPPUNIT_TEST_SUITE_END();
- private:
- SharedHandle<MultiDiskAdaptor> adaptor;
- public:
- void setUp() {
- adaptor.reset(new MultiDiskAdaptor());
- adaptor->setPieceLength(2);
- adaptor->setStoreDir(".");
- adaptor->setTopDir(".");
- }
- void testWriteData();
- void testReadData();
- void testCutTrailingGarbage();
- void testSize();
- };
- CPPUNIT_TEST_SUITE_REGISTRATION( MultiDiskAdaptorTest );
- std::deque<SharedHandle<FileEntry> > createEntries() {
- SharedHandle<FileEntry> entry1(new FileEntry("file1.txt", 15, 0));
- SharedHandle<FileEntry> entry2(new FileEntry("file2.txt", 7, 15));
- SharedHandle<FileEntry> entry3(new FileEntry("file3.txt", 3, 22));
- unlink("file1.txt");
- unlink("file2.txt");
- unlink("file3.txt");
- std::deque<SharedHandle<FileEntry> > entries;
- entries.push_back(entry1);
- entries.push_back(entry2);
- entries.push_back(entry3);
- return entries;
- }
- void readFile(const std::string& filename, char* buf, int bufLength) {
- FILE* f = fopen(filename.c_str(), "r");
- if(f == NULL) {
- CPPUNIT_FAIL(strerror(errno));
- }
- int retval = fread(buf, bufLength, 1, f);
- fclose(f);
- if(retval != 1) {
- CPPUNIT_FAIL("return value is not 1");
- }
- }
- void MultiDiskAdaptorTest::testWriteData() {
- try {
- adaptor->setFileEntries(createEntries());
- adaptor->openFile();
- std::string msg = "12345";
- adaptor->writeData((const unsigned char*)msg.c_str(), msg.size(), 0);
- adaptor->closeFile();
- char buf[128];
- readFile("file1.txt", buf, 5);
- buf[5] = '\0';
- CPPUNIT_ASSERT_EQUAL(msg, std::string(buf));
- adaptor->openFile();
- std::string msg2 = "67890ABCDEF";
- adaptor->writeData((const unsigned char*)msg2.c_str(), msg2.size(), 5);
- adaptor->closeFile();
- readFile("file1.txt", buf, 15);
- buf[15] = '\0';
- CPPUNIT_ASSERT_EQUAL(std::string("1234567890ABCDE"), std::string(buf));
- readFile("file2.txt", buf, 1);
- buf[1] = '\0';
- CPPUNIT_ASSERT_EQUAL(std::string("F"), std::string(buf));
- adaptor->openFile();
- std::string msg3 = "12345123456712";
- adaptor->writeData((const unsigned char*)msg3.c_str(), msg3.size(), 10);
- adaptor->closeFile();
- readFile("file1.txt", buf, 15);
- buf[15] = '\0';
- CPPUNIT_ASSERT_EQUAL(std::string("123456789012345"), std::string(buf));
- readFile("file2.txt", buf, 7);
- buf[7] = '\0';
- CPPUNIT_ASSERT_EQUAL(std::string("1234567"), std::string(buf));
- readFile("file3.txt", buf, 2);
- buf[2] = '\0';
- CPPUNIT_ASSERT_EQUAL(std::string("12"), std::string(buf));
- } catch(Exception& e) {
- CPPUNIT_FAIL(e.stackTrace());
- }
- }
- void MultiDiskAdaptorTest::testReadData() {
- SharedHandle<FileEntry> entry1(new FileEntry("file1r.txt", 15, 0));
- SharedHandle<FileEntry> entry2(new FileEntry("file2r.txt", 7, 15));
- SharedHandle<FileEntry> entry3(new FileEntry("file3r.txt", 3, 22));
- std::deque<SharedHandle<FileEntry> > entries;
- entries.push_back(entry1);
- entries.push_back(entry2);
- entries.push_back(entry3);
- adaptor->setFileEntries(entries);
- adaptor->openFile();
- unsigned char buf[128];
- adaptor->readData(buf, 15, 0);
- buf[15] = '\0';
- CPPUNIT_ASSERT_EQUAL(std::string("1234567890ABCDE"), std::string((char*)buf));
- adaptor->readData(buf, 10, 6);
- buf[10] = '\0';
- CPPUNIT_ASSERT_EQUAL(std::string("7890ABCDEF"), std::string((char*)buf));
- adaptor->readData(buf, 4, 20);
- buf[4] = '\0';
- CPPUNIT_ASSERT_EQUAL(std::string("KLMN"), std::string((char*)buf));
- adaptor->readData(buf, 25, 0);
- buf[25] = '\0';
- CPPUNIT_ASSERT_EQUAL(std::string("1234567890ABCDEFGHIJKLMNO"), std::string((char*)buf));
- }
- void MultiDiskAdaptorTest::testCutTrailingGarbage()
- {
- std::string dir = "/tmp";
- std::string topDir = ".";
- std::string topDirPath = dir+"/"+topDir;
- std::string prefix = "aria2_MultiDiskAdaptorTest_testCutTrailingGarbage_";
- SharedHandle<FileEntry> entries[] = {
- SharedHandle<FileEntry>(new FileEntry(prefix+"1", 256, 0)),
- SharedHandle<FileEntry>(new FileEntry(prefix+"2", 512, 256))
- };
- for(size_t i = 0; i < arrayLength(entries); ++i) {
- createFile(topDirPath+"/"+entries[i]->getPath(),
- entries[i]->getLength()+100);
- }
- std::deque<SharedHandle<FileEntry> > fileEntries
- (&entries[0], &entries[arrayLength(entries)]);
-
- MultiDiskAdaptor adaptor;
- adaptor.setStoreDir(dir);
- adaptor.setTopDir(topDir);
- adaptor.setFileEntries(fileEntries);
- adaptor.setMaxOpenFiles(1);
- adaptor.setPieceLength(1);
-
- adaptor.openFile();
- adaptor.cutTrailingGarbage();
- CPPUNIT_ASSERT_EQUAL((uint64_t)256,
- File(topDirPath+"/"+entries[0]->getPath()).size());
- CPPUNIT_ASSERT_EQUAL((uint64_t)512,
- File(topDirPath+"/"+entries[1]->getPath()).size());
- }
- void MultiDiskAdaptorTest::testSize()
- {
- std::string dir = "/tmp";
- std::string topDir = ".";
- std::string topDirPath = dir+"/"+topDir;
- std::string prefix = "aria2_MultiDiskAdaptorTest_testSize_";
- SharedHandle<FileEntry> entries[] = {
- SharedHandle<FileEntry>(new FileEntry(prefix+"1", 1, 0)),
- SharedHandle<FileEntry>(new FileEntry(prefix+"2", 1, 1))
- };
- for(size_t i = 0; i < arrayLength(entries); ++i) {
- createFile(topDirPath+"/"+entries[i]->getPath(),
- entries[i]->getLength());
- }
- std::deque<SharedHandle<FileEntry> > fileEntries
- (&entries[0], &entries[arrayLength(entries)]);
-
- MultiDiskAdaptor adaptor;
- adaptor.setStoreDir(dir);
- adaptor.setTopDir(topDir);
- adaptor.setFileEntries(fileEntries);
- adaptor.setMaxOpenFiles(1);
- adaptor.setPieceLength(1);
-
- adaptor.openFile();
- CPPUNIT_ASSERT_EQUAL((uint64_t)2, adaptor.size());
- }
- } // namespace aria2
|