10ea9c773e
* Making mgp_error enum class when compiling c++. Remains enum when compiling c.
36 lines
1.7 KiB
C++
36 lines
1.7 KiB
C++
// Copyright 2022 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 "gtest/gtest.h"
|
|
|
|
#include "query/procedure/mg_procedure_impl.hpp"
|
|
#include "query/procedure/module.hpp"
|
|
#include "test_utils.hpp"
|
|
|
|
TEST(MgpTransTest, TestMgpTransApi) {
|
|
static constexpr auto no_op_cb = [](mgp_messages *msg, mgp_graph *graph, mgp_result *result, mgp_memory *memory) {};
|
|
mgp_module module(memgraph::utils::NewDeleteResource());
|
|
// If this is false, then mgp_module_add_transformation()
|
|
// correctly calls IsValidIdentifier(). We don't need to test
|
|
// for different string cases as these are all handled by
|
|
// IsValidIdentifier().
|
|
// Maybe add a mock instead and expect IsValidIdentifier() to be called once?
|
|
EXPECT_EQ(mgp_module_add_transformation(&module, "dash-dash", no_op_cb), mgp_error::MGP_ERROR_INVALID_ARGUMENT);
|
|
EXPECT_TRUE(module.transformations.empty());
|
|
|
|
EXPECT_EQ(mgp_module_add_transformation(&module, "transform", no_op_cb), mgp_error::MGP_ERROR_NO_ERROR);
|
|
EXPECT_NE(module.transformations.find("transform"), module.transformations.end());
|
|
|
|
// Try to register a transformation twice
|
|
EXPECT_EQ(mgp_module_add_transformation(&module, "transform", no_op_cb), mgp_error::MGP_ERROR_LOGIC_ERROR);
|
|
EXPECT_TRUE(module.transformations.size() == 1);
|
|
}
|