mirror of
https://github.com/JakeHillion/object-introspection.git
synced 2024-11-09 21:24:14 +00:00
c62fbe371d
Type Graph deduplicates and modifies names to better fit the generated code, for example `int32_t[4]` becomes `OIArray<int32_t, 4>` and `struct MyStruct` might become `struct MyStruct_0`. Add an `inputName` which better represents the original input code which can be used when building the tree.
153 lines
4.0 KiB
C++
153 lines
4.0 KiB
C++
#include <gtest/gtest.h>
|
|
|
|
#include <functional>
|
|
#include <sstream>
|
|
#include <string_view>
|
|
#include <vector>
|
|
|
|
#include "TypeGraphParser.h"
|
|
#include "mocks.h"
|
|
#include "oi/CodeGen.h"
|
|
#include "oi/type_graph/TypeGraph.h"
|
|
#include "oi/type_graph/Types.h"
|
|
#include "type_graph_utils.h"
|
|
|
|
using namespace type_graph;
|
|
|
|
template <typename T>
|
|
using ref = std::reference_wrapper<T>;
|
|
|
|
namespace {
|
|
void testTransform(OICodeGen::Config& config,
|
|
std::string_view input,
|
|
std::string_view expectedAfter) {
|
|
input.remove_prefix(1); // Remove initial '\n'
|
|
TypeGraph typeGraph;
|
|
TypeGraphParser parser{typeGraph};
|
|
try {
|
|
parser.parse(input);
|
|
} catch (const TypeGraphParserError& err) {
|
|
FAIL() << "Error parsing input graph: " << err.what();
|
|
}
|
|
|
|
// Validate input formatting
|
|
check(typeGraph, input, "parsing input graph");
|
|
|
|
MockSymbolService symbols;
|
|
CodeGen codegen{config, symbols};
|
|
codegen.transform(typeGraph);
|
|
|
|
check(typeGraph, expectedAfter, "after transform");
|
|
}
|
|
|
|
void testTransform(std::string_view input, std::string_view expectedAfter) {
|
|
OICodeGen::Config config;
|
|
testTransform(config, input, expectedAfter);
|
|
}
|
|
} // namespace
|
|
|
|
TEST(CodeGenTest, TransformContainerAllocator) {
|
|
testTransform(R"(
|
|
[0] Container: std::vector (size: 24)
|
|
Param
|
|
Primitive: int32_t
|
|
Param
|
|
[1] Struct: MyAlloc (size: 8)
|
|
Param
|
|
Primitive: int32_t
|
|
Function: allocate
|
|
Function: deallocate
|
|
)",
|
|
R"(
|
|
[0] Container: std::vector<int32_t, DummyAllocator<int32_t, 8, 0>> (size: 24)
|
|
Param
|
|
Primitive: int32_t
|
|
Param
|
|
DummyAllocator [MyAlloc] (size: 8)
|
|
Primitive: int32_t
|
|
)");
|
|
}
|
|
|
|
TEST(CodeGenTest, TransformContainerAllocatorParamInParent) {
|
|
testTransform(R"(
|
|
[0] Container: std::map (size: 24)
|
|
Param
|
|
Primitive: int32_t
|
|
Param
|
|
Primitive: int32_t
|
|
Param
|
|
[1] Struct: MyAlloc<std::pair<const int, int>> (size: 1)
|
|
Parent (offset: 0)
|
|
[2] Struct: MyAllocBase<std::pair<const int, int>> (size: 1)
|
|
Param
|
|
[3] Container: std::pair (size: 8)
|
|
Param
|
|
Primitive: int32_t
|
|
Qualifiers: const
|
|
Param
|
|
Primitive: int32_t
|
|
Function: allocate
|
|
Function: deallocate
|
|
Function: allocate
|
|
Function: deallocate
|
|
)",
|
|
R"(
|
|
[0] Container: std::map<int32_t, int32_t, DummyAllocator<std::pair<int32_t const, int32_t>, 0, 0>> (size: 24)
|
|
Param
|
|
Primitive: int32_t
|
|
Param
|
|
Primitive: int32_t
|
|
Param
|
|
DummyAllocator [MyAlloc<std::pair<const int, int>>] (size: 0)
|
|
[3] Container: std::pair<int32_t const, int32_t> (size: 8)
|
|
Param
|
|
Primitive: int32_t
|
|
Qualifiers: const
|
|
Param
|
|
Primitive: int32_t
|
|
)");
|
|
}
|
|
|
|
TEST(CodeGenTest, RemovedMemberAlignment) {
|
|
OICodeGen::Config config;
|
|
config.membersToStub = {{"MyClass", "b"}};
|
|
testTransform(config, R"(
|
|
[0] Class: MyClass (size: 24)
|
|
Member: a (offset: 0)
|
|
Primitive: int8_t
|
|
Member: b (offset: 8)
|
|
Primitive: int64_t
|
|
Member: c (offset: 16)
|
|
Primitive: int8_t
|
|
)",
|
|
R"(
|
|
[0] Class: MyClass_0 [MyClass] (size: 24, align: 8)
|
|
Member: a_0 [a] (offset: 0, align: 1)
|
|
Primitive: int8_t
|
|
Member: __oi_padding_1 (offset: 1)
|
|
[1] Array: [int8_t[15]] (length: 15)
|
|
Primitive: int8_t
|
|
Member: c_2 [c] (offset: 16, align: 1)
|
|
Primitive: int8_t
|
|
Member: __oi_padding_3 (offset: 17)
|
|
[2] Array: [int8_t[7]] (length: 7)
|
|
Primitive: int8_t
|
|
)");
|
|
}
|
|
|
|
TEST(CodeGenTest, UnionMembersAlignment) {
|
|
testTransform(R"(
|
|
[0] Union: MyUnion (size: 8)
|
|
Member: a (offset: 0)
|
|
Primitive: int8_t
|
|
Member: b (offset: 8)
|
|
Primitive: int64_t
|
|
)",
|
|
R"(
|
|
[0] Union: MyUnion_0 [MyUnion] (size: 8, align: 8)
|
|
Member: __oi_padding_0 (offset: 0)
|
|
[1] Array: [int8_t[8]] (length: 8)
|
|
Primitive: int8_t
|
|
)");
|
|
}
|