1

我想使用 json 模式检查来自 GET/birds 请求的响应。在我的功能中:

* def abs = read (birds.json)
* match response == abs.birdsSchema

我需要将架构放在 json 文件中,而不是放在功能中。我必须根据性别检查其他值。例如:如果性别是男性,则检查颜色是蓝色,尾巴是长还是短。如果性别是女性,则检查“唱歌”是真是假以及鸡蛋的数量。

所以我输入了birds.json:

"birdsSchema":{
    "id": "#string",
    "owner": "#number",
    "town": "#? _ == 'New York' || _ == 'Washington'",
    "type": "object",
    "oneOf": [
        {
            "properties": {
                "gender": {"enum": ["male"]},
                "color":"blue",
                "tail": "#? _ == 'long' || _ == 'short'"
            }
        },
        {
            "properties": {
                "gender": {"enum": ["female"]},
                "sings" : "#? _ == true || _ == false"
                "eggs": "##number"
            }
        }
    ]
}

但它不起作用。错误:com.intuit.karate.exception.KarateException:路径:$[0].type,实际:'female',预期:'object',原因:不相等。如何在我的 json 文件中进行此条件检查?

4

1 回答 1

2

让我们承认这非常困难,因为如果我正确理解您的问题,那么您正在寻找的 JSON键是动态的。

空手道的部分乐趣在于,我至少可以想到 5 种不同的方法来优雅地解决这个问题。这里只是一个:

* def response = { color: 'black', aaa: 'foo' }

* def schema = { color: '#? _ == "black" || _ == "white"' }
* def extra = (response.color == 'black' ? { aaa: '#string' } : { fff: '#string' })

* match response contains schema
* match response contains extra

如果你根据上面的提示创建一个 JS 函数,你可能会得到一个更好的解决方案。请记住,在 JS 函数中,您可以使用karate.set动态创建键等方法。所以有很多可能性:)

编辑:看起来上面的例子是错误的,键不是动态的。然后很简单,记住$指的是 JSON 根:

* def response = { color: 'black', extra: 'foo' }    
* def schema = { color: '#? _ == "black" || _ == "white"', extra: '#($.color == "black" ? "foo" : "bar")' }    
* match response == schema
于 2017-10-10T15:25:58.697 回答