下面我有一些代码,我不能单元测试,因为它试图从IIS7读取设置,不幸的是我们的夜间构建机器没有IIS7。我唯一能想到的是将ServerManager传递给方法,但是再次在调用者中我会有一个ServerManager,它将使该方法无法进行单元测试。我们使用MOQ作为我们的Mock库。
public ISection GetCurrentSettings(string location, Action<string> status)
{
#region Sanity Checks
if (string.IsNullOrEmpty(location))
{
throw new ArgumentNullException("location");
}
if (status == null)
{
throw new ArgumentNullException("status");
}
#endregion
ISection section = null;
_logger.Debug(string.Format("Retrieving current IIS settings for app at {0}.", location));
status("Getting current IIS settings.");
using (ServerManager manager = new ServerManager())
{
var data = (from site in manager.Sites
from app in site.Applications
from vdir in app.VirtualDirectories
where vdir.PhysicalPath.Equals(location, StringComparison.CurrentCultureIgnoreCase)
select new {Website = site, App = app}).SingleOrDefault();
if (data == null)
{
_logger.Debug(string.Format("Could not find an application at {0} in IIS. Going to load the defaults instead.", location));
//ToDo possibly load defaults
}
else
{
_logger.Debug(string.Format("Application found in IIS with website: {0} and a path of {1}", data.Website.Name, data.App.Path));
int port =
data.Website.Bindings.Where(b => b.EndPoint != null).Select(b => b.EndPoint.Port).Single();
section = new IISSection
{
ApplicationPoolName = data.App.ApplicationPoolName,
VirtualDirectoryAlias = data.App.Path,
WebsiteName = data.Website.Name,
WebsiteRoot = data.App.VirtualDirectories[0].PhysicalPath,
Port = port.ToString(CultureInfo.InvariantCulture),
WillApply = true,
AnonymousUser = _userService.GetUserByType(UserType.Anonymous)
};
}
return section;
}
答案 0 :(得分:3)
如果不完全重写代码,一般的想法是传入一个ISettingReader *(实现为IisSettingReader),它将公开可以从IIS获取所需数据的方法。然后,通过将ISettingReader传递给方法/类
,您可以在ISettingReader中存根以返回所需内容*或者,IServerManager似乎是当前名称,但我不确定这是否是特定于IIS的
<强>更新强>
更具体地说,正如Darin Dimitrov所阐述的那样,您需要将所有依赖项拉出方法之外,并通过参数/构造函数/属性注入传递它们。这将需要重写代码,因为它处于当前状态。
如果没有(我建议重写),那么你可以使用像TypeMock这样的东西,据说它可以伪造一个类中的依赖项,但我自己并没有使用它,只知道我已经读过它。< / p>
答案 1 :(得分:0)
使用Moq。
这将允许您创建ISettings的模拟版本,而不必创建真实版本。它还具有允许您指定自己的功能的附加优势。