You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
input_producer_spec.json
it is very strange that the fileId in the spec will be changed to Object type. {
"Fuzzable": {
"primitiveType": "Object",
"defaultValue": "{ "fuzz": false }"
}
}
I suppose that it should be
"Fuzzable": {
"primitiveType": "String",
"defaultValue": "fuzzstring"
}
or fileId is regarded as the object of the file.
Description
input_producer_spec.json
it is very strange that the fileId in the spec will be changed to Object type. {
"Fuzzable": {
"primitiveType": "Object",
"defaultValue": "{ "fuzz": false }"
}
}
I suppose that it should be
"Fuzzable": {
"primitiveType": "String",
"defaultValue": "fuzzstring"
}
or fileId is regarded as the object of the file.
Steps to reproduce
use the attatched the spec.
Expected results
"id": {
"endpoint": "/file/{fileId}",
"method": "Post"
},
"method": "Post",
"basePath": "/api",
"path": [
{
"Constant": [
"String",
"file"
]
},
{
"Fuzzable": {
"primitiveType": "String",
"defaultValue": "fuzzstring"
}
}
],
Actual results
{
"id": {
"endpoint": "/file/{fileId}",
"method": "Post"
},
"method": "Post",
"basePath": "/api",
"path": [
{
"Constant": [
"String",
"file"
]
},
{
"Fuzzable": {
"primitiveType": "Object",
"defaultValue": "{ "fuzz": false }"
}
}
],
Environment details
No response
The text was updated successfully, but these errors were encountered: