189 lines
7.3 KiB
C++
189 lines
7.3 KiB
C++
// Copyright 2023 Memgraph Ltd.
|
|
//
|
|
// Use of this software is governed by the Business Source License
|
|
// included in the file licenses/BSL.txt; by using this file, you agree to be bound by the terms of the Business Source
|
|
// License, and you may not use this file except in compliance with the Business Source License.
|
|
//
|
|
// As of the Change Date specified in that file, in accordance with
|
|
// the Business Source License, use of this software will be governed
|
|
// by the Apache License, Version 2.0, included in the file
|
|
// licenses/APL.txt.
|
|
|
|
#include <gmock/gmock.h>
|
|
#include <gtest/gtest.h>
|
|
#include <filesystem>
|
|
#include <optional>
|
|
|
|
#include "dbms/database.hpp"
|
|
#include "disk_test_utils.hpp"
|
|
#include "query/interpret/awesome_memgraph_functions.hpp"
|
|
#include "query/interpreter_context.hpp"
|
|
#include "replication/state.hpp"
|
|
#include "storage/v2/config.hpp"
|
|
#include "storage/v2/disk/storage.hpp"
|
|
#include "storage/v2/inmemory/storage.hpp"
|
|
#include "storage/v2/replication/enums.hpp"
|
|
|
|
// NOLINTNEXTLINE(google-build-using-namespace)
|
|
using namespace memgraph::storage;
|
|
|
|
constexpr auto testSuite = "database_v2_get_info";
|
|
const std::filesystem::path storage_directory{std::filesystem::temp_directory_path() / testSuite};
|
|
|
|
template <typename StorageType>
|
|
class InfoTest : public testing::Test {
|
|
protected:
|
|
void SetUp() {
|
|
repl_state.emplace(memgraph::storage::ReplicationStateRootPath(config));
|
|
db_gk.emplace(config, *repl_state);
|
|
auto db_acc_opt = db_gk->access();
|
|
MG_ASSERT(db_acc_opt, "Failed to access db");
|
|
auto &db_acc = *db_acc_opt;
|
|
MG_ASSERT(db_acc->GetStorageMode() == (std::is_same_v<StorageType, memgraph::storage::DiskStorage>
|
|
? memgraph::storage::StorageMode::ON_DISK_TRANSACTIONAL
|
|
: memgraph::storage::StorageMode::IN_MEMORY_TRANSACTIONAL),
|
|
"Wrong storage mode!");
|
|
db_acc_ = std::move(db_acc);
|
|
}
|
|
|
|
void TearDown() {
|
|
db_acc_.reset();
|
|
db_gk.reset();
|
|
repl_state.reset();
|
|
if (std::is_same<StorageType, memgraph::storage::DiskStorage>::value) {
|
|
disk_test_utils::RemoveRocksDbDirs(testSuite);
|
|
}
|
|
std::filesystem::remove_all(storage_directory);
|
|
}
|
|
|
|
StorageMode mode{std::is_same_v<StorageType, DiskStorage> ? StorageMode::ON_DISK_TRANSACTIONAL
|
|
: StorageMode::IN_MEMORY_TRANSACTIONAL};
|
|
|
|
std::optional<memgraph::replication::ReplicationState> repl_state;
|
|
std::optional<memgraph::dbms::DatabaseAccess> db_acc_;
|
|
std::optional<memgraph::utils::Gatekeeper<memgraph::dbms::Database>> db_gk;
|
|
memgraph::storage::Config config{
|
|
[&]() {
|
|
memgraph::storage::Config config{};
|
|
memgraph::storage::UpdatePaths(config, storage_directory);
|
|
config.durability.snapshot_wal_mode =
|
|
memgraph::storage::Config::Durability::SnapshotWalMode::PERIODIC_SNAPSHOT_WITH_WAL;
|
|
if constexpr (std::is_same_v<StorageType, memgraph::storage::DiskStorage>) {
|
|
config.disk = disk_test_utils::GenerateOnDiskConfig(testSuite).disk;
|
|
config.force_on_disk = true;
|
|
}
|
|
return config;
|
|
}() // iile
|
|
};
|
|
};
|
|
|
|
using StorageTypes = ::testing::Types<memgraph::storage::InMemoryStorage, memgraph::storage::DiskStorage>;
|
|
|
|
TYPED_TEST_CASE(InfoTest, StorageTypes);
|
|
// TYPED_TEST_CASE(IndexTest, InMemoryStorageType);
|
|
|
|
// NOLINTNEXTLINE(hicpp-special-member-functions)
|
|
TYPED_TEST(InfoTest, InfoCheck) {
|
|
auto &db_acc = *this->db_acc_;
|
|
auto lbl = db_acc->storage()->NameToLabel("label");
|
|
auto lbl2 = db_acc->storage()->NameToLabel("abc");
|
|
auto lbl3 = db_acc->storage()->NameToLabel("3");
|
|
auto prop = db_acc->storage()->NameToProperty("prop");
|
|
auto prop2 = db_acc->storage()->NameToProperty("another prop");
|
|
|
|
{
|
|
{
|
|
auto unique_acc = db_acc->storage()->UniqueAccess();
|
|
ASSERT_FALSE(unique_acc->CreateExistenceConstraint(lbl, prop).HasError());
|
|
ASSERT_FALSE(unique_acc->Commit().HasError());
|
|
}
|
|
{
|
|
auto unique_acc = db_acc->storage()->UniqueAccess();
|
|
ASSERT_FALSE(unique_acc->DropExistenceConstraint(lbl, prop).HasError());
|
|
ASSERT_FALSE(unique_acc->Commit().HasError());
|
|
}
|
|
|
|
auto acc = db_acc->Access();
|
|
auto v1 = acc->CreateVertex();
|
|
auto v2 = acc->CreateVertex();
|
|
auto v3 = acc->CreateVertex();
|
|
auto v4 = acc->CreateVertex();
|
|
auto v5 = acc->CreateVertex();
|
|
|
|
ASSERT_FALSE(v2.AddLabel(lbl).HasError());
|
|
ASSERT_FALSE(v3.AddLabel(lbl).HasError());
|
|
ASSERT_FALSE(v3.SetProperty(prop, PropertyValue(42)).HasError());
|
|
ASSERT_FALSE(v4.AddLabel(lbl).HasError());
|
|
|
|
auto et = acc->NameToEdgeType("et5");
|
|
ASSERT_FALSE(acc->CreateEdge(&v1, &v2, et).HasError());
|
|
ASSERT_FALSE(acc->CreateEdge(&v4, &v3, et).HasError());
|
|
|
|
ASSERT_FALSE(acc->Commit().HasError());
|
|
}
|
|
|
|
{
|
|
auto unique_acc = db_acc->storage()->UniqueAccess();
|
|
ASSERT_FALSE(unique_acc->CreateIndex(lbl).HasError());
|
|
ASSERT_FALSE(unique_acc->Commit().HasError());
|
|
}
|
|
{
|
|
auto unique_acc = db_acc->storage()->UniqueAccess();
|
|
ASSERT_FALSE(unique_acc->CreateIndex(lbl, prop).HasError());
|
|
ASSERT_FALSE(unique_acc->Commit().HasError());
|
|
}
|
|
{
|
|
auto unique_acc = db_acc->storage()->UniqueAccess();
|
|
ASSERT_FALSE(unique_acc->CreateIndex(lbl, prop2).HasError());
|
|
ASSERT_FALSE(unique_acc->Commit().HasError());
|
|
}
|
|
{
|
|
auto unique_acc = db_acc->storage()->UniqueAccess();
|
|
ASSERT_FALSE(unique_acc->DropIndex(lbl, prop).HasError());
|
|
ASSERT_FALSE(unique_acc->Commit().HasError());
|
|
}
|
|
|
|
{
|
|
auto unique_acc = db_acc->storage()->UniqueAccess();
|
|
ASSERT_FALSE(unique_acc->CreateUniqueConstraint(lbl, {prop2}).HasError());
|
|
ASSERT_FALSE(unique_acc->Commit().HasError());
|
|
}
|
|
{
|
|
auto unique_acc = db_acc->storage()->UniqueAccess();
|
|
ASSERT_FALSE(unique_acc->CreateUniqueConstraint(lbl2, {prop}).HasError());
|
|
ASSERT_FALSE(unique_acc->Commit().HasError());
|
|
}
|
|
{
|
|
auto unique_acc = db_acc->storage()->UniqueAccess();
|
|
ASSERT_FALSE(unique_acc->CreateUniqueConstraint(lbl3, {prop}).HasError());
|
|
ASSERT_FALSE(unique_acc->Commit().HasError());
|
|
}
|
|
{
|
|
auto unique_acc = db_acc->storage()->UniqueAccess();
|
|
ASSERT_EQ(unique_acc->DropUniqueConstraint(lbl, {prop2}),
|
|
memgraph::storage::UniqueConstraints::DeletionStatus::SUCCESS);
|
|
ASSERT_FALSE(unique_acc->Commit().HasError());
|
|
}
|
|
|
|
const auto &info = db_acc->GetInfo(true); // force to use configured directory
|
|
|
|
ASSERT_EQ(info.storage_info.vertex_count, 5);
|
|
ASSERT_EQ(info.storage_info.edge_count, 2);
|
|
ASSERT_EQ(info.storage_info.average_degree, 0.8);
|
|
ASSERT_GT(info.storage_info.memory_res, 10'000'000); // 200MB < > 10MB
|
|
ASSERT_LT(info.storage_info.memory_res, 200'000'000);
|
|
ASSERT_GT(info.storage_info.disk_usage, 100); // 1MB < > 100B
|
|
ASSERT_LT(info.storage_info.disk_usage, 1000'000);
|
|
ASSERT_EQ(info.storage_info.label_indices, 1);
|
|
ASSERT_EQ(info.storage_info.label_property_indices, 1);
|
|
ASSERT_EQ(info.storage_info.existence_constraints, 0);
|
|
ASSERT_EQ(info.storage_info.unique_constraints, 2);
|
|
ASSERT_EQ(info.storage_info.storage_mode, this->mode);
|
|
ASSERT_EQ(info.storage_info.isolation_level, IsolationLevel::SNAPSHOT_ISOLATION);
|
|
ASSERT_EQ(info.storage_info.durability_snapshot_enabled, true);
|
|
ASSERT_EQ(info.storage_info.durability_wal_enabled, true);
|
|
|
|
ASSERT_EQ(info.triggers, 0);
|
|
ASSERT_EQ(info.streams, 0);
|
|
}
|