Forum Discussion
Hello,
You're right, there is no support in REST API to update individual test step results.
There are two ways to update them currently:
- manually through the interface
- automatically by sending a cucumber json result file. This is the only format we support that can update individual test step results.
You can push such results to an external test run.
Create an external test run from the test run creation page, then open it
In the three dots menu, there is a "Push results" entry. Select it
An information box will be displayed with information about how to push results in Cucumber JSON format (you have to select this format in the dropdown, as Junit XML is selected by default)
You'll have to configure your test suite to generate this Cucumber Json file, and then try pushing it with curl as instructed. Once done, you should see the execution results with each step result correctly set.
Let us know if that worked.
- remixtedi4 years agoOccasional Contributor
Hi Thanks for your reply,
Is there some instructions to configure my c# and mstest solution to generate results in cucumber messages format? but as i know external test results are not linked with scenarios in cucumber studio and this is not a solution for me... 😕
- cbliard4 years agoSmartBear Alumni (Retired)
Yeah you're right. When using external test runs, results are not tied to the scenarios you wrote. Sorry, I missed that it was important in your initial request.
To get the link between both, you need to create a test run from your scenarios, and then export those tests to code skeleton using hiptest-publisher. Upon doing that, you'll see that it generates tests in your language. Each test contains a uid that identify them on the CucumberStudio side.
After executing your tests, you'll have a result file that contains the test results and the uid. Pushing it back to CucumberStudio will update the results in the test run.
To be able to generate a cucumber json result file, you should use a gherkin based framework like SpecFlow. Is it an option in your case?
If exporting to C# directly, when a test fails, it's hard to know at which step it was failing because this information is not present most of the time: we only have the test name, and the steps are test implementation details. It looks like you are able to get this information though as you wanted to use the API to update tests at the step level. Can you describe how you have this information?
- remixtedi4 years agoOccasional Contributor
hiptest-publisher is not an option for us because we have many test scenarios and complex solution, so generated files from cucumber studio (like specflow files) are not acceptable. we are using Specflow and we can detect every step and its status on the way or in the end of execution, so it there are some tools to generate automatically some result file in cucumber json format it would be great.
Related Content
- 2 years ago
- 5 months ago
- 9 years ago
Recent Discussions
- 2 days ago
- 4 months ago
- 5 months ago
- 5 months ago