使用wiremock在JsonPath中匹配数据

时间:2015-02-23 10:35:59

标签: json jsonpath wiremock

我正在尝试为我的登录程序创建模拟。我使用POST方法与几个字段和登录对象(登录,密码等) 为此,我正在使用JsonPath。代码如下:

{
"request": {
        "method": "POST",
        "url": "/login",
        "bodyPatterns" : [
                {"matchesJsonPath" : "$.method"},
                {"matchesJsonPath" : "$.params[?(@.clientVersion == "1")]"},
                {"matchesJsonPath" : "$.params.login"},
                {"matchesJsonPath" : "$.params.password"}
         ]
    },
    "response": {
            "status": 200,
            "bodyFileName": "login.json"
    }
}

我正在检查clientVersion,因为它与示例类似。

我的问题是,用给定的POST JSON:

{
    "method": "login",
    "params": {
        "clientVersion": "1",
        "login": "test@test.com",
        "password": "681819535da188b6ef2"
    }
}

我收到404。 但是,当我改变

{"matchesJsonPath" : "$.params[?(@.clientVersion == "1")]"},

正常

{"matchesJsonPath" : "$.params.clientVersion"},

一切正常。

那么 - 如果给定的字段等于某个值,如何使用matchesJsonPath检查内部的线索? 在我的情况下,如何将它应用于根域,就像方法一样? 虽然我们在这里 - 我在检查值是否为空时遇到了类似的问题。我试图应用正则表达式等 - 没有运气。

4 个答案:

答案 0 :(得分:2)

以下为我工作。

"matchesJsonPath" : "$.rootItem.itemA[0].item..[?(@.fieldName=='file')]"

杰森:

{
    "rootItem" :  {
          "itemA" : [
              {
                 "item" : {
                     "fieldName" : "file",
                     "name" : "test"
                 }
              }
          ]
    }
}

Wiremock

{
  "request" : {
    "urlPattern" : "/testjsonpath",
    "method" : "POST",
    "bodyPatterns" : [ {
      "matchesJsonPath" : "$.rootItem.itemA[0].item..[?(@.fieldName=='file')]"
    } ]
  },
  "response" : {
    "status" : 200,
    "body" : "{\"result\": \"success\"}",
    "headers" : {
      "Content-Type" : "application/json"
    }
  }
}

答案 1 :(得分:2)

更新Wiremock 。它应该适用于较新版本> = 2.0.0-beta。它的JsonPath依赖关系非常过时(GitHub #261)。

使用双点运算符在语义上是不一样的,因为过滤器也将匹配树下更深的同名元素。

答案 2 :(得分:0)

尝试使用双点运算符(递归) $ .. params [?(@。clientVersion ==“1”)]

答案 3 :(得分:0)

在我的情况下有效:

电线模拟:

"request": {
"urlPathPattern": "/api/authins-portail-rs/authins/inscription/infosperso",
"bodyPatterns" : [
  {"matchesJsonPath" : "$[?(@.nir == '123456789')]"},
  {"matchesJsonPath" : "$[?(@.nomPatronyme == 'aubert')]"},
  {"matchesJsonPath" : "$[?(@.prenoms == 'christian')]"},
  {"matchesJsonPath" : "$[?(@.dateNaissance == '01/09/1952')]"}

],
"method": "POST"

}

Json:

{
    "nir": "123456789",
    "nomPatronyme": "aubert",
    "prenoms": "christian",
    "dateNaissance": "01/09/1952"
}