4

我按照这个ReadyRoll 入门开发了简单的 Ready Roll 数据库项目。

之后,我在 VS2015 中使用 tSQLt 适配器添加了 tSQLt 测试,方法是遵循Running tests in ReadyRoll with tSQLt Adapter

接下来将我的代码签入到 VSTS 中,并按照此链接创建构建和发布步骤。

创建-vsts-tfs-build

创建-vsts-tfs-发布

tsqlt-tests-with-visual-studio-team-services

在发布级别 运行 tSQLt 测试任务配置在此处输入图像描述

我有点困惑在发布级别运行 tSQLt 测试任务配置中的测试结果输出路径下给出哪个路径。

因此,我在运行 tSQLt 测试任务中遇到了发布级别的错误,如下图所示。

在此处输入图像描述

谁能告诉我如何解决上述问题?

4

2 回答 2

1

此问题现已在VSTS ReadyRoll 扩展的 2.1.4 版本中得到修复。

有问题的行:

Invoke-VstsTool -FileName 'sqlcmd.exe' -Arguments "-S $databaseServer -d $databaseName -i 'RunTests.sql'"
Invoke-VstsTool -FileName 'sqlcmd.exe' -Arguments "-S $databaseServer -d $databaseName -i 'OutputResults.sql' -o $outputPath"

被替换为:

$connectionParams = "-S ""$databaseServer"" -d ""$databaseName"""
Invoke-VstsTool -RequireExitCodeZero -FileName 'sqlcmd.exe' -Arguments "-b $connectionParams -i RunTests.sql"
Invoke-VstsTool -RequireExitCodeZero -FileName 'sqlcmd.exe' -Arguments "-b $connectionParams -i OutputResults.sql -o ""$outputPath"""

对造成的任何不便深表歉意。

于 2018-01-10T10:54:07.857 回答
1

Run tsSQLt Tests 任务中存在问题(可以重现此问题)。

源代码(可以在代理工作文件夹中找到,例如:_work/_task/RunDatabaseTestsxxx):

运行数据库测试.ps1:

[CmdletBinding(DefaultParameterSetName = 'None')]
param()
$global:ErrorActionPreference = 'Stop'
Import-Module -Name "$PSScriptRoot\ps_modules\TaskHelpers"

[string]$outputPath = Get-VstsInput -Name OutputPath
[string]$databaseServer = Get-VstsInput -Name DatabaseServer
[string]$databaseName = Get-VstsInput -Name DatabaseName
[bool]$useWindowsAuth = Get-VstsInput -Name UseWindowsAuth -AsBool
[string]$databaseUserName = Get-VstsInput -Name DatabaseUserName
[string]$databasePassword = Get-VstsInput -Name DatabasePassword

Write-VstsTaskVerbose -Message 'Ensuring the path to sqlcmd is present in env:PATH'
Initialize-SqlCmdInPathEnvironmentVariable

[string]$sourcesDirectory = Get-VstsTaskVariable -Name 'Build.SourcesDirectory'

if(!$sourcesDirectory)
{
  Write-VstsTaskVerbose -Message 'Build.SourcesDirectory was not found as a VSTS Task variable'
  Write-VstsTaskVerbose -Message 'Looking for Agent.ReleaseDirectory to use as source directory instead'
  # For RM, look for the test assemblies under the release directory.
  $sourcesDirectory = Get-VstsTaskVariable -Name 'Agent.ReleaseDirectory'
}

if(!$sourcesDirectory)
{
  $msg = 'No source directory found'
  Exit-WithError $msg
}

Write-VstsTaskVerbose -Message 'Source directory found'
Write-VstsTaskDebug -Message "buildSourcesDirectory = $buildSourcesDirectory"

if ([System.IO.Path]::IsPathRooted($outputPath) -eq $False)
{
  $outputPath = Join-Path $sourcesDirectory $outputPath
}

Write-VstsTaskDebug -Message "OutputPath(absolute) = $outputPath"

if ($useWindowsAuth -eq $True) {
  Write-VstsTaskVerbose -Message 'Starting sqlcmd with Windows Authentication'
  Invoke-VstsTool -FileName 'sqlcmd.exe' -Arguments "-S $databaseServer -d $databaseName -i 'RunTests.sql'"
  Invoke-VstsTool -FileName 'sqlcmd.exe' -Arguments "-S $databaseServer -d $databaseName -i 'OutputResults.sql' -o $outputPath"
}
else {
  Write-VstsTaskVerbose -Message 'Starting sqlcmd with SQL Authentication'
  Invoke-VstsTool -FileName 'sqlcmd.exe' -Arguments "-S $databaseServer -d $databaseName -U $databaseUserName -P $databasePassword -i 'RunTests.sql'"
  Invoke-VstsTool -FileName 'sqlcmd.exe' -Arguments "-S $databaseServer -d $databaseName -U $databaseUserName -P $databasePassword -i 'OutputResults.sql' -o $outputPath"
}

# sqlcmd limits line length to 2034 characters and inserts new lines. Remove these.
$x = Get-Content $outputPath -Raw
$x.Replace("`r`n", "") > $outputPath

运行测试.sql:

EXEC [tSQLt].[RunAll];

输出结果.sql:

:XML ON
EXEC [tSQLt].[XmlResultFormatter];

我可以通过调用"sqlcmd.exe" -S v-tinmo-12r2 -d ReadyRollDemo2 -U starain -P User@123 -i RunTests.sql命令来运行测试(从'RunTests.sql'中删除单引号,也可以将单引号替换为双引号))

因此,您可以通过命令行任务调用 sqlcmd.exe 来运行测试并获取报告,也可以参考 Run tSQLt Tests 任务的源代码来自定义构建/发布任务。

于 2017-12-11T05:27:29.627 回答