所以基本上我只是从空手道测试框架开始,并且可能缺少一些非常简单的东西,但我似乎无法正确解决嵌入式表达式。如果我有一个这样的功能文件,那么它可以通过几种方式做同样的事情:
Feature: Test Service
Background:
* url 'http://testurl:8080'
* def localDateTime = Java.type('java.time.LocalDateTime')
Scenario: Successful request
* def createDateTime = LocalDateTime.now()
* def testRequest =
"""
{
createDateTime: "#(createDateTime)",
expiryDateTime:"#(localDateTime.now().plusMinutes(5))"
}
"""
* print testRequest
* set testRequest.createDateTime = createdTime
* print testRequest
然后当它到达打印行时,我得到这样的输出,其中值为空 js 对象 {}
16:43:28.580 [main] INFO com.intuit.karate - [print] {"createDateTime":{},"expiryDateTime":{}}16:43:28.586 [main] 调试 com.jayway.jsonpath.internal。 PathCompiler - 使用缓存路径:$true[]
另外,我可以看到它似乎在为第一个打印语句设置路径,如下所示:
16:32:30.612 [main] DEBUG com.jayway.jsonpath.internal.CompiledPath - 评估路径:$['createDateTime'] 16:32:30.613 [main] DEBUG com.jayway.jsonpath.internal.JsonReader - 设置路径 $ ['createDateTime'] 新值 2017-09-14T16:32:30.566 16:32:30.629 [main] DEBUG com.jayway.jsonpath.internal.CompiledPath - 评估路径:$['expiryDateTime'] 16:32:30.629 [ main] 调试 com.jayway.jsonpath.internal.JsonReader - 设置路径 $['expiryDateTime'] 新值 2017-09-14T16:37:30.621
谁能向我解释为什么我无法将实际日期插入到 testRequest 中?
谢谢你。