我正在使用pactNet来测试API,该API应该返回一个灵活长度的数组。
如果我打电话给“myApi / items /”,它应该返回消费者不知道确切大小的项目列表。 所以答案应该是这样的:
[
{
"id": "1",
"description": "foo"
},
{
"id": "2",
"description": "foo2"
},
{
"id": "3",
"description": "foo3"
}
]
或者这个:
[
{
"id": "4",
"description": "foo4"
},
{
"id": "2",
"description": "foo2"
}
]
如何为此互动创建合约?
在documentation中是Ruby的一个例子,但我找不到C#中的等价物。
我正在使用pactNet版本2.1.1。
编辑:以下是它应该如何显示的示例。我想知道的是如何声明主体应该包含一个具有灵活长度的项目数组。
[Test]
public void GetAllItems()
{
//Arrange
_mockProviderService
.Given("There are items")
.UponReceiving("A GET request to retrieve the items")
.With(new ProviderServiceRequest
{
Method = HttpVerb.Get,
Path = "/items/",
Headers = new Dictionary<string, object>
{
{ "Accept", "application/json" }
}
})
.WillRespondWith(new ProviderServiceResponse
{
Status = 200,
Headers = new Dictionary<string, object>
{
{ "Content-Type", "application/json; charset=utf-8" }
},
Body = // array of items with some attributes
// (somthing like: {"id": "2", "description": "foo"})
// with flexible length
});
var consumer = new ItemApiClient(_mockProviderServiceBaseUri);
//Act
var result = consumer.GetItems();
//Assert
Assert.AreEqual(true, result.Count > 0);
_mockProviderService.VerifyInteractions();
data.Dispose();
}
答案 0 :(得分:4)
听起来你正在寻找MinTypeMatcher。
身体部位看起来如下:
Body = Match.MinType(new { id: "1", description: "foo" }, 1)
答案 1 :(得分:0)
那么,如果我想匹配具有列表或数组属性的对象的类型怎么办?
如果执行Match.Type(new myType())并且数组或列表属性中的元素数不完全相同,则测试将失败。您会看到这样的错误:
Description of differences
--------------------------------------
* Actual array is too long and should not contain a Hash at $.data.itinerary[2]
答案 2 :(得分:0)
对于像@SlimSjakie这样的嵌套数组场景,只需在具有数组的属性上重复Match.MinType即可。例如,以下Person对象具有Address属性作为数组。
Person = Match.MinType(new
{
FirstName = Match.Type("string"),
LastName = Match.Type("string"),
Address = Match.MinType(new
{
Street = Match.Type("string"),
Town = Match.Type("string"),
State = Match.Type("string"),
Postcode = Match.Type("string"),
Country = Match.Type("string")
}, 1)
}, 1)