- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们有一个大型 .NET 解决方案,其中包含相互引用的 C# 和 C++/CLI 项目。我们还有几个单元测试项目。我们最近从 Visual Studio 2010 和 .NET 4.0 升级到 Visual Studio 4.5 和 .NET 4.5,现在当我们尝试运行单元测试时,在测试期间加载某些 DLL 似乎出现问题。
出现此问题的原因是单元测试是在单独的 AppDomain 上执行的。单元测试进程(例如nunit-agent.exe)创建一个新的AppDomain,并将AppBase设置为测试项目的位置,但根据Fusion Log,某些DLL以nunit的可执行文件目录作为AppBase而不是AppDomain的AppBase加载.
我成功地用一个更简单的场景重现了该问题,该场景创建了一个新的 AppDomain 并尝试在那里运行测试。它看起来是这样的(我更改了单元测试类的名称、方法和 dll 的位置以保护无辜者):
class Program
{
static void Main(string[] args)
{
var setup = new AppDomainSetup {
ApplicationBase = "C:\\DirectoryOfMyUnitTestDll\\"
};
AppDomain domain = AppDomain.CreateDomain("MyDomain", null, setup);
ObjectHandle handle = Activator.CreateInstanceFrom(domain, typeof(TestRunner).Assembly.CodeBase, typeof(TestRunner).FullName);
TestRunner runner = (TestRunner)handle.Unwrap();
runner.Run();
AppDomain.Unload(domain);
}
}
public class TestRunner : MarshalByRefObject
{
public void Run()
{
try
{
HtmlTransformerUnitTest test = new HtmlTransformerUnitTest();
test.SetUp();
test.Transform_HttpEquiv_Refresh_Timeout();
}
catch (Exception e)
{
Console.WriteLine(e);
}
}
}
这是我在尝试执行单元测试时遇到的异常。如您所见,问题发生在 C++ dll 初始化并尝试加载 C# dll 时(我将涉及的 DLL 的名称更改为 CPlusPlusDll 和 CSharpDll):
System.TypeInitializationException: The type initializer for '' threw an exception. ---> .ModuleLoadExceptionHandlerException: A nested exception occurred after the primary exception that caused the C++ module to fail to load. ---> System.TypeInitializationException: The type initializer for '' threw an exception. ---> .ModuleLoadException: The C++ module failed to load during vtable initialization. ---> System.IO.FileNotFoundException: Could not load file or assembly 'CSharpDll, Version=8.80.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified. at ?A0xb992d574.??__E??_7CAppletAction@CPlusPlusDll@SomeNamespace@@6B@@@YMXXZ() at _initterm_m((fnptr)* pfbegin, (fnptr)* pfend) in f:\dd\vctools\crt_bld\self_x86\crt\src\puremsilcode.cpp:line 219 at .LanguageSupport.InitializeVtables(LanguageSupport* ) in f:\dd\vctools\crt_bld\self_x86\crt\src\mstartup.cpp:line 331 at .LanguageSupport._Initialize(LanguageSupport* ) in f:\dd\vctools\crt_bld\self_x86\crt\src\mstartup.cpp:line 491 at .LanguageSupport.Initialize(LanguageSupport* ) in f:\dd\vctools\crt_bld\self_x86\crt\src\mstartup.cpp:line 702 --- End of inner exception stack trace --- at .ThrowModuleLoadException(String errorMessage, Exception innerException) in f:\dd\vctools\crt_bld\self_x86\crt\src\minternal.h:line 194 at .LanguageSupport.Initialize(LanguageSupport* ) in f:\dd\vctools\crt_bld\self_x86\crt\src\mstartup.cpp:line 712 at .cctor() in f:\dd\vctools\crt_bld\self_x86\crt\src\mstartup.cpp:line 754 --- End of inner exception stack trace --- at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo) at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32 errorCode) at .DoCallBackInDefaultDomain(IntPtr function, Void* cookie) in f:\dd\vctools\crt_bld\self_x86\crt\src\minternal.h:line 406 at .DefaultDomain.Initialize() in f:\dd\vctools\crt_bld\self_x86\crt\src\mstartup.cpp:line 277 at .LanguageSupport.InitializeDefaultAppDomain(LanguageSupport* ) in f:\dd\vctools\crt_bld\self_x86\crt\src\mstartup.cpp:line 342 at .LanguageSupport._Initialize(LanguageSupport* ) in f:\dd\vctools\crt_bld\self_x86\crt\src\mstartup.cpp:line 539 at .LanguageSupport.Initialize(LanguageSupport* ) in f:\dd\vctools\crt_bld\self_x86\crt\src\mstartup.cpp:line 702 --- End of inner exception stack trace --- at .ThrowNestedModuleLoadException(Exception innerException, Exception nestedException) in f:\dd\vctools\crt_bld\self_x86\crt\src\minternal.h:line 184 at .LanguageSupport.Cleanup(LanguageSupport* , Exception innerException) in f:\dd\vctools\crt_bld\self_x86\crt\src\mstartup.cpp:line 662 at .LanguageSupport.Initialize(LanguageSupport* ) in f:\dd\vctools\crt_bld\self_x86\crt\src\mstartup.cpp:line 710 at .cctor() in f:\dd\vctools\crt_bld\self_x86\crt\src\mstartup.cpp:line 754 --- End of inner exception stack trace ---
这是我在 Fusion Log 中看到的内容(我已将 DLL 的名称更改为 SomeDLL.dll,而不是原来的名称):
*** Assembly Binder Log Entry (8/1/2013 @ 01:47:48 PM) ***The operation failed.Bind result: hr = 0x80070002. The system cannot find the file specified.Assembly manager loaded from: C:\Windows\Microsoft.NET\Framework\v4.0.30319\clr.dllRunning under executable c:\users\yshany\documents\visual studio 2012\Projects\MyTester\MyTester\bin\Debug\MyTester.exe--- A detailed error log follows. === Pre-bind state information ===LOG: User = WF-IL\yshanyLOG: DisplayName = SomeDLL, Version=8.80.0.0, Culture=neutral, PublicKeyToken=null (Fully-specified)LOG: Appbase = file:///c:/users/yshany/documents/visual studio 2012/Projects/MyTester/MyTester/bin/Debug/LOG: Initial PrivatePath = NULLLOG: Dynamic Base = NULLLOG: Cache Base = NULLLOG: AppName = MyTester.exeCalling assembly : (Unknown).===LOG: This bind starts in default load context.LOG: Using application configuration file: c:\users\yshany\documents\visual studio 2012\Projects\MyTester\MyTester\bin\Debug\MyTester.exe.ConfigLOG: Using host configuration file: LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework\v4.0.30319\config\machine.config.LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).LOG: Attempting download of new URL file:///c:/users/yshany/documents/visual studio 2012/Projects/MyTester/MyTester/bin/Debug/SomeDLL.DLL.LOG: Attempting download of new URL file:///c:/users/yshany/documents/visual studio 2012/Projects/MyTester/MyTester/bin/Debug/SomeDLL/SomeDLL.DLL.LOG: Attempting download of new URL file:///c:/users/yshany/documents/visual studio 2012/Projects/MyTester/MyTester/bin/Debug/SomeDLL.EXE.LOG: Attempting download of new URL file:///c:/users/yshany/documents/visual studio 2012/Projects/MyTester/MyTester/bin/Debug/SomeDLL/SomeDLL.EXE.LOG: All probing URLs attempted and failed.
如您所见,问题在于 AppBase 是 MyTester.exe 所在的位置,而不是 SomeDLL.dll 所在的位置(与单元测试 dll 位于同一位置)。多个 DLL 都会发生这种情况,包括上面异常中提到的两个 DLL。
我还尝试使用一个更简单的单元测试项目(一个包含 3 个项目的小型 VS2012 解决方案 - 一个 C# 项目,它引用一个 C++/CLI 项目,该项目引用另一个 C# 项目)来重现,但问题没有重现,并且工作完美。正如我之前提到的,在我们升级到 VS2012 和 .NET 4.5 之前,单元测试都没有问题。
我能做什么?谢谢!
最佳答案
这似乎是 .NET 4.5 中的一个错误。
NUnit 创建一个新的应用程序域来运行单元测试。如果单元测试程序集或其任何引用是混合模式程序集,则在某些条件下,它最终也会尝试在默认应用程序域中加载混合模式程序集的引用。
运行时必须先初始化混合模式程序集的非托管 C++ 代码,然后才能在该程序集中执行任何其他操作。它通过自动编译的 LanguageSupport 类来完成此操作(其源代码随 Visual Studio 一起分发)。 LanguageSupport::Initialize
首先在编译器生成的混合模式单元测试程序集的静态构造函数中运行 .module
类,在 NUnit 创建的应用程序域的上下文中。 LanguageSupport 又会在默认应用程序域中重新触发相同的静态构造函数,最终调用 LanguageSupport::Initialize
再次。这是与上面相同的调用堆栈,减去错误处理内容:
at _initterm_m((fnptr)* pfbegin, (fnptr)* pfend)
at .LanguageSupport.InitializeVtables(LanguageSupport* )
at .LanguageSupport._Initialize(LanguageSupport* )
at .LanguageSupport.Initialize(LanguageSupport* )
at .LanguageSupport.Initialize(LanguageSupport* )
at .DoCallBackInDefaultDomain(IntPtr function, Void* cookie)
at .LanguageSupport.InitializeDefaultAppDomain(LanguageSupport* )
at .LanguageSupport._Initialize(LanguageSupport* )
at .LanguageSupport.Initialize(LanguageSupport* )
at .LanguageSupport.Initialize(LanguageSupport* )
NUnit 创建的应用程序域实际上成功加载了单元测试程序集及其引用(假设您没有其他问题),但默认应用程序域中的第二个 LanguageSupport 初始化失败。
通过转储混合模式程序集的 IL,我发现一些非托管类自动生成了一个静态初始化方法 - 这些是在调用堆栈顶部第二个位置的 InitializeVtables 方法中调用的方法之一。经过一番尝试和错误编译后,我发现如果非托管类有一个构造函数和至少一个签名中带有 .NET 类型的虚拟方法,编译器将为该类发出一个静态初始值设定项。
LanguageSupport::InitializeVtables
调用这些静态初始化函数。当初始化程序运行时,它显然会导致 CLR 尝试加载包含在非托管类的虚拟方法的签名中找到的导入类型的引用。由于默认的应用程序域在应用程序库中没有单元测试程序集及其引用,因此调用失败并生成您在上面看到的错误。
此外,只有当还有另一个非 vtable 初始化程序也在运行时,才会发生错误(无论如何,在我制作的玩具应用程序中)。
这是我的应用程序的相关部分:
class DomainDumper {
public:
DomainDumper() {
Console::WriteLine("Dumper called from appdomain {0}",
AppDomain::CurrentDomain->Id);
}
};
// comment out this line and InitializeVtables succeeds in default appdomain
DomainDumper dumper;
class CppClassUsingManagedRef {
public:
// comment out this line and the dynamic vtable initializer doesn't get created
CppClassUsingManagedRef(){}
virtual void VirtualMethodWithNoArgs() {}
// comment out this line and the dynamic vtable initializer doesn't get created
virtual void VirtualMethodWithImportedTypeRef(ReferredToClassB^ bref) {}
void MethodWithImportedTypeRef(ReferredToClassB^ bref) {}
};
解决方法:
<probing>
portion of the app.config file .Object^
来做到这一点并在方法实现中转换为实际类型,这虽然很蹩脚,但很有效。关于c# - 尝试在新的 AppDomain 中加载混合的 C# 和 C++/CLI dll 时,从错误的 AppplicationBase 加载 DLL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17993010/
SQLite、Content provider 和 Shared Preference 之间的所有已知区别。 但我想知道什么时候需要根据情况使用 SQLite 或 Content Provider 或
警告:我正在使用一个我无法完全控制的后端,所以我正在努力解决 Backbone 中的一些注意事项,这些注意事项可能在其他地方更好地解决......不幸的是,我别无选择,只能在这里处理它们! 所以,我的
我一整天都在挣扎。我的预输入搜索表达式与远程 json 数据完美配合。但是当我尝试使用相同的 json 数据作为预取数据时,建议为空。点击第一个标志后,我收到预定义消息“无法找到任何内容...”,结果
我正在制作一个模拟 NHL 选秀彩票的程序,其中屏幕右侧应该有一个 JTextField,并且在左侧绘制弹跳的选秀球。我创建了一个名为 Ball 的类,它实现了 Runnable,并在我的主 Draf
这个问题已经有答案了: How can I calculate a time span in Java and format the output? (18 个回答) 已关闭 9 年前。 这是我的代码
我有一个 ASP.NET Web API 应用程序在我的本地 IIS 实例上运行。 Web 应用程序配置有 CORS。我调用的 Web API 方法类似于: [POST("/API/{foo}/{ba
我将用户输入的时间和日期作为: DatePicker dp = (DatePicker) findViewById(R.id.datePicker); TimePicker tp = (TimePic
放宽“邻居”的标准是否足够,或者是否有其他标准行动可以采取? 最佳答案 如果所有相邻解决方案都是 Tabu,则听起来您的 Tabu 列表的大小太长或您的释放策略太严格。一个好的 Tabu 列表长度是
我正在阅读来自 cppreference 的代码示例: #include #include #include #include template void print_queue(T& q)
我快疯了,我试图理解工具提示的行为,但没有成功。 1. 第一个问题是当我尝试通过插件(按钮 1)在点击事件中使用它时 -> 如果您转到 Fiddle,您会在“内容”内看到该函数' 每次点击都会调用该属
我在功能组件中有以下代码: const [ folder, setFolder ] = useState([]); const folderData = useContext(FolderContex
我在使用预签名网址和 AFNetworking 3.0 从 S3 获取图像时遇到问题。我可以使用 NSMutableURLRequest 和 NSURLSession 获取图像,但是当我使用 AFHT
我正在使用 Oracle ojdbc 12 和 Java 8 处理 Oracle UCP 管理器的问题。当 UCP 池启动失败时,我希望关闭它创建的连接。 当池初始化期间遇到 ORA-02391:超过
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 9 年前。 Improve
引用这个plunker: https://plnkr.co/edit/GWsbdDWVvBYNMqyxzlLY?p=preview 我在 styles.css 文件和 src/app.ts 文件中指定
为什么我的条形这么细?我尝试将宽度设置为 1,它们变得非常厚。我不知道还能尝试什么。默认厚度为 0.8,这是应该的样子吗? import matplotlib.pyplot as plt import
当我编写时,查询按预期执行: SELECT id, day2.count - day1.count AS diff FROM day1 NATURAL JOIN day2; 但我真正想要的是右连接。当
我有以下时间数据: 0 08/01/16 13:07:46,335437 1 18/02/16 08:40:40,565575 2 14/01/16 22:2
一些背景知识 -我的 NodeJS 服务器在端口 3001 上运行,我的 React 应用程序在端口 3000 上运行。我在 React 应用程序 package.json 中设置了一个代理来代理对端
我面临着一个愚蠢的问题。我试图在我的 Angular 应用程序中延迟加载我的图像,我已经尝试过这个2: 但是他们都设置了 src attr 而不是 data-src,我在这里遗漏了什么吗?保留 d
我是一名优秀的程序员,十分优秀!