Visual Studio 内で ASP.NET 単体テストを実行するために、WatiN、NUnit、および ReSharper を使用しています。(まだ実行されていない場合) Cassini を起動して、テストを実行したいと思います。
これは可能ですか?どうすればいいですか?
Visual Studio 内で ASP.NET 単体テストを実行するために、WatiN、NUnit、および ReSharper を使用しています。(まだ実行されていない場合) Cassini を起動して、テストを実行したいと思います。
これは可能ですか?どうすればいいですか?
CassiniDev 3.5.1/4.0.1 ベータ版をリリースしました。興味がある方のために、簡単なテスト フィクスチャの例を示します。
開発者およびテスター向け Cassini: http://cassinidev.codeplex.com
モベタ、一言。
ここにいくつかのコードがあります:
private static void GetDevelopmentServerVPathAndPortFromProjectFile(
string csprojFileName,
out string developmentServerVPath,
out int developmentServerPort)
{
XPathDocument doc = new XPathDocument(csprojFileName);
XPathNavigator navigator = doc.CreateNavigator();
XmlNamespaceManager manager = new XmlNamespaceManager(navigator.NameTable);
manager.AddNamespace("msbuild",
"http://schemas.microsoft.com/developer/msbuild/2003");
const string xpath = "/msbuild:Project/msbuild:ProjectExtensions/"
+ "msbuild:VisualStudio/msbuild:FlavorProperties/"
+ "msbuild:WebProjectProperties";
XPathNavigator webProjectPropertiesNode =
navigator.SelectSingleNode(xpath, manager);
XPathNavigator developmentServerPortNode =
webProjectPropertiesNode.SelectSingleNode("msbuild:DevelopmentServerPort",
manager);
XPathNavigator developmentServerVPathNode =
webProjectPropertiesNode.SelectSingleNode("msbuild:DevelopmentServerVPath",
manager);
developmentServerPort = developmentServerPortNode.ValueAsInt;
developmentServerVPath = developmentServerVPathNode.Value;
}
private static string GetCommonProgramFilesPath()
{
string commonProgramFiles =
Environment.GetEnvironmentVariable("CommonProgramFiles(x86)");
if (string.IsNullOrEmpty(commonProgramFiles))
{
commonProgramFiles =
Environment.GetEnvironmentVariable("CommonProgramFiles");
}
if (string.IsNullOrEmpty(commonProgramFiles))
{
commonProgramFiles =
Environment.GetFolderPath(Environment.SpecialFolder.CommonProgramFiles);
}
return commonProgramFiles;
}
private static Process PrepareCassiniProcess(int developmentServerPort,
string projectPhysicalPath,
string developmentServerVPath)
{
string commonProgramFiles = GetCommonProgramFilesPath();
string cassiniPath = Path.Combine(commonProgramFiles,
@"Microsoft Shared\DevServer\9.0\WebDev.WebServer.exe");
string cassiniArgs = string.Format(
CultureInfo.InvariantCulture,
"/port:{0} /nodirlist /path:\"{1}\" /vpath:\"{2}\"",
developmentServerPort, projectPhysicalPath, developmentServerVPath);
Process cassiniProcess = new Process();
cassiniProcess.StartInfo.FileName = cassiniPath;
cassiniProcess.StartInfo.Arguments = cassiniArgs;
return cassiniProcess;
}
これを使用するには、テスト対象のWebプロジェクトのCSPROJファイルへのパスを検出する必要があります。これは読者の演習として残しておきます(現在、ハードコーディングされています)。
CassiniサーバーはWebDev.WebServer.EXEです。手動で開始する方法を示すブログがいくつかあります。これが1つです:
http://www.dotnetjunkies.com/WebLog/saravana/archive/2005/06/18/126143.aspx