为什么我们在空手道报告中用karate.abort()将“跳过步骤”视为“失败的步骤”?

问题描述 投票:1回答:1

对于我的测试场景,我正在使用“karate.abort()”函数,如果满足条件,则会跳过它下面的步骤。但由于跳过步骤,这标志着我的完整测试失败了。

如果调用karate.abort()并跳过后续步骤,有没有办法将测试用例标记为PASSED?

例:

场景大纲:ARN无效时的Lambda API注册

Given url ApiAdminURL

And path AdminPath

And header apigateway-apikey = apiGatewayKey

And header apigateway-basepath = 'lambda-migration'

* json myReq = read('swagger-lambda.json')

* set myReq.apiConf.subscriptionTiers = <subscriptionTiers>

* set myReq.swagger.info.title = 'REGTEST_AUTO_Regression_Lambda_Quote_Function'

* set myReq.swagger.basePath = 'lambda-migration'

* set myReq.swagger.info.version = 'v1'

* set myReq.swagger.x-lambda-arn = '<arn>'

And request myReq

When method post

Then status <responseCode>

* eval if (responseStatus == 400) karate.abort()

* call read('Lambda-Sleep.feature')

* call read('Lambda-APIDefinition.feature')

* def responsefromsubscriber = call read('Lambda-Subscriber.feature')

 {accessTokenforInvokation: '#(accessTokenforInvokation)', applicationId: '#

 (applicationId)', subscribeToken: '#(subscribeToken)'}

* def AccessTokenforInvokation =

  responsefromsubscriber.accessTokenforInvokation

* def ApplicationId = responsefromsubscriber.applicationId

* def SubscribeToken = responsefromsubscriber.subscribeToken
dsl karate
1个回答
0
投票

这是修补程序版本中修复的错误:https://github.com/intuit/karate/issues/464

你能将你的空手道版本升级到0.8.0.1然后重试。

© www.soinside.com 2019 - 2024. All rights reserved.