object-introspection/test/integration/std_stack.toml
Jake Hillion 5071519e45 oil v2
2023-08-23 15:59:53 +01:00

115 lines
5.1 KiB
TOML

includes = ["stack", "vector"]
[cases]
[cases.int_empty]
oil_skip = 'not implemented for treebuilder v2' # https://github.com/facebookexperimental/object-introspection/issues/305
param_types = ["const std::stack<int>&"]
setup = "return {};"
expect_json = '''[{
"typeName": "stack<int, std::deque<int, std::allocator<int> > >",
"staticSize": 80, "dynamicSize": 0, "length": 0, "capacity": 0, "elementStaticSize": 4,
"members": [
{
"typeName": "deque<int, std::allocator<int> >",
"staticSize": 80, "dynamicSize": 0, "length": 0, "capacity": 0, "elementStaticSize": 4
}
]}]'''
[cases.int_some]
oil_skip = 'not implemented for treebuilder v2' # https://github.com/facebookexperimental/object-introspection/issues/305
param_types = ["const std::stack<int>&"]
setup = "return std::stack<int>({1,2,3});"
expect_json = '''[{
"typeName": "stack<int, std::deque<int, std::allocator<int> > >",
"staticSize": 80, "dynamicSize": 12, "length": 3, "capacity": 3, "elementStaticSize": 4,
"members": [
{
"typeName": "deque<int, std::allocator<int> >",
"staticSize": 80, "dynamicSize": 12, "length": 3, "capacity": 3, "elementStaticSize": 4
}
]}]'''
[cases.stack_int_empty]
oil_skip = 'not implemented for treebuilder v2' # https://github.com/facebookexperimental/object-introspection/issues/305
param_types = ["const std::stack<std::stack<int>>&"]
setup = "return {};"
expect_json = '''[{
"staticSize": 80, "dynamicSize": 0, "length": 0, "capacity": 0, "elementStaticSize": 80,
"members": [
{
"staticSize": 80, "dynamicSize": 0, "length": 0, "capacity": 0, "elementStaticSize": 80
}
]}]'''
[cases.stack_int_some]
oil_skip = 'not implemented for treebuilder v2' # https://github.com/facebookexperimental/object-introspection/issues/305
param_types = ["const std::stack<std::stack<int>>&"]
setup = '''
return std::stack<std::stack<int>>({
std::stack<int>({1,2,3}),
std::stack<int>(),
std::stack<int>({4,5})
});
'''
expect_json = '''[{
"staticSize": 80, "dynamicSize": 260, "length": 3, "capacity": 3, "elementStaticSize": 80,
"members": [
{
"staticSize": 80, "dynamicSize": 260, "length": 3, "capacity": 3, "elementStaticSize": 80,
"members": [
{
"typeName": "stack<int, std::deque<int, std::allocator<int> > >",
"staticSize": 80, "dynamicSize": 12, "length": 3, "capacity": 3, "elementStaticSize": 4,
"members": [
{
"typeName": "deque<int, std::allocator<int> >",
"staticSize": 80, "dynamicSize": 12, "length": 3, "capacity": 3, "elementStaticSize": 4
}
]
},
{
"typeName": "stack<int, std::deque<int, std::allocator<int> > >",
"staticSize": 80, "dynamicSize": 0, "length": 0, "capacity": 0, "elementStaticSize": 4,
"members": [
{
"typeName": "deque<int, std::allocator<int> >",
"staticSize": 80, "dynamicSize": 0, "length": 0, "capacity": 0, "elementStaticSize": 4
}
]
},
{
"typeName": "stack<int, std::deque<int, std::allocator<int> > >",
"staticSize": 80, "dynamicSize": 8, "length": 2, "capacity": 2, "elementStaticSize": 4,
"members": [
{
"typeName": "deque<int, std::allocator<int> >",
"staticSize": 80, "dynamicSize": 8, "length": 2, "capacity": 2, "elementStaticSize": 4
}
]
}
]
}
]}]'''
[cases.adapter_vector_empty]
oil_skip = 'not implemented for treebuilder v2' # https://github.com/facebookexperimental/object-introspection/issues/305
param_types = ["const std::stack<int, std::vector<int>>&"]
setup = "return {};"
expect_json = '''[{
"typeName": "stack<int, std::vector<int, std::allocator<int> > >",
"staticSize": 24, "dynamicSize": 0, "length": 0, "capacity": 0, "elementStaticSize": 4,
"members": [
{
"typeName": "vector<int, std::allocator<int> >",
"staticSize": 24, "dynamicSize": 0, "length": 0, "capacity": 0, "elementStaticSize": 4
}
]}]'''
[cases.adapter_vector_some]
oil_skip = 'not implemented for treebuilder v2' # https://github.com/facebookexperimental/object-introspection/issues/305
param_types = ["const std::stack<int, std::vector<int>>&"]
setup = "return std::stack<int, std::vector<int>>({1,2,3});"
expect_json = '''[{
"typeName": "stack<int, std::vector<int, std::allocator<int> > >",
"staticSize": 24, "dynamicSize": 12, "length": 3, "capacity": 3, "elementStaticSize": 4,
"members": [
{
"typeName": "vector<int, std::allocator<int> >",
"staticSize": 24, "dynamicSize": 12, "length": 3, "capacity": 3, "elementStaticSize": 4
}
]}]'''