空手道 - 数据库测试 - 将时间戳显示为nano

时间:2017-10-26 18:21:01

标签: karate

我正在尝试使用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中打开一个。

1 个答案:

答案 0 :(得分:1)

这不是空手道的问题,而是DbUtils的实施。您可以编写适合您的环境和数据库等的内容。请记住,这只是karate-demo的一部分。