我正在尝试使用Karate和Spring JDBC运行一些基本的数据库测试(如Demo Project中的DBUtils类所述)。
这是我正在做的事情:
Background:
# Read url/username/pwd and provide it to the class
* def config = read('env_file.json')
* def DbUtils = Java.type('DbConnection')
* def db = new DbUtils(config)
Scenario: Validate the modd_ts is present in lob table
* def createdTs = db.readRows('SELECT crtd_ts FROM tableA ')
* print createdTs
以下是它的回报:
com.intuit.karate - [print] [{"crtd_ts":{"nanos":0}},{"crtd_ts":{"nanos":0}}
不确定为什么它应该将时间戳返回为“nanos”:0,对我来说似乎是个错误。请确认,我将在github中打开一个。
答案 0 :(得分:1)
这不是空手道的问题,而是DbUtils
的实施。您可以编写适合您的环境和数据库等的内容。请记住,这只是karate-demo
的一部分。