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

106 lines
2.6 KiB
TOML

includes = ["folly/FBString.h"]
[cases]
[cases.empty]
oil_skip = 'not implemented for treebuilder v2' # https://github.com/facebookexperimental/object-introspection/issues/322
param_types = ["folly::fbstring&"]
setup = "return {};"
expect_json = '''
[
{
"typeName": "fbstring",
"isTypedef": true,
"staticSize": 24,
"dynamicSize": 0,
"exclusiveSize": 0,
"members": [
{
"staticSize": 24,
"dynamicSize": 0,
"exclusiveSize": 24,
"length": 0,
"capacity": 23,
"elementStaticSize": 1
}
]
}
]
'''
[cases.inline]
oil_skip = 'not implemented for treebuilder v2' # https://github.com/facebookexperimental/object-introspection/issues/322
param_types = ["folly::fbstring&"]
setup = 'return {"012345"};'
expect_json = '''
[
{
"typeName": "fbstring",
"isTypedef": true,
"staticSize": 24,
"dynamicSize": 0,
"exclusiveSize": 0,
"members": [
{
"staticSize": 24,
"dynamicSize": 0,
"exclusiveSize": 24,
"length": 6,
"capacity": 23,
"elementStaticSize": 1
}
]
}
]
'''
[cases.heap_allocated]
oil_skip = 'not implemented for treebuilder v2' # https://github.com/facebookexperimental/object-introspection/issues/322
param_types = ["folly::fbstring&"]
setup = 'return {"abcdefghijklmnopqrstuvwxzy"};'
expect_json = '''
[
{
"typeName": "fbstring",
"isTypedef": true,
"staticSize": 24,
"dynamicSize": 26,
"exclusiveSize": 0,
"members": [
{
"staticSize": 24,
"dynamicSize": 26,
"exclusiveSize": 50,
"length": 26,
"capacity": 26,
"elementStaticSize": 1
}
]
}
]
'''
[cases.string_pooled]
oil_skip = 'not implemented for treebuilder v2' # https://github.com/facebookexperimental/object-introspection/issues/322
param_types = ["folly::fbstring&"]
setup = "return folly::fbstring(1024, 'c');"
expect_json = '''
[
{
"typeName": "fbstring",
"isTypedef": true,
"staticSize": 24,
"dynamicSize": 1024,
"exclusiveSize": 0,
"members": [
{
"staticSize": 24,
"dynamicSize": 1024,
"exclusiveSize": 1048,
"length": 1024,
"capacity": 1024,
"elementStaticSize": 1
}
]
}
]
'''