Karate.print不打印实际内容

时间:2018-09-29 18:41:12

标签: karate

我正在尝试

Scenario: FORMAT
  * def word = '{\n  \"enterpriseEventEnvelope\" : {\n    \"eventId\" : \"61322555-c5e0-434c-ade0-96f8ca4\",\n    \"eventOccurrenceTimestamp\" : \"2018-09-30T02:00:00\",\n    \"eventDataQuality\" : {\n      \"com.sample.EventDataQualityAttributesRecord\" : {\n        \"executedRuleSetId\" : \"fcf79a09-d6c2-4fda-b8b7-b12c44191\",\n        \"failedRuleIds\" : {\n          \"array\" : [ ]\n        },\n        \"errorRuleIds\" : {\n          \"array\" : [ ]\n        }\n      }\n    }\n  },\n  \"domainPayload\" : {\n    \"employeeId\" : \"TMB5\",\n    \"supportType\" : \"Bench\",\n    \"roleEndDate\" : 1577836800000,\n    \"specialtyProgramName\" : \"\",\n    \"contractorStatus\" : \"\",\n    \"lastChangeDate\" : 1609390800000,\n    \"lastChangeBy\" : \"FYC9\"\n  }\n}'

  * def word1 = (word.replace(/(\r\n|\n|\r)/gm,""))
  * def word2 = (word1.replace(/\s+/g," "))
  * print word2 . #this prints fine
  * print karate.pretty(wrod2) # doesn't print pretty for mat.
  * print karate.pretty(word2..domainPayload) #this prints nothing

1 个答案:

答案 0 :(得分:1)

编辑:在示例明确之后。

您错过的是在执行字符串替换后,您最终得到的是字符串,而不是JSON。您需要转换回JSON,这在空手道中非常容易。

只需添加以下行:

* json word2 = word2

此后,一切都会按您的预期进行。

相关问题