mirror of
https://github.com/JakeHillion/object-introspection.git
synced 2024-11-10 05:26:56 +00:00
109 lines
4.3 KiB
TOML
109 lines
4.3 KiB
TOML
|
includes = ["stack", "vector"]
|
||
|
[cases]
|
||
|
[cases.int_empty]
|
||
|
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]
|
||
|
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]
|
||
|
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]
|
||
|
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]
|
||
|
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]
|
||
|
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
|
||
|
}
|
||
|
]}]'''
|