2017-03-08 127 views
2

我的XUnit 2.2測試全部通過與dotnet test的命令行運行。從Visual Studio 2017的測試資源管理器運行它們時,某些測試會因裝配綁定錯誤而失敗。單元測試通過「dotnet測試」,但從Visual Studio 2017測試資源管理器運行時失敗

我的測試項目的目標是.Net 4.6.2,並引用了一個ASP.Net Core 1.1應用程序,它也針對.Net 4.6.2。在升級到.NET Core 1.1版本工具和Visual Studio 2017之前,單元測試在VS 2015中運行良好。

解決方法是爲測試項目創建一個app.config文件,並將所有必需的綁定重定向添加到它通過試驗和錯誤。我不確定爲什麼但我必須這樣做。

看起來,在使用dotnet test時,運行時會使用較新的程序集版本而不會抱怨。從Visual Studio運行時,重定向是必需的。

爲什麼運行測試的這兩種方法之間的程序集綁定行爲存在差異?

樣品組件綁定錯誤:

The operation failed. 
Bind result: hr = 0x80131040. No description available. 

Assembly manager loaded from: C:\Windows\Microsoft.NET\Framework\v4.0.30319\clr.dll 
Running under executable C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2017\PROFESSIONAL\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\TESTWINDOW\vstest.executionengine.x86.exe 
--- A detailed error log follows. 

=== Pre-bind state information === 
LOG: DisplayName = Microsoft.Extensions.Configuration.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60 
(Fully-specified) 
LOG: Appbase = file:///C:/xx/xx/xx.Tests/bin/Debug/net462 
LOG: Initial PrivatePath = NULL 
LOG: Dynamic Base = NULL 
LOG: Cache Base = C:\Users\xxxxx\AppData\Local\Temp\a1ec4d3c-04ff-4fa0-9e56-129e799dd870 
LOG: AppName = a1ec4d3c-04ff-4fa0-9e56-129e799dd870 
Calling assembly : Serilog.Settings.Configuration, Version=2.2.0.0, Culture=neutral, PublicKeyToken=24c2f752a8e58a10. 
=== 
LOG: This bind starts in default load context. 
LOG: Using application configuration file: C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2017\PROFESSIONAL\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\TESTWINDOW\vstest.executionengine.x86.exe.Config 
LOG: Using host configuration file: 
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework\v4.0.30319\config\machine.config. 
LOG: Post-policy reference: Microsoft.Extensions.Configuration.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60 
LOG: GAC Lookup was unsuccessful. 
LOG: Attempting download of new URL file:///C:/xx/xx/xx.Tests/bin/Debug/net462/Microsoft.Extensions.Configuration.Abstractions.DLL. 
LOG: Assembly download was successful. Attempting setup of file: C:\xx\xx\xx.Tests\bin\Debug\net462\Microsoft.Extensions.Configuration.Abstractions.dll 
LOG: Entering download cache setup phase. 
LOG: Assembly Name is: Microsoft.Extensions.Configuration.Abstractions, Version=1.1.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60 
WRN: Comparing the assembly name resulted in the mismatch: Minor Version 
ERR: The assembly reference did not match the assembly definition found. 
ERR: Setup failed with hr = 0x80131040. 
ERR: Failed to complete setup of assembly (hr = 0x80131040). Probing terminated. 

而且重定向需要解決它:

<dependentAssembly> 
     <assemblyIdentity name="Microsoft.Extensions.Configuration.Abstractions" culture="neutral" publicKeyToken="adb9793829ddae60" /> 
     <bindingRedirect oldVersion="0.0.0.0-1.0.0.0" newVersion="1.1.1.0" />" 
</dependentAssembly> 
+0

你可以共享一個repro項目嗎?也看起來你沒有爲xunit網絡核心測試項目使用新的測試模板。你可以嘗試使用它 – Sushil

回答

1

事實證明,這個問題在https://github.com/Microsoft/vstest/issues/428

解決方法是增加被跟蹤以下兩項到測試項目的csproj文件中:

<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>  
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType> 

這消除了手動添加綁定重定向的需要。

相關問題