我在寫HttpModule
並需要測試它,我使用C#
,.NET4.5.2
,NUnit
和Moq
。如何測試IHttpModules中的HttpApplication事件
方法,我想測試Context_BeginRequest
:
public class XForwardedForRewriter : IHttpModule
{
public void Init(HttpApplication context)
{
context.BeginRequest += Context_BeginRequest;
}
public void Context_BeginRequest(object sender, EventArgs e) { ... }
}
sender
這裏是HttpApplication
,這就是問題的開始,...一個可以創建HttpApplication
實例但是沒有辦法設置HttpContext
自它是隻讀的,沒有辦法通過它(通過構造函數或東西一樣)......
我沒有VS2015 Ultimate
不能使用Microsoft.Fakes
(Shims)和ATM的唯一解決方案此我找到了is to create a wrapper這聽起來不像最直接的解決方案......
當我想到這個時,我確信有人已經遇到了這個確切的問題(因爲每次在TDD中編寫HttpModule
他都需要模擬HttpApplication
或做一些解決方法)
如何測試一個事件IHttpModules
?有沒有一種模擬HttpApplication的方法?優先Moq
。
編輯:這是我想對代碼進行測試......它的頭重寫器從PROXY v2
二進制好老X-Forwarded-For
...
public class XForwardedForRewriter : IHttpModule
{
public void Dispose()
{
throw new NotImplementedException();
}
byte[] proxyv2HeaderStartRequence = new byte[12] { 0x0D, 0x0A, 0x0D, 0x0A, 0x00, 0x0D, 0x0A, 0x51, 0x55, 0x49, 0x54, 0x0A };
public void Init(HttpApplication context)
{
context.BeginRequest += Context_BeginRequest;
}
public void Context_BeginRequest(object sender, EventArgs e)
{
var request = ((HttpApplication)sender).Context.Request;
var proxyv2header = request.BinaryRead(12);
if (!proxyv2header.SequenceEqual(proxyv2HeaderStartRequence))
{
request.Abort();
}
else
{
var proxyv2IpvType = request.BinaryRead(5).Skip(1).Take(1).Single();
var isIpv4 = new byte[] { 0x11, 0x12 }.Contains(proxyv2IpvType);
var ipInBinary = isIpv4 ? request.BinaryRead(12) : request.BinaryRead(36);
var ip = Convert.ToString(ipInBinary);
var headers = request.Headers;
Type hdr = headers.GetType();
PropertyInfo ro = hdr.GetProperty("IsReadOnly",
BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.IgnoreCase | BindingFlags.FlattenHierarchy);
ro.SetValue(headers, false, null);
hdr.InvokeMember("InvalidateCachedArrays",
BindingFlags.InvokeMethod | BindingFlags.NonPublic | BindingFlags.Instance,
null, headers, null);
hdr.InvokeMember("BaseAdd",
BindingFlags.InvokeMethod | BindingFlags.NonPublic | BindingFlags.Instance,
null, headers,
new object[] { "X-Forwarded-For", new ArrayList { ip } });
ro.SetValue(headers, true, null);
}
}
}
你到底想要測試什麼?顯示SUT,也許可以找到解決辦法。 – Nkosi