object-introspection/test/integration/folly_f14_vector_map.toml
2023-10-09 10:41:34 -06:00

96 lines
2.9 KiB
TOML

includes = ["folly/container/F14Map.h"]
definitions = '''
struct Bar {
float a, b;
};
struct Foo {
folly::F14VectorMap<int, int> m1;
folly::F14VectorMap<int, Bar> m2;
folly::F14VectorMap<int, int> m3;
folly::F14VectorMap<int, long> m4;
};
'''
[cases]
[cases.a]
param_types = ["const Foo&"]
setup = '''
Foo foo;
foo.m1.reserve(3);
for (int i = 0; i < 3; i++) {
foo.m1.emplace(i, i);
}
foo.m2.reserve(5);
for (int i = 0; i < 5; i++) {
foo.m2.emplace(i, Bar{0.0f, 0.0f});
}
foo.m3.reserve(7);
for (int i = 0; i < 7; i++) {
foo.m3.emplace(i, i);
}
foo.m4.reserve(9);
for (int i = 0; i < 9; i++) {
foo.m4.emplace(i, i);
}
return {foo};
'''
expect_json = '''[{
"staticSize":96,
"dynamicSize":480,
"members":[
{"name":"m1", "staticSize":24, "dynamicSize":64, "length":3, "capacity":3, "elementStaticSize":8},
{
"name":"m2",
"staticSize":24,
"dynamicSize":96,
"length":5,
"capacity":5,
"elementStaticSize":12,
"members":[
{"staticSize": 4},
{"staticSize":8, "members":[{"name":"a"}, {"name": "b"}]},
{"staticSize": 4},
{"staticSize":8, "members":[{"name":"a"}, {"name": "b"}]},
{"staticSize": 4},
{"staticSize":8, "members":[{"name":"a"}, {"name": "b"}]},
{"staticSize": 4},
{"staticSize":8, "members":[{"name":"a"}, {"name": "b"}]},
{"staticSize": 4},
{"staticSize":8, "members":[{"name":"a"}, {"name": "b"}]}
]},
{"name":"m3", "staticSize":24, "dynamicSize":112, "length":7, "capacity":7, "elementStaticSize":8},
{"name":"m4", "staticSize":24, "dynamicSize":208, "length":9, "capacity":9, "elementStaticSize":12}
]}]'''
expect_json_v2 = '''[{
"staticSize":96,
"exclusiveSize": 0,
"members":[
{"name":"m1", "staticSize":24, "exclusiveSize": 64, "length": 3, "capacity": 3},
{"name":"m2", "staticSize":24, "exclusiveSize": 60, "length": 5, "capacity": 5},
{"name":"m3", "staticSize":24, "exclusiveSize": 80, "length": 7, "capacity": 7},
{
"name":"m4",
"staticSize":24,
"exclusiveSize": 88,
"length": 9,
"capacity": 9,
"members":[
{"staticSize":16, "exclusiveSize": 4},
{"staticSize":16, "exclusiveSize": 4},
{"staticSize":16, "exclusiveSize": 4},
{"staticSize":16, "exclusiveSize": 4},
{"staticSize":16, "exclusiveSize": 4},
{"staticSize":16, "exclusiveSize": 4},
{"staticSize":16, "exclusiveSize": 4},
{"staticSize":16, "exclusiveSize": 4},
{"staticSize":16, "exclusiveSize": 4}
]
}]
}]'''