KissPeter / APIFuzzer

Fuzz test your application using your OpenAPI or Swagger API definition without coding
GNU General Public License v3.0
416 stars 65 forks source link

Make errors more visible #65

Closed magmax closed 11 months ago

magmax commented 12 months ago

Makes errors in junit report more visible.

In current code there are some paths going throw exceptions captured but which doesn't report them. So, these paths die silently.

With this patch, it will report everything, providing details on want went wrong. Thanks to this I discovered a problem with urls containing spaces (but that will be another PR). In addition, JUnit report should contain any test, even those passing.

Here you are an example of how it looks like right now: image

There are still things to improve, such as the test name or names containing linefeeds, but it is a first step.