-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Custom error message on Match #339
Comments
this is not directly supported. the cucumber-html report suffices for most purposes and you can use cucumber comments / this should also give you some ideas: * def a = 2
* eval if (a != 1) throw 'a is not equal to one' |
Hi @ptrthomas I personally think this is quite an important feature to have on karate. I had graphql tests which validate response using match operators. The actual failure may look like this:
I am doing assertion on karate like:
The error thrown in karate will be this instead:
Since we utilize email report to send the test execution result, we need to expand the response string first before knowing the root cause of the error on the assertion. |
@sumargoraymond do this in an sorry, I'm not convinced. and if you really feel so strongly about this, kindly implement it yourself |
I agree with sumargoraymond. Here is an example, where i have a fast-fail step before my other test steps. Unfortunately, I cannot give it a human readable message that says "Test requires an initial doc status of Finalized". I have had other people ask me "why does it fail" but because i cannot tag it with a human message, i always have to explain
|
@austenjt agreed. am re-opening this - also there is a thought of implementing "soft assertions" for JSON since many teams have asked for this, so hopefully can do this in the same re-factor. my proposal so as to not break the simplicity of the # the initial doc status should be 'Finalized'
* match response[0].status == 'Finalized' so the rule is that the line before should be a comment. |
Would putting the assertions/match in a conditional provide the desired effect as this is how we accomplish it today
or with a simple conditional
|
@Mike-c-Jackson I think the new proposal is far simpler and readable than the conditional. as part of this issue, we can have |
Q1: Why put alt message on karate.abort but not on karate.fail? Q2: Which would you use in a test setup/background situation vs. on a test failure that you want to be "soft"? |
@austenjt karate.fail() already takes a message. in this ticket we are not considering soft assertions. |
I am looking for a custom error message if a match fails, but I don't see docs on how to do this.
Trivial Example:
Given path '/channel/' + channelID
And request {: }
When method patch
Then status 200
And match response.data.channel contains
"""
{
:
}
""", "An error message that is detailed....."
The text was updated successfully, but these errors were encountered: