我正在尝试使用匹配包含来验证我的架构响应和数据类型,有时它会返回null,有时它会返回一个字符串,作为示例。我正在尝试以下但我得到断言失败,因为它没有评估为真。
我正在尝试以下方法:
* match each $response.data.Results contains
"""
{
"providerID": '#number',
"firstName": "#? _ == '#string' || _ == '#null'",
"lastName": '#string',
"mI": "#? _ == '#string' || _ == '#null'",
"title": '#string',
"name": '#string',
"nameLFMT": '#string',
"status": '#string',
"specialties": '#array',
"locations": '#array',
"institutions": '#array',
"acceptNewPatient": '#string',
"imageUri": '#string',
"nearestLatitude": '#number',
"nearestLongitude": '#number'
}
"""
例如,为“firstName”返回的数据是“firstName”:null,
在比赛之前,我发送的是:
Scenario: SearchResults
#Verify 200 response status returned
Given text query =
"""
{
Results: getSearchResults(searchLatitude:"48.942833",
searchLongitude: "-119.984549",
providerType: "Primary Care Physicians",
sortBy: "distance",
maxDistance:"600",
skip: 0,
take: 10) {
providerID
firstName
lastName
mI
title
name
nameLFMT
status
specialties
locations
institutions
acceptNewPatient
imageUri
nearestLatitude
nearestLongitude
}
}
"""
And request { query: '#(query)' }
When method post
Then status 200
我没有定义架构,我还没弄明白如何做到这一点所以我不确定这是不是我的问题。我知道这可能是我应该怎么做但我还在学习。
感谢您的帮助。
答案 0 :(得分:1)
好的,我在这里看到一个问题:
"firstName": "#? _ == '#string' || _ == '#null'"
那不行。 #?
后面的部分必须是有效的JavaScript表达式。如果您不熟悉JS,这可能很难理解,但#string
和朋友特定于空手道match
关键字,而不是在JavaScript中有效。
所以上面一行是检查firstName
的值是否等于文字字符串#string
。
幸运的是空手道有一个解决方案:(参考文档' fuzzy matching'):
"firstName": "##string"
这是方便,双##
表示可选'这将匹配两者一个字符串或null
。