本文整理汇总了C#中Nancy.Tests.Fakes.FakeRequest.IsLocal方法的典型用法代码示例。如果您正苦于以下问题:C# FakeRequest.IsLocal方法的具体用法?C# FakeRequest.IsLocal怎么用?C# FakeRequest.IsLocal使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Nancy.Tests.Fakes.FakeRequest
的用法示例。
在下文中一共展示了FakeRequest.IsLocal方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: IsLocal_should_return_false_if_userHostAddr_is_not_localhost
public void IsLocal_should_return_false_if_userHostAddr_is_not_localhost()
{
// Given when
var request = new FakeRequest("GET", "/", string.Empty, "86.13.73.12");
// Then
Assert.False(request.IsLocal());
}
示例2: IsLocal_should_return_false_if_urlString_is_empty
public void IsLocal_should_return_false_if_urlString_is_empty()
{
// Given when
var request = new FakeRequest("GET", string.Empty, string.Empty, string.Empty);
// Then
Assert.False(request.IsLocal());
}
示例3: IsLocal_should_return_true_if_userHostAddr_is_localhost_IPV4
public void IsLocal_should_return_true_if_userHostAddr_is_localhost_IPV4()
{
// Given when
var request = new FakeRequest("POST", "/", string.Empty, "127.0.0.1");
// Then
Assert.True(request.IsLocal());
}
示例4: IsLocal_should_return_true_if_userHostAddr_is_localhost_IPV6
public void IsLocal_should_return_true_if_userHostAddr_is_localhost_IPV6()
{
// Given when
var request = new FakeRequest("GET", "/", string.Empty, "::1");
request.Url.HostName = "localhost";
// Then
Assert.True(request.IsLocal());
}