gpt4 book ai didi

c# - 使用 Microsoft.Data.SqlClient 2.0 时无法从单元测试加载 DLL 'Microsoft.Data.SqlClient.SNI.x86.dll'

转载 作者:行者123 更新时间:2023-12-05 03:48:30 25 4
gpt4 key购买 nike

在我的代码中使用 Microsoft.Data.SqlClient 程序包(2.0 版)时,通过 VSTest.console.exe 执行单元测试时出现以下错误我们的 CI 供应商(在本地运行时):

System.TypeInitializationException: The type initializer for'Microsoft.Data.SqlClient.TdsParser' threw an exception. --->System.TypeInitializationException: The type initializer for'Microsoft.Data.SqlClient.SNILoadHandle' threw an exception. --->System.DllNotFoundException: Unable to load DLL'Microsoft.Data.SqlClient.SNI.x86.dll': The specified module could notbe found

代码正确执行,单元测试在 NCrunch 和 Visual Studio 2019 测试运行器中也能正常工作 - 那么问题是什么?

最佳答案

问题是 VSTest.Console.exe 扫描单元测试程序集的依赖项并将结果复制到输出目录以进行测试。

尽管 Microsoft.Data.SqlClient 包依赖包 Microsoft.Data.SqlClient.SNI 正确放置了 Microsoft.Data.SqlClient.SNI.x86。 dllMicrosoft.Data.SqlClient.SNI.x64.dll 程序集输出文件夹中的文件,VSTest.Console.exe 不会将它们识别为依赖项自动将它们复制到测试输出文件夹,因此测试失败。

我的解决方法是通过专用测试类将 DLL 显式指定为测试的部署项,如下所示:

using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace MyTests
{
/// <summary>
/// Ensures Microsoft.Data.SqlClient dependencies exist for tests.
/// </summary>
/// <remarks>
/// This class performs no tests and is here purely to ensure that the Microsoft.Data.SqlClient.SNI.*
/// exist for unit testing purposes (specifically when VSTest.Console is used by the build).
/// This was introduced for Microsoft.Data.SqlClient 2.0.1 and Microsoft.Data.SqlClient.SNI 2.1.0.
/// Thos packages need to be a package reference on the unit test project.
/// Later versions may not need this workaround.
/// </remarks>
[TestClass]
[DeploymentItem("Microsoft.Data.SqlClient.SNI.x86.dll")]
[DeploymentItem("Microsoft.Data.SqlClient.SNI.x64.dll")]
public class TestSqlClient
{
[TestMethod]
public void TestSqlClient_Test()
{
}
}
}

这将确保 DLL 存在以供测试。不理想,但它有效!

如果它有用,这就是我运行 VSTest.Console.exe 来诊断此问题的方式:

VSTest.Console /Diag:D:\Temp\trace.log /ResultsDirectory:D:\Temp\TestResults d:\Repos\YourRepo\YourProject.Tests\bin\Debug\YourProject.Tests.dll

关于c# - 使用 Microsoft.Data.SqlClient 2.0 时无法从单元测试加载 DLL 'Microsoft.Data.SqlClient.SNI.x86.dll',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64349996/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com