Written FuseOpenFileListTests
This commit is contained in:
parent
6da534792b
commit
0e1a0f4867
@ -5,6 +5,7 @@
|
|||||||
#include <map>
|
#include <map>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <mutex>
|
#include <mutex>
|
||||||
|
#include <stdexcept>
|
||||||
#include "fspp/utils/macros.h"
|
#include "fspp/utils/macros.h"
|
||||||
|
|
||||||
namespace fspp {
|
namespace fspp {
|
||||||
@ -60,7 +61,11 @@ const Entry *IdList<Entry>::get(int id) const {
|
|||||||
template<class Entry>
|
template<class Entry>
|
||||||
void IdList<Entry>::remove(int id) {
|
void IdList<Entry>::remove(int id) {
|
||||||
std::lock_guard<std::mutex> lock(_mutex);
|
std::lock_guard<std::mutex> lock(_mutex);
|
||||||
_entries.erase(id);
|
auto found_iter = _entries.find(id);
|
||||||
|
if (found_iter == _entries.end()) {
|
||||||
|
throw std::out_of_range("Called IdList::remove() with an invalid ID");
|
||||||
|
}
|
||||||
|
_entries.erase(found_iter);
|
||||||
}
|
}
|
||||||
|
|
||||||
} /* namespace fspp */
|
} /* namespace fspp */
|
||||||
|
@ -3,47 +3,162 @@
|
|||||||
|
|
||||||
#include "fspp/impl/FuseOpenFileList.h"
|
#include "fspp/impl/FuseOpenFileList.h"
|
||||||
|
|
||||||
|
#include <stdexcept>
|
||||||
|
|
||||||
using std::unique_ptr;
|
using std::unique_ptr;
|
||||||
using std::make_unique;
|
using std::make_unique;
|
||||||
|
|
||||||
using namespace fspp;
|
using namespace fspp;
|
||||||
|
|
||||||
class MyOpenFile: public OpenFile {
|
class MockOpenFile: public OpenFile {
|
||||||
public:
|
public:
|
||||||
MyOpenFile(int fileid_, int flags_) :fileid(fileid_), flags(flags_) {}
|
MockOpenFile(int fileid_, int flags_): fileid(fileid_), flags(flags_), destructed(false) {}
|
||||||
~MyOpenFile() {}
|
int fileid, flags;
|
||||||
int fileid;
|
bool destructed;
|
||||||
int flags;
|
|
||||||
|
|
||||||
void stat(struct ::stat *) const override {}
|
~MockOpenFile() {destructed = true;}
|
||||||
void truncate(off_t) const override {}
|
|
||||||
int read(void *, size_t, off_t) override {return 0;}
|
MOCK_CONST_METHOD1(stat, void(struct ::stat*));
|
||||||
void write(const void *, size_t, off_t) override {}
|
MOCK_CONST_METHOD1(truncate, void(off_t));
|
||||||
void fsync() override {}
|
MOCK_METHOD3(read, int(void*, size_t, off_t));
|
||||||
void fdatasync() override {}
|
MOCK_METHOD3(write, void(const void*, size_t, off_t));
|
||||||
|
MOCK_METHOD0(fsync, void());
|
||||||
|
MOCK_METHOD0(fdatasync, void());
|
||||||
};
|
};
|
||||||
|
|
||||||
class MyFile: public File {
|
class MockFile: public File {
|
||||||
public:
|
public:
|
||||||
MyFile(int id_): id(id_) {}
|
MockFile(int id_): id(id_) {}
|
||||||
int id;
|
int id;
|
||||||
|
|
||||||
unique_ptr<OpenFile> open(int flags) const override {
|
unique_ptr<OpenFile> open(int flags) const override {
|
||||||
return make_unique<MyOpenFile>(id, flags);
|
return make_unique<MockOpenFile>(id, flags);
|
||||||
}
|
}
|
||||||
|
MOCK_CONST_METHOD1(truncate, void(off_t));
|
||||||
void truncate(off_t) const override {}
|
MOCK_METHOD0(unlink, void());
|
||||||
void unlink() override {}
|
MOCK_CONST_METHOD1(stat, void(struct ::stat*));
|
||||||
void stat(struct ::stat *) const override {}
|
MOCK_CONST_METHOD1(access, void(int));
|
||||||
void access(int) const override {}
|
MOCK_METHOD1(rename, void(const boost::filesystem::path &));
|
||||||
void rename(const boost::filesystem::path &) override {}
|
MOCK_METHOD1(utimens, void(const timespec[2]));
|
||||||
void utimens(const timespec[2]) override {}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
TEST(FuseOpenFileListTest, Open) {
|
TEST(FuseOpenFileListTest, EmptyList1) {
|
||||||
MyFile file(3);
|
|
||||||
FuseOpenFileList list;
|
FuseOpenFileList list;
|
||||||
int id = list.open(file, 4);
|
ASSERT_THROW(list.get(0), std::out_of_range);
|
||||||
EXPECT_EQ(3, dynamic_cast<MyOpenFile*>(list.get(id))->fileid);
|
}
|
||||||
EXPECT_EQ(4, dynamic_cast<MyOpenFile*>(list.get(id))->flags);
|
|
||||||
|
TEST(FuseOpenFileListTest, EmptyList2) {
|
||||||
|
FuseOpenFileList list;
|
||||||
|
ASSERT_THROW(list.get(3), std::out_of_range);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(FuseOpenFileListTest, InvalidId) {
|
||||||
|
FuseOpenFileList list;
|
||||||
|
int valid_id = list.open(MockFile(3), 2);
|
||||||
|
int invalid_id = valid_id + 1;
|
||||||
|
ASSERT_THROW(list.get(invalid_id), std::out_of_range);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(FuseOpenFileListTest, Open1AndGet) {
|
||||||
|
const int FILEID = 4;
|
||||||
|
const int FLAGS = 5;
|
||||||
|
|
||||||
|
FuseOpenFileList list;
|
||||||
|
int id = list.open(MockFile(FILEID), FLAGS);
|
||||||
|
|
||||||
|
MockOpenFile *openFile = dynamic_cast<MockOpenFile*>(list.get(id));
|
||||||
|
|
||||||
|
EXPECT_EQ(FILEID, openFile->fileid);
|
||||||
|
EXPECT_EQ(FLAGS, openFile->flags);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(FuseOpenFileListTest, Open2AndGet) {
|
||||||
|
const int FILEID1 = 4;
|
||||||
|
const int FLAGS1 = 5;
|
||||||
|
const int FILEID2 = 6;
|
||||||
|
const int FLAGS2 = 7;
|
||||||
|
|
||||||
|
FuseOpenFileList list;
|
||||||
|
int id1 = list.open(MockFile(FILEID1), FLAGS1);
|
||||||
|
int id2 = list.open(MockFile(FILEID2), FLAGS2);
|
||||||
|
|
||||||
|
MockOpenFile *openFile1 = dynamic_cast<MockOpenFile*>(list.get(id1));
|
||||||
|
MockOpenFile *openFile2 = dynamic_cast<MockOpenFile*>(list.get(id2));
|
||||||
|
|
||||||
|
EXPECT_EQ(FILEID1, openFile1->fileid);
|
||||||
|
EXPECT_EQ(FLAGS1, openFile1->flags);
|
||||||
|
EXPECT_EQ(FILEID2, openFile2->fileid);
|
||||||
|
EXPECT_EQ(FLAGS2, openFile2->flags);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(FuseOpenFileListTest, Open3AndGet) {
|
||||||
|
const int FILEID1 = 4;
|
||||||
|
const int FLAGS1 = 5;
|
||||||
|
const int FILEID2 = 6;
|
||||||
|
const int FLAGS2 = 7;
|
||||||
|
const int FILEID3 = 8;
|
||||||
|
const int FLAGS3 = 9;
|
||||||
|
|
||||||
|
FuseOpenFileList list;
|
||||||
|
int id1 = list.open(MockFile(FILEID1), FLAGS1);
|
||||||
|
int id2 = list.open(MockFile(FILEID2), FLAGS2);
|
||||||
|
int id3 = list.open(MockFile(FILEID3), FLAGS3);
|
||||||
|
|
||||||
|
MockOpenFile *openFile1 = dynamic_cast<MockOpenFile*>(list.get(id1));
|
||||||
|
MockOpenFile *openFile3 = dynamic_cast<MockOpenFile*>(list.get(id3));
|
||||||
|
MockOpenFile *openFile2 = dynamic_cast<MockOpenFile*>(list.get(id2));
|
||||||
|
|
||||||
|
EXPECT_EQ(FILEID1, openFile1->fileid);
|
||||||
|
EXPECT_EQ(FLAGS1, openFile1->flags);
|
||||||
|
EXPECT_EQ(FILEID2, openFile2->fileid);
|
||||||
|
EXPECT_EQ(FLAGS2, openFile2->flags);
|
||||||
|
EXPECT_EQ(FILEID3, openFile3->fileid);
|
||||||
|
EXPECT_EQ(FLAGS3, openFile3->flags);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(FuseOpenFileListTest, DestructOnClose) {
|
||||||
|
FuseOpenFileList list;
|
||||||
|
int id = list.open(MockFile(3), 4);
|
||||||
|
|
||||||
|
MockOpenFile *openFile = dynamic_cast<MockOpenFile*>(list.get(id));
|
||||||
|
|
||||||
|
EXPECT_FALSE(openFile->destructed);
|
||||||
|
list.close(id);
|
||||||
|
EXPECT_TRUE(openFile->destructed);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(FuseOpenFileListTest, GetClosedItemOnEmptyList) {
|
||||||
|
FuseOpenFileList list;
|
||||||
|
int id = list.open(MockFile(3), 4);
|
||||||
|
|
||||||
|
ASSERT_NO_THROW(list.get(id));
|
||||||
|
list.close(id);
|
||||||
|
ASSERT_THROW(list.get(id), std::out_of_range);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(FuseOpenFileListTest, GetClosedItemOnNonEmptyList) {
|
||||||
|
FuseOpenFileList list;
|
||||||
|
int id = list.open(MockFile(3), 4);
|
||||||
|
list.open(MockFile(5), 4);
|
||||||
|
|
||||||
|
ASSERT_NO_THROW(list.get(id));
|
||||||
|
list.close(id);
|
||||||
|
ASSERT_THROW(list.get(id), std::out_of_range);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(FuseOpenFileListTest, CloseOnEmptyList1) {
|
||||||
|
FuseOpenFileList list;
|
||||||
|
ASSERT_THROW(list.close(0), std::out_of_range);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(FuseOpenFileListTest, CloseOnEmptyList2) {
|
||||||
|
FuseOpenFileList list;
|
||||||
|
ASSERT_THROW(list.close(4), std::out_of_range);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(FuseOpenFileListTest, RemoveInvalidId) {
|
||||||
|
FuseOpenFileList list;
|
||||||
|
int valid_id = list.open(MockFile(3), 4);
|
||||||
|
int invalid_id = valid_id + 1;
|
||||||
|
ASSERT_THROW(list.close(invalid_id), std::out_of_range);
|
||||||
}
|
}
|
||||||
|
@ -45,6 +45,23 @@ TEST(IdListTest, GetRemovedItemOnNonEmptyList) {
|
|||||||
ASSERT_THROW(list.get(id), std::out_of_range);
|
ASSERT_THROW(list.get(id), std::out_of_range);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST(IdListTest, RemoveOnEmptyList1) {
|
||||||
|
IdList<MyObj> list;
|
||||||
|
ASSERT_THROW(list.remove(0), std::out_of_range);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(IdListTest, RemoveOnEmptyList2) {
|
||||||
|
IdList<MyObj> list;
|
||||||
|
ASSERT_THROW(list.remove(4), std::out_of_range);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(IdListTest, RemoveInvalidId) {
|
||||||
|
IdList<MyObj> list;
|
||||||
|
int valid_id = list.add(make_unique<MyObj>(6));
|
||||||
|
int invalid_id = valid_id + 1;
|
||||||
|
ASSERT_THROW(list.remove(invalid_id), std::out_of_range);
|
||||||
|
}
|
||||||
|
|
||||||
TEST(IdListTest, Add1AndGet) {
|
TEST(IdListTest, Add1AndGet) {
|
||||||
IdList<MyObj> list;
|
IdList<MyObj> list;
|
||||||
int id6 = list.add(make_unique<MyObj>(6));
|
int id6 = list.add(make_unique<MyObj>(6));
|
||||||
|
Loading…
Reference in New Issue
Block a user