object-introspection/test/integration/std_string.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

69 lines
1.4 KiB
TOML
Raw Normal View History

2022-12-19 14:37:51 +00:00
includes = ["string"]
[cases]
[cases.empty]
param_types = ["std::string&"]
setup = "return {};"
expect_json = '''
[
{
"typeName": "string",
"isTypedef": true,
"staticSize": 32,
"dynamicSize": 0,
"members": [
{
"staticSize": 32,
"dynamicSize": 0,
"length": 0,
"capacity": 15,
"elementStaticSize": 1
}
]
}
]
'''
[cases.sso]
param_types = ["std::string&"]
setup = 'return {"012345"};'
expect_json = '''
[
{
"typeName": "string",
"isTypedef": true,
"staticSize": 32,
"dynamicSize": 0,
"members": [
{
"staticSize": 32,
"dynamicSize": 0,
"length": 6,
"capacity": 15,
"elementStaticSize": 1
}
]
}
]
'''
[cases.heap_allocated]
param_types = ["std::string&"]
setup = 'return {"abcdefghijklmnopqrstuvwxzy"};'
expect_json = '''
[
{
"typeName": "string",
"isTypedef": true,
"staticSize": 32,
"dynamicSize": 26,
"members": [
{
"staticSize": 32,
"dynamicSize": 26,
"length": 26,
"capacity": 26,
"elementStaticSize": 1
}
]
}
]
'''