本文整理汇总了C#中Nancy.NancyContext.GetMatchingInteraction方法的典型用法代码示例。如果您正苦于以下问题:C# NancyContext.GetMatchingInteraction方法的具体用法?C# NancyContext.GetMatchingInteraction怎么用?C# NancyContext.GetMatchingInteraction使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Nancy.NancyContext
的用法示例。
在下文中一共展示了NancyContext.GetMatchingInteraction方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetMatchingInteraction_WithInteractionsNull_ThrowsArgumentException
public void GetMatchingInteraction_WithInteractionsNull_ThrowsArgumentException()
{
var context = new NancyContext();
context.Items[PactMockInteractionsKey] = null;
Assert.Throws<ArgumentException>(() => context.GetMatchingInteraction(HttpVerb.Get, "/events"));
}
示例2: GetMatchingInteraction_WithNoMatchingInteraction_ThrowsArgumentException
public void GetMatchingInteraction_WithNoMatchingInteraction_ThrowsArgumentException()
{
var interactions = new List<ProviderServiceInteraction>
{
new ProviderServiceInteraction { Request = new ProviderServiceRequest { Method = HttpVerb.Get, Path = "/hello" }, Response = new ProviderServiceResponse()}
};
var context = new NancyContext();
context.SetMockInteraction(interactions);
Assert.Throws<ArgumentException>(() => context.GetMatchingInteraction(HttpVerb.Get, "/events"));
}
示例3: GetMatchingInteraction_WithOneMatchingInteraction_ReturnsInteraction
public void GetMatchingInteraction_WithOneMatchingInteraction_ReturnsInteraction()
{
var interactions = new List<ProviderServiceInteraction>
{
new ProviderServiceInteraction { Request = new ProviderServiceRequest { Method = HttpVerb.Get, Path = "/events" }, Response = new ProviderServiceResponse()},
new ProviderServiceInteraction { Request = new ProviderServiceRequest { Method = HttpVerb.Post, Path = "/events" }, Response = new ProviderServiceResponse()},
};
var context = new NancyContext();
context.SetMockInteraction(interactions);
var result = context.GetMatchingInteraction(HttpVerb.Get, "/events");
Assert.Equal(interactions.First(), result);
}
示例4: HandlePactRequest
private Response HandlePactRequest(NancyContext context)
{
var actualRequest = _requestMapper.Convert(context.Request);
var matchingInteraction = context.GetMatchingInteraction(actualRequest.Method, actualRequest.Path);
matchingInteraction.IncrementUsage();
_requestComparer.Compare(matchingInteraction.Request, actualRequest);
return _responseMapper.Convert(matchingInteraction.Response);
}
示例5: GetMatchingInteraction_WithNoInteractions_ThrowsInvalidOperationException
public void GetMatchingInteraction_WithNoInteractions_ThrowsInvalidOperationException()
{
var context = new NancyContext();
Assert.Throws<InvalidOperationException>(() => context.GetMatchingInteraction(HttpVerb.Get, "/events"));
}