Hi,
I have a text document which needs to be indexed and analysed in elasticsearch
The format is as follows
Test case id, Start time, Buld number
Test case id , test flow, test action, step1, step1 status
Test case id , test flow, test action, step2, step2 status
Test case id , test flow, test action, step3, step3 status
Test case id , test flow, test action, step4, step4 status
Test case id , test flow, test action, step5, step5 status
Test case id , test flow, test action, step6, step6 status
Test case id , test flow, test action, step7, step7 status
A test case can have multiple steps and each step has its own status(passed or failed).
A test case is passed if all the steps have passed or failed if one of the steps have failed. As you can see there is no status on the test case line itself(first line) but the status of the test case should be calculated based on the status of the steps
By indexing these logs i want to find out if the test case has passed or failed. I dont want to look at the test step level but at the test case level
Thanks well ahead.
Regards
Kumar