2023-08-09 17:41:15 +00:00
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
|
|
|
#include "base.h"
|
|
|
|
#include "storage.h"
|
|
|
|
#include "cursor.h"
|
|
|
|
|
|
|
|
class StorageCursorTest : public ::testing::Test {
|
|
|
|
protected:
|
|
|
|
StorageCursorTest():
|
|
|
|
::testing::Test(),
|
2023-08-10 23:07:12 +00:00
|
|
|
table (db->getStorage<uint64_t, std::string>("table1")),
|
|
|
|
emptyTable (db->getStorage<uint64_t, std::string>("empty")) {}
|
2023-08-09 17:41:15 +00:00
|
|
|
|
|
|
|
~StorageCursorTest() {}
|
|
|
|
|
|
|
|
static void SetUpTestSuite() {
|
|
|
|
if (db == nullptr) {
|
|
|
|
db = new LMDBAL::Base("testBase");
|
|
|
|
db->addStorage<uint64_t, std::string>("table1");
|
2023-08-10 23:07:12 +00:00
|
|
|
db->addStorage<uint64_t, std::string>("empty");
|
2023-08-09 17:41:15 +00:00
|
|
|
db->open();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-01 22:45:42 +00:00
|
|
|
int getTableCursorsSize() const {
|
|
|
|
return table->cursors.size();
|
|
|
|
}
|
|
|
|
|
2023-08-09 17:41:15 +00:00
|
|
|
static void TearDownTestSuite() {
|
2023-11-01 22:45:42 +00:00
|
|
|
cursor.drop();
|
2023-10-17 21:06:11 +00:00
|
|
|
transaction.terminate();
|
2023-08-09 17:41:15 +00:00
|
|
|
db->close();
|
|
|
|
db->removeDirectory();
|
|
|
|
delete db;
|
|
|
|
db = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static LMDBAL::Base* db;
|
2023-10-25 22:18:23 +00:00
|
|
|
static LMDBAL::Cursor<uint64_t, std::string> cursor;
|
2023-10-17 21:06:11 +00:00
|
|
|
static LMDBAL::Transaction transaction;
|
2023-08-09 17:41:15 +00:00
|
|
|
|
|
|
|
LMDBAL::Storage<uint64_t, std::string>* table;
|
2023-08-10 23:07:12 +00:00
|
|
|
LMDBAL::Storage<uint64_t, std::string>* emptyTable;
|
2023-08-09 17:41:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
LMDBAL::Base* StorageCursorTest::db = nullptr;
|
2023-10-25 22:18:23 +00:00
|
|
|
LMDBAL::Cursor<uint64_t, std::string> StorageCursorTest::cursor;
|
2023-10-17 21:06:11 +00:00
|
|
|
LMDBAL::Transaction StorageCursorTest::transaction = LMDBAL::Transaction();
|
2023-08-09 17:41:15 +00:00
|
|
|
|
|
|
|
static const std::map<uint64_t, std::string> data({
|
|
|
|
{245665783, "bothering nerds"},
|
|
|
|
{3458, "resilent pick forefront"},
|
|
|
|
{105190, "apportunity legal bat"},
|
|
|
|
{6510, "outside"},
|
|
|
|
{7438537, "damocles plush apparently rusty"},
|
|
|
|
{19373572, "local guidence"},
|
|
|
|
{138842, "forgetting tusks prepare"},
|
|
|
|
{981874, "butchered soaking pawn"},
|
|
|
|
{19302, "tanned inmate"},
|
|
|
|
{178239, "custody speaks neurotic"},
|
|
|
|
});
|
|
|
|
|
|
|
|
TEST_F(StorageCursorTest, PopulatingTheTable) {
|
|
|
|
uint32_t amount = table->addRecords(data);
|
|
|
|
EXPECT_EQ(amount, data.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(StorageCursorTest, Creation) {
|
2023-11-01 22:45:42 +00:00
|
|
|
EXPECT_EQ(getTableCursorsSize(), 0);
|
2023-08-09 17:41:15 +00:00
|
|
|
cursor = table->createCursor();
|
2023-11-01 22:45:42 +00:00
|
|
|
EXPECT_EQ(getTableCursorsSize(), 1);
|
2023-08-09 17:41:15 +00:00
|
|
|
|
2023-10-25 22:18:23 +00:00
|
|
|
EXPECT_THROW(cursor.first(), LMDBAL::CursorNotReady);
|
|
|
|
EXPECT_THROW(cursor.last(), LMDBAL::CursorNotReady);
|
|
|
|
EXPECT_THROW(cursor.next(), LMDBAL::CursorNotReady);
|
|
|
|
EXPECT_THROW(cursor.prev(), LMDBAL::CursorNotReady);
|
|
|
|
EXPECT_THROW(cursor.current(), LMDBAL::CursorNotReady);
|
2023-08-09 17:41:15 +00:00
|
|
|
|
2023-10-25 22:18:23 +00:00
|
|
|
cursor.open();
|
2023-08-09 17:41:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(StorageCursorTest, FirstPrivate) {
|
2023-11-01 22:45:42 +00:00
|
|
|
EXPECT_EQ(getTableCursorsSize(), 1);
|
2023-10-25 22:18:23 +00:00
|
|
|
std::pair<uint64_t, std::string> element = cursor.first();
|
2023-08-09 17:41:15 +00:00
|
|
|
std::map<uint64_t, std::string>::const_iterator reference = data.begin();
|
|
|
|
|
|
|
|
EXPECT_EQ(element.first, reference->first);
|
|
|
|
EXPECT_EQ(element.second, reference->second);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(StorageCursorTest, NextPrivate) {
|
2023-11-01 22:45:42 +00:00
|
|
|
EXPECT_EQ(getTableCursorsSize(), 1);
|
2023-08-09 17:41:15 +00:00
|
|
|
std::map<uint64_t, std::string>::const_iterator reference = data.begin();
|
|
|
|
|
|
|
|
reference++;
|
|
|
|
for (; reference != data.end(); ++reference) {
|
2023-10-25 22:18:23 +00:00
|
|
|
std::pair<uint64_t, std::string> element = cursor.next();
|
2023-08-09 17:41:15 +00:00
|
|
|
EXPECT_EQ(element.first, reference->first);
|
|
|
|
EXPECT_EQ(element.second, reference->second);
|
|
|
|
}
|
|
|
|
|
2023-10-25 22:18:23 +00:00
|
|
|
EXPECT_THROW(cursor.next(), LMDBAL::NotFound);
|
2023-08-09 17:41:15 +00:00
|
|
|
|
2023-10-25 22:18:23 +00:00
|
|
|
std::pair<uint64_t, std::string> element = cursor.first();
|
2023-08-09 17:41:15 +00:00
|
|
|
reference = data.begin();
|
|
|
|
|
|
|
|
EXPECT_EQ(element.first, reference->first);
|
|
|
|
EXPECT_EQ(element.second, reference->second);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(StorageCursorTest, LastPrivate) {
|
2023-11-01 22:45:42 +00:00
|
|
|
EXPECT_EQ(getTableCursorsSize(), 1);
|
2023-10-25 22:18:23 +00:00
|
|
|
std::pair<uint64_t, std::string> element = cursor.last();
|
2023-08-09 17:41:15 +00:00
|
|
|
std::map<uint64_t, std::string>::const_reverse_iterator reference = data.rbegin();
|
|
|
|
|
|
|
|
EXPECT_EQ(element.first, reference->first);
|
|
|
|
EXPECT_EQ(element.second, reference->second);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(StorageCursorTest, PrevPrivate) {
|
2023-11-01 22:45:42 +00:00
|
|
|
EXPECT_EQ(getTableCursorsSize(), 1);
|
2023-08-09 17:41:15 +00:00
|
|
|
std::map<uint64_t, std::string>::const_reverse_iterator reference = data.rbegin();
|
|
|
|
|
|
|
|
reference++;
|
|
|
|
for (; reference != data.rend(); ++reference) {
|
2023-10-25 22:18:23 +00:00
|
|
|
std::pair<uint64_t, std::string> element = cursor.prev();
|
2023-08-09 17:41:15 +00:00
|
|
|
EXPECT_EQ(element.first, reference->first);
|
|
|
|
EXPECT_EQ(element.second, reference->second);
|
|
|
|
}
|
|
|
|
|
2023-10-25 22:18:23 +00:00
|
|
|
EXPECT_THROW(cursor.prev(), LMDBAL::NotFound);
|
2023-08-09 17:41:15 +00:00
|
|
|
|
2023-10-25 22:18:23 +00:00
|
|
|
std::pair<uint64_t, std::string> element = cursor.last();
|
2023-08-09 17:41:15 +00:00
|
|
|
reference = data.rbegin();
|
|
|
|
|
|
|
|
EXPECT_EQ(element.first, reference->first);
|
|
|
|
EXPECT_EQ(element.second, reference->second);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(StorageCursorTest, CurrentPrivate) {
|
2023-11-01 22:45:42 +00:00
|
|
|
EXPECT_EQ(getTableCursorsSize(), 1);
|
2023-10-25 22:18:23 +00:00
|
|
|
std::pair<uint64_t, std::string> element = cursor.first();
|
2023-08-09 17:41:15 +00:00
|
|
|
std::map<uint64_t, std::string>::const_iterator reference = data.begin();
|
|
|
|
|
|
|
|
EXPECT_EQ(element.first, reference->first);
|
|
|
|
EXPECT_EQ(element.second, reference->second);
|
|
|
|
|
2023-10-25 22:18:23 +00:00
|
|
|
element = cursor.current();
|
2023-08-09 17:41:15 +00:00
|
|
|
|
|
|
|
EXPECT_EQ(element.first, reference->first);
|
|
|
|
EXPECT_EQ(element.second, reference->second);
|
|
|
|
|
2023-10-25 22:18:23 +00:00
|
|
|
cursor.next();
|
|
|
|
element = cursor.current();
|
2023-08-09 17:41:15 +00:00
|
|
|
++reference;
|
|
|
|
|
|
|
|
EXPECT_EQ(element.first, reference->first);
|
|
|
|
EXPECT_EQ(element.second, reference->second);
|
|
|
|
|
2023-10-25 22:18:23 +00:00
|
|
|
cursor.next();
|
|
|
|
cursor.next();
|
|
|
|
cursor.prev();
|
|
|
|
element = cursor.current();
|
2023-08-09 17:41:15 +00:00
|
|
|
++reference;
|
|
|
|
++reference;
|
|
|
|
--reference;
|
|
|
|
|
|
|
|
EXPECT_EQ(element.first, reference->first);
|
|
|
|
EXPECT_EQ(element.second, reference->second);
|
|
|
|
}
|
2023-08-10 23:07:12 +00:00
|
|
|
|
2023-11-01 22:45:42 +00:00
|
|
|
TEST_F(StorageCursorTest, SettingPrivate) {
|
|
|
|
EXPECT_EQ(getTableCursorsSize(), 1);
|
|
|
|
|
|
|
|
EXPECT_FALSE(cursor.set(6684));
|
|
|
|
EXPECT_EQ(cursor.current().second, "tanned inmate");
|
|
|
|
|
|
|
|
std::map<uint64_t, std::string>::const_iterator reference = data.begin();
|
|
|
|
std::advance(reference, 5);
|
|
|
|
EXPECT_TRUE(cursor.set(reference->first));
|
|
|
|
EXPECT_EQ(cursor.current().second, reference->second);
|
|
|
|
|
|
|
|
++reference;
|
|
|
|
cursor.next();
|
|
|
|
EXPECT_EQ(cursor.current().second, reference->second);
|
|
|
|
|
|
|
|
++reference;
|
|
|
|
cursor.next();
|
|
|
|
EXPECT_EQ(cursor.current().second, reference->second);
|
|
|
|
|
|
|
|
--reference;
|
|
|
|
cursor.prev();
|
|
|
|
EXPECT_EQ(cursor.current().second, reference->second);
|
|
|
|
|
|
|
|
--reference;
|
|
|
|
cursor.prev();
|
|
|
|
EXPECT_EQ(cursor.current().second, reference->second);
|
|
|
|
|
|
|
|
--reference;
|
|
|
|
cursor.prev();
|
|
|
|
EXPECT_EQ(cursor.current().second, reference->second);
|
|
|
|
}
|
|
|
|
|
2023-08-10 23:07:12 +00:00
|
|
|
TEST_F(StorageCursorTest, Destruction) {
|
2023-11-01 22:45:42 +00:00
|
|
|
EXPECT_EQ(getTableCursorsSize(), 1);
|
2023-10-25 22:18:23 +00:00
|
|
|
cursor.close();
|
2023-11-01 22:45:42 +00:00
|
|
|
EXPECT_EQ(getTableCursorsSize(), 1);
|
2023-08-10 23:07:12 +00:00
|
|
|
|
2023-10-25 22:18:23 +00:00
|
|
|
EXPECT_THROW(cursor.first(), LMDBAL::CursorNotReady);
|
|
|
|
EXPECT_THROW(cursor.last(), LMDBAL::CursorNotReady);
|
|
|
|
EXPECT_THROW(cursor.next(), LMDBAL::CursorNotReady);
|
|
|
|
EXPECT_THROW(cursor.prev(), LMDBAL::CursorNotReady);
|
|
|
|
EXPECT_THROW(cursor.current(), LMDBAL::CursorNotReady);
|
2023-08-12 21:28:49 +00:00
|
|
|
|
2023-10-25 22:18:23 +00:00
|
|
|
cursor = LMDBAL::Cursor<uint64_t, std::string>();
|
2023-11-01 22:45:42 +00:00
|
|
|
EXPECT_EQ(getTableCursorsSize(), 0);
|
2023-08-12 21:28:49 +00:00
|
|
|
|
|
|
|
cursor = table->createCursor();
|
2023-11-01 22:45:42 +00:00
|
|
|
EXPECT_EQ(getTableCursorsSize(), 1);
|
2023-08-12 21:28:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(StorageCursorTest, FirstPublic) {
|
2023-11-01 22:45:42 +00:00
|
|
|
EXPECT_EQ(getTableCursorsSize(), 1);
|
2023-08-12 21:28:49 +00:00
|
|
|
transaction = db->beginReadOnlyTransaction();
|
|
|
|
|
2023-10-25 22:18:23 +00:00
|
|
|
cursor.open(transaction);
|
|
|
|
std::pair<uint64_t, std::string> element = cursor.first();
|
2023-08-12 21:28:49 +00:00
|
|
|
std::map<uint64_t, std::string>::const_iterator reference = data.begin();
|
|
|
|
|
|
|
|
EXPECT_EQ(element.first, reference->first);
|
|
|
|
EXPECT_EQ(element.second, reference->second);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(StorageCursorTest, NextPublic) {
|
2023-11-01 22:45:42 +00:00
|
|
|
EXPECT_EQ(getTableCursorsSize(), 1);
|
2023-08-12 21:28:49 +00:00
|
|
|
std::map<uint64_t, std::string>::const_iterator reference = data.begin();
|
|
|
|
|
|
|
|
reference++;
|
|
|
|
for (; reference != data.end(); ++reference) {
|
2023-10-25 22:18:23 +00:00
|
|
|
std::pair<uint64_t, std::string> element = cursor.next();
|
2023-08-12 21:28:49 +00:00
|
|
|
EXPECT_EQ(element.first, reference->first);
|
|
|
|
EXPECT_EQ(element.second, reference->second);
|
|
|
|
}
|
|
|
|
|
2023-10-25 22:18:23 +00:00
|
|
|
EXPECT_THROW(cursor.next(), LMDBAL::NotFound);
|
2023-08-12 21:28:49 +00:00
|
|
|
|
2023-10-25 22:18:23 +00:00
|
|
|
std::pair<uint64_t, std::string> element = cursor.first();
|
2023-08-12 21:28:49 +00:00
|
|
|
reference = data.begin();
|
|
|
|
|
|
|
|
EXPECT_EQ(element.first, reference->first);
|
|
|
|
EXPECT_EQ(element.second, reference->second);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(StorageCursorTest, LastPublic) {
|
2023-11-01 22:45:42 +00:00
|
|
|
EXPECT_EQ(getTableCursorsSize(), 1);
|
2023-10-25 22:18:23 +00:00
|
|
|
std::pair<uint64_t, std::string> element = cursor.last();
|
2023-08-12 21:28:49 +00:00
|
|
|
std::map<uint64_t, std::string>::const_reverse_iterator reference = data.rbegin();
|
|
|
|
|
|
|
|
EXPECT_EQ(element.first, reference->first);
|
|
|
|
EXPECT_EQ(element.second, reference->second);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(StorageCursorTest, PrevPublic) {
|
2023-11-01 22:45:42 +00:00
|
|
|
EXPECT_EQ(getTableCursorsSize(), 1);
|
2023-08-12 21:28:49 +00:00
|
|
|
std::map<uint64_t, std::string>::const_reverse_iterator reference = data.rbegin();
|
|
|
|
|
|
|
|
reference++;
|
|
|
|
for (; reference != data.rend(); ++reference) {
|
2023-10-25 22:18:23 +00:00
|
|
|
std::pair<uint64_t, std::string> element = cursor.prev();
|
2023-08-12 21:28:49 +00:00
|
|
|
EXPECT_EQ(element.first, reference->first);
|
|
|
|
EXPECT_EQ(element.second, reference->second);
|
|
|
|
}
|
|
|
|
|
2023-10-25 22:18:23 +00:00
|
|
|
EXPECT_THROW(cursor.prev(), LMDBAL::NotFound);
|
2023-08-12 21:28:49 +00:00
|
|
|
|
2023-10-25 22:18:23 +00:00
|
|
|
std::pair<uint64_t, std::string> element = cursor.last();
|
2023-08-12 21:28:49 +00:00
|
|
|
reference = data.rbegin();
|
|
|
|
|
|
|
|
EXPECT_EQ(element.first, reference->first);
|
|
|
|
EXPECT_EQ(element.second, reference->second);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(StorageCursorTest, CurrentPublic) {
|
2023-11-01 22:45:42 +00:00
|
|
|
EXPECT_EQ(getTableCursorsSize(), 1);
|
2023-10-25 22:18:23 +00:00
|
|
|
std::pair<uint64_t, std::string> element = cursor.first();
|
2023-08-12 21:28:49 +00:00
|
|
|
std::map<uint64_t, std::string>::const_iterator reference = data.begin();
|
|
|
|
|
|
|
|
EXPECT_EQ(element.first, reference->first);
|
|
|
|
EXPECT_EQ(element.second, reference->second);
|
|
|
|
|
2023-10-25 22:18:23 +00:00
|
|
|
element = cursor.current();
|
2023-08-12 21:28:49 +00:00
|
|
|
|
|
|
|
EXPECT_EQ(element.first, reference->first);
|
|
|
|
EXPECT_EQ(element.second, reference->second);
|
|
|
|
|
2023-10-25 22:18:23 +00:00
|
|
|
cursor.next();
|
|
|
|
element = cursor.current();
|
2023-08-12 21:28:49 +00:00
|
|
|
++reference;
|
|
|
|
|
|
|
|
EXPECT_EQ(element.first, reference->first);
|
|
|
|
EXPECT_EQ(element.second, reference->second);
|
|
|
|
|
2023-10-25 22:18:23 +00:00
|
|
|
cursor.next();
|
|
|
|
cursor.next();
|
|
|
|
cursor.prev();
|
|
|
|
element = cursor.current();
|
2023-08-12 21:28:49 +00:00
|
|
|
++reference;
|
|
|
|
++reference;
|
|
|
|
--reference;
|
|
|
|
|
|
|
|
EXPECT_EQ(element.first, reference->first);
|
|
|
|
EXPECT_EQ(element.second, reference->second);
|
2023-08-10 23:07:12 +00:00
|
|
|
}
|
|
|
|
|
2023-11-01 22:45:42 +00:00
|
|
|
TEST_F(StorageCursorTest, SettingPublic) {
|
|
|
|
EXPECT_EQ(getTableCursorsSize(), 1);
|
|
|
|
|
|
|
|
EXPECT_FALSE(cursor.set(557));
|
|
|
|
EXPECT_EQ(cursor.current().second, "resilent pick forefront");
|
|
|
|
|
|
|
|
std::map<uint64_t, std::string>::const_iterator reference = data.begin();
|
|
|
|
std::advance(reference, 3);
|
|
|
|
EXPECT_TRUE(cursor.set(reference->first));
|
|
|
|
EXPECT_EQ(cursor.current().second, reference->second);
|
|
|
|
|
|
|
|
++reference;
|
|
|
|
cursor.next();
|
|
|
|
EXPECT_EQ(cursor.current().second, reference->second);
|
|
|
|
|
|
|
|
++reference;
|
|
|
|
cursor.next();
|
|
|
|
EXPECT_EQ(cursor.current().second, reference->second);
|
|
|
|
|
|
|
|
--reference;
|
|
|
|
cursor.prev();
|
|
|
|
EXPECT_EQ(cursor.current().second, reference->second);
|
|
|
|
|
|
|
|
--reference;
|
|
|
|
cursor.prev();
|
|
|
|
EXPECT_EQ(cursor.current().second, reference->second);
|
|
|
|
|
|
|
|
--reference;
|
|
|
|
cursor.prev();
|
|
|
|
EXPECT_EQ(cursor.current().second, reference->second);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(StorageCursorTest, CursorRAIIBehaviour) {
|
|
|
|
int initialiCursorsAmount = getTableCursorsSize();
|
|
|
|
{
|
|
|
|
LMDBAL::Cursor<uint64_t, std::string> cur = table->createCursor();
|
|
|
|
EXPECT_EQ(initialiCursorsAmount + 1, getTableCursorsSize());
|
|
|
|
cur.open(transaction);
|
|
|
|
EXPECT_NO_THROW(cur.first());
|
|
|
|
}
|
|
|
|
|
|
|
|
EXPECT_EQ(initialiCursorsAmount, getTableCursorsSize());
|
|
|
|
LMDBAL::Cursor<uint64_t, std::string> cur;
|
|
|
|
EXPECT_EQ(initialiCursorsAmount, getTableCursorsSize());
|
|
|
|
EXPECT_EQ(cur.empty(), true);
|
|
|
|
cur = table->createCursor();
|
|
|
|
EXPECT_EQ(cur.empty(), false);
|
|
|
|
EXPECT_EQ(initialiCursorsAmount + 1, getTableCursorsSize());
|
|
|
|
EXPECT_THROW(emptyTable->destroyCursor(cur), LMDBAL::Unknown);
|
|
|
|
table->destroyCursor(cur);
|
|
|
|
EXPECT_EQ(cur.empty(), true);
|
|
|
|
EXPECT_EQ(initialiCursorsAmount, getTableCursorsSize());
|
|
|
|
|
|
|
|
cur = table->createCursor();
|
|
|
|
EXPECT_EQ(initialiCursorsAmount + 1, getTableCursorsSize());
|
|
|
|
EXPECT_EQ(cur.empty(), false);
|
|
|
|
|
|
|
|
cur.drop();
|
|
|
|
EXPECT_EQ(cur.empty(), true);
|
|
|
|
EXPECT_EQ(initialiCursorsAmount, getTableCursorsSize());
|
|
|
|
|
|
|
|
EXPECT_NO_THROW(cur.drop());
|
|
|
|
EXPECT_THROW(table->destroyCursor(cur), LMDBAL::Unknown);
|
|
|
|
}
|
|
|
|
|
2023-08-10 23:07:12 +00:00
|
|
|
TEST_F(StorageCursorTest, CornerCases) {
|
2023-11-01 22:45:42 +00:00
|
|
|
EXPECT_EQ(getTableCursorsSize(), 1);
|
2023-10-17 21:06:11 +00:00
|
|
|
transaction.terminate();
|
2023-10-25 22:18:23 +00:00
|
|
|
EXPECT_THROW(cursor.current(), LMDBAL::Unknown);
|
|
|
|
cursor.close();
|
2023-08-12 21:28:49 +00:00
|
|
|
|
2023-10-25 22:18:23 +00:00
|
|
|
LMDBAL::Cursor<uint64_t, std::string> emptyCursor = emptyTable->createCursor();
|
|
|
|
emptyCursor.open();
|
|
|
|
EXPECT_THROW(emptyCursor.first(), LMDBAL::NotFound);
|
|
|
|
EXPECT_THROW(emptyCursor.last(), LMDBAL::NotFound);
|
|
|
|
EXPECT_THROW(emptyCursor.next(), LMDBAL::NotFound);
|
|
|
|
EXPECT_THROW(emptyCursor.prev(), LMDBAL::NotFound);
|
|
|
|
EXPECT_THROW(emptyCursor.current(), LMDBAL::Unknown);
|
|
|
|
emptyCursor.close();
|
2023-08-10 23:07:12 +00:00
|
|
|
|
2023-10-25 22:18:23 +00:00
|
|
|
cursor.open();
|
|
|
|
EXPECT_THROW(cursor.current(), LMDBAL::Unknown); //yeah, nice thing to write in the doc
|
2023-08-10 23:07:12 +00:00
|
|
|
|
|
|
|
std::map<uint64_t, std::string>::const_reverse_iterator breference = data.rbegin();
|
2023-10-25 22:18:23 +00:00
|
|
|
std::pair<uint64_t, std::string> element(cursor.prev());
|
2023-08-10 23:07:12 +00:00
|
|
|
EXPECT_EQ(element.first, breference->first); //nice thing to write in the doc, again!
|
|
|
|
EXPECT_EQ(element.second, breference->second);
|
2023-10-25 22:18:23 +00:00
|
|
|
element = cursor.current();
|
2023-08-10 23:07:12 +00:00
|
|
|
EXPECT_EQ(element.first, breference->first);
|
|
|
|
EXPECT_EQ(element.second, breference->second);
|
2023-10-25 22:18:23 +00:00
|
|
|
EXPECT_THROW(cursor.next(), LMDBAL::NotFound);
|
|
|
|
cursor.close();
|
2023-08-10 23:07:12 +00:00
|
|
|
|
2023-10-25 22:18:23 +00:00
|
|
|
cursor.open();
|
|
|
|
element = cursor.next();
|
2023-08-10 23:07:12 +00:00
|
|
|
std::map<uint64_t, std::string>::const_iterator reference = data.begin();
|
|
|
|
EXPECT_EQ(element.first, reference->first);
|
|
|
|
EXPECT_EQ(element.second, reference->second);
|
2023-10-25 22:18:23 +00:00
|
|
|
element = cursor.current();
|
2023-08-10 23:07:12 +00:00
|
|
|
EXPECT_EQ(element.first, reference->first);
|
|
|
|
EXPECT_EQ(element.second, reference->second);
|
2023-10-25 22:18:23 +00:00
|
|
|
EXPECT_THROW(cursor.prev(), LMDBAL::NotFound);
|
2023-08-10 23:07:12 +00:00
|
|
|
}
|