This is an old revision of the document!
This is a purpose for the MongoDB structure for collecting test results. The goal is to have three main collections : tests projects, test cases and test results related to each other by a numbering system. The test result would be stored either as plain text or json structure in the test results collection on details field
Overview
Test projects
[
{
"id": 1,
"name": "functest",
"description":""
},
{...}
]
Test cases
[
{
"id":1.1,
"name":"",
"testproject": "1",
"test": "",
"description": ""
},
{...}
]
Test results
[
{
"id": "1.1.1",
"testcase": "1.1",
"date": "",
"platform":"",
"global_status":"",
"hardware_details":"",
"installer_type":"",
"details":{}
},
{...}
]