私はC#アプリケーションの自動化されたNUnitテストを毎晩、svnへのコミットごとに実行したいと考えています。
これはJenkins-CIができることですか?
私が見ることができる同様の設定を文書化したオンラインチュートリアルまたはハウツー文書はありますか?
私はC#アプリケーションの自動化されたNUnitテストを毎晩、svnへのコミットごとに実行したいと考えています。
これはJenkins-CIができることですか?
私が見ることができる同様の設定を文書化したオンラインチュートリアルまたはハウツー文書はありますか?
回答:
私はあなたがしていることを正確に行う必要がありました、これは私がこれを行うためにJenkinsを設定する方法です:
単一DLLテスト:
[PathToNUnit] \ bin \ nunit-console.exe [PathToTestDll] \ Selenium.Tests.dll /xml=nunit-result.xml
NUnitテストプロジェクトを使用した複数のDLLテスト:
[PathToNUnit] \ bin \ nunit-console.exe [PathToTests] \ Selenium.Tests.nunit /xml=nunit-result.xml
プロジェクトがビルドされると、NUNitが実行され、ダッシュボード(ウェザーレポートアイコンにカーソルを合わせた場合)またはプロジェクトページの[ 最後のテスト結果]に結果が表示されます。
Visual Studio内から、またはローカルビルドプロセスの一部としてコマンドを実行することもできます。
参考のために使用した2つのブログ投稿を次に示します。私の要件に正確に一致するものは見つかりませんでした:
継続的インテグレーションセットアップの1時間ガイド:Jenkinsは.Net(2011)を満たしてい
ますHudson(2008)を使用した.NETプロジェクトの構築ガイド
"C:\Program Files (x86)\NUnit 2.6.3\bin\nunit-console-x86.exe" UnitTests/UnitTests.nunit
です。私には完璧に働きました。
単体テストプロジェクトをハードコード化したくない場合は、単体テストプロジェクトのDLLをすべて取得するスクリプトを作成することをお勧めします。これはPowershellで行い、ユニットテストプロジェクトの命名には特定の規則に従います。単体テストを実行するpowershellファイルの内容は次のとおりです。
param(
[string] $sourceDirectory = $env:WORKSPACE
, $fileFilters = @("*.UnitTests.dll", "*_UnitTests.dll", "*UnitTests.dll")
, [string]$filterText = "*\bin\Debug*"
)
#script that executes all unit tests available.
$nUnitLog = Join-Path $sourceDirectory "UnitTestResults.txt"
$nUnitErrorLog = Join-Path $sourceDirectory "UnitTestErrors.txt"
Write-Host "Source: $sourceDirectory"
Write-Host "NUnit Results: $nUnitLog"
Write-Host "NUnit Error Log: $nUnitErrorLog"
Write-Host "File Filters: $fileFilters"
Write-Host "Filter Text: $filterText"
$cFiles = ""
$nUnitExecutable = "C:\Program Files (x86)\NUnit 2.6.3\bin\nunit-console-x86.exe"
# look through all subdirectories of the source folder and get any unit test assemblies. To avoid duplicates, only use the assemblies in the Debug folder
[array]$files = get-childitem $sourceDirectory -include $fileFilters -recurse | select -expand FullName | where {$_ -like $filterText}
foreach ($file in $files)
{
$cFiles = $cFiles + $file + " "
}
# set all arguments and execute the unit console
$argumentList = @("$cFiles", "/framework:net-4.5", "/xml=UnitTestResults.xml")
$unitTestProcess = start-process -filepath $nUnitExecutable -argumentlist $argumentList -wait -nonewwindow -passthru -RedirectStandardOutput $nUnitLog -RedirectStandardError $nUnitErrorLog
if ($unitTestProcess.ExitCode -ne 0)
{
"Unit Test Process Exit Code: " + $unitTestProcess.ExitCode
"See $nUnitLog for more information or $nUnitErrorLog for any possible errors."
"Errors from NUnit Log File ($nUnitLog):"
Get-Content $nUnitLog | Write-Host
}
$exitCode = $unitTestProcess.ExitCode
exit $exitCode
スクリプトは十分に堅牢で、すべてのビルドジョブで再利用しています。NUnitコンソールへのフルパスが気に入らない場合は、その場所を常にPATH環境変数に入れることができます。
次に、RunUnitTests.ps1ファイルをビルドサーバーに配置し、次のバッチコマンドを使用します。
powershell.exe -file "{full-path-to-script-direcory}\RunUnitTests.ps1"
[string] $sourceDirectory = $(get-location)
あり、スペースが含まれるパスの場合は、アセンブリパスをnUnitに変更する必要がありました$cFiles = $cFiles + '"' + $file + '"' + " "
Nunit 3以上の農作業の場合:
ビルドステップ(Windowsコマンドライン)
"c:\Program Files (x86)\NUnit.org\nunit-console\nunit3-console.exe" c:\AutomationTraining\CSharpSelenium\bin\Debug\test.dll --result=TestR.xml;format=nunit2
Nunitレポート発行のポストステップ。プロジェクトではなく、Jenkinsワークスペースディレクトリにテスト結果ファイルのみが表示されます: TestR.xml
Jenkins NunitプラグインがNunit3結果形式を認識しないため、テスト結果をnunit2形式で作成する必要があります。オプション文字列の形式も異なります:
--result=TestR.xml;format=nunit2
NOT
/xml=nunit-result.xml
これはうまく機能します。以前に設定しました。
結果をXMLファイルに出力するようにNUnitを構成し、このXMLファイルを使用するようにNUnit Jenkinsプラグインを構成します。結果はダッシュボードに表示されます。
ここで、NUnitをどのように呼び出すかはあなた次第です。JenkinsジョブはNAntターゲットを実行し、NUnitテストスイートを実行しました。
Jenkinsジョブを設定して、コミット時に実行したり、特定の時間にスケジュールしたりできます。
Ralph Willgossの解決策はうまく機能していますが、2つの点を変更して素晴らしいものにしました。
a)DLLファイルの代わりにNUnitプロジェクトを直接使用しました。これにより、より簡単にアセンブリを追加したり、NUnit GUIでテストを構成したりできます。
b)テストが失敗したときにビルドが失敗しないように、バッチに1行追加しました。
[PathToNUnit]\bin\nunit-console.exe [PathToTestProject]\UnitTests.nunit /xml=nunit-result.xm
exit 0
言及されたNUnitプラグインは、テストが失敗するたびに、ビルドが安定しないことを自動的にマークします。黄色の点で表示されます。
ビルドをパスしないときに失敗するので、デプロイしない方が良いと思います。このようなことをしてください:
C:\YourNUnitDir\nunit-console.exe C:\YourOutDir\YourLib.dll /noshadow
if defined ERRORLEVEL if %ERRORLEVEL% neq 0 goto fail_build
:: any other command
: fail_build
endlocal
exit %ERRORLEVEL%
リファレンス:http : //www.greengingerwine.com/index.php/2013/01/tip-check-errorlevel-in-your-post-build-steps-when-using-nunit/
これは、Jenkinsでvstestを使用してOpenCoverを実行するための私のソリューションです。
param(
[string] $sourceDirectory = $env:WORKSPACE
, $includedFiles = @("*Test.dll")
, $excludedFiles = @("*.IGNORE.dll")
, [string]$filterFolder = "*\bin\Debug*"
)
# Executables
$openCoverExecutable = "C:\Users\tfsbuild\AppData\Local\Apps\OpenCover\OpenCover.Console.exe"
$unitExecutable = "F:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe"
# Logs
$openCoverReport = Join-Path $sourceDirectory "opencover.xml"
$openCoverFilter = "+[*]* -[*Test]*"
Write-Host "`r`n==== Configuration for executing tests ===="
Write-Host "Source: `"$sourceDirectory`""
Write-Host "Included files: `"$includedFiles`""
Write-Host "Excluded files: `"$excludedFiles`""
Write-Host "Folder filter: `"$filterFolder`""
Write-Host ""
Write-Host "OpenCover Report: `"$openCoverReport`""
Write-Host "OpenCover filter: `"$openCoverFilter`""
# look through all subdirectories of the source folder and get any unit test assemblies. To avoid duplicates, only use the assemblies in the Debug folder
[array]$files = get-childitem $sourceDirectory -include $includedFiles -exclude $excludedFiles -recurse | select -expand FullName | where {$_ -like $filterFolder} | Resolve-Path -Relative
$exitCode = 0
$failedTestDlls = ""
foreach ($file in $files)
{
Write-Host "`r`nCurrent test dll: $file"
# set all arguments and execute OpenCover
$argumentList = @("-target:`"$unitExecutable`"", "-targetargs:`"$file /UseVsixExtensions:false /Logger:trx`"", "-register:user -filter:`"$openCoverFilter`" -mergeoutput -mergebyhash -skipautoprops -returntargetcode -output:`"$openCoverReport`"")
$unitTestProcess = start-process -filepath $openCoverExecutable -argumentlist $argumentList -wait -nonewwindow -passthru -WorkingDirectory $sourceDirectory
if ($unitTestProcess.ExitCode -ne 0)
{
$failedTestDlls = $failedTestDlls + $file + "`r`n"
$exitCode = $unitTestProcess.ExitCode
}
}
if ($exitCode -ne 0)
{
Write-Host "`r`n==== Executing tests in following dlls failed ===="
Write-Host "$failedTestDlls"
}
exit $exitCode
すべてのテストdllを単一の隙間(アセンブリの読み込みを伴う問題)で実行するのに問題があったため、各テストdllは独自のプロセスで実行されます。