我对于为功能创建单元测试非常陌生,并且目前被赋予为此类创建一些单元测试的任务。
namespace Sandbox.Processors
{
using Sitecore.Data.Items;
using Sitecore.Pipelines.HttpRequest;
using System;
using System.Web;
public class RobotsTxtProcessor : HttpRequestProcessor
{
public override void Process(HttpRequestArgs args)
{
HttpContext context = HttpContext.Current;
if (context == null)
{
return;
}
string requestUrl = context.Request.Url.ToString();
if (string.IsNullOrEmpty(requestUrl) || !requestUrl.ToLower().EndsWith("robots.txt"))
{
return;
}
string robotsTxtContent = @"User-agent: *"
+ Environment.NewLine +
"Disallow: /sitecore";
if (Sitecore.Context.Site != null && Sitecore.Context.Database != null)
{
Item homeNode = Sitecore.Context.Database.GetItem(Sitecore.Context.Site.StartPath);
if (homeNode != null)
{
if ((homeNode.Fields["Site Robots TXT"] != null) &&
(!string.IsNullOrEmpty(homeNode.Fields["Site Robots TXT"].Value)))
{
robotsTxtContent = homeNode.Fields["Site Robots TXT"].Value;
}
}
}
context.Response.ContentType = "text/plain";
context.Response.Write(robotsTxtContent);
context.Response.End();
}
}
}
处理函数非常简洁,可以很好地分隔为if语句,可以单独测试,但是这里的问题是 该函数不返回任何内容,因此没有任何东西可以捕获...
如何为此类功能创建单元测试?
答案 0 :(得分:2)
您将需要创建一个模拟HTTPContext并将其注入到测试方法中。 (由于该方法具有多个依赖项,您可能还需要模拟很多其他对象。)
然后,在方法运行之后,断言上下文中的响应是您想要的。
在此处查看详细信息:mb_strtolower()