Karate 空手道。打印不打印实际内容

Karate 空手道。打印不打印实际内容,karate,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.Event

我正在尝试这个

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

编辑:在明确示例之后

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

只需添加这一行:

* json word2 = word2
* karate.log(word2) ## this will log pretty
* print word2 ## this will log pretty
* print 'debug:', word2 ## this will log pretty
* karate.log("debug: " + word2) ## this will NOT log pretty
* karate.log("debug:", word2) ## this will log pretty

之后的一切都会如您所愿。

非常感谢先生@peter thomas!!你太棒了!!