0

在 MSBuild 项目中运行 Nunit 控制台会构建一个命令以执行测试,该命令包括大约 90 个路径,每个路径都是已编译测试项目 (.test.dll) 的完整路径,并且至少包含 100 个字符,但没有超过 150 个。

脚本运行时出现以下错误:

NUnit version 2.5.10.11092
 Copyright (C) 2002-2009 Charlie Poole.
 Copyright (C) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov.
 Copyright (C) 2000-2002 Philip Craig.
 All Rights Reserved.

 Runtime Environment -
    OS Version: Microsoft Windows NT 6.1.7601 Service Pack 1
   CLR Version: 2.0.50727.5485 ( Net 2.0 )

 ProcessModel: Default    DomainUsage: Multiple
 Execution Runtime: Default
 Unhandled Exception:


System.IO.DirectoryNotFoundException: Could not find a part of the path 'C:\Builds\123\XXXX\XXX.Build.Sonar\srcDroplocation\Build\x86\Release\xxxxx.xxxx.CustomTypes.Test.dll'.
    at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
    at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights
 , FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolea
 n bFromProxy)
    at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access)
    at NUnit.Core.AssemblyReader.CalcHeaderOffsets()
    at NUnit.Core.AssemblyReader..ctor(String assemblyPath)
    at NUnit.Util.RuntimeFrameworkSelector.SelectRuntimeFramework(TestPackage package)
    at NUnit.Util.DefaultTestRunnerFactory.GetTargetProcessModel(TestPackage package)
    at NUnit.Util.DefaultTestRunnerFactory.MakeTestRunner(TestPackage package)
    at NUnit.ConsoleRunner.ConsoleUi.Execute(ConsoleOptions options)
    at NUnit.ConsoleRunner.Runner.Main(String[] args)

该文件的原始路径为“C:\Builds\123\XXXX\XXX.Build.Sonar\src\Droplocation\Build\x86\Release\xxxxx.xxxx.CustomTypes.Test.dll”。该文件存在,我注意到在异常中 src 和 Droplocation 之间的路径中缺少反斜杠。

这个问题发生在我的构建服务器中,在我的本地机器上工作,不同之处在于我的本地机器上的文件夹不是那么深:'C:\T\XXX\Droplocation\Build\x86\Release\xxxxx.xxxx.CustomTypes .Test.dll'

使用 NUnit 的路径有什么限制吗?

我还尝试创建一个 .nunit 文件以将所有引用放在上面,但这会导致另一个问题

4

2 回答 2

0

路径中间缺少的斜线是由构建脚本引起的,而不是由 NUnit 引起的。我的猜测是构建脚本将两个字符串附加在一起,这两个字符串都没有必要的斜杠。如果相同的构建脚本在您的机器上运行,它可能是服务器上的全局变量,没有开始/结束斜杠,而您的机器上的变量则没有。

编辑:根据您上面的评论,您可能遇到了 Windows 限制。根据此支持页面,命令提示符限制为 8191 个字符。此限制是在扩展任何环境变量之后。您可能需要减少参数的数量或让构建服务器编译到更短的路径。

于 2016-02-02T18:13:43.680 回答
0

事实上,这是 NUnit 版本 2.5.10.11092 中的错误。

  1. 创建指向 C:\Builds\123\XXXX\XXX.Build.Sonar\src\Droplocation 的驱动单元

subst t: C:\Builds\123\XXXX\XXX.Build.Sonar\src\Droplocation

  1. 将 $(OutDir) 从C:\Builds\123\XXXX\XXX.Build.Sonar\src\Droplocation 更改t:
于 2016-02-02T19:37:12.220 回答