1

我有以下代码

 this.SafeUpdate(rate, Guid.Parse(import.myGuid), c => c.myGuid);

SafeUpdate 基本上采用解析后的 guid 值并将其应用于 rate 对象的 myGuid 属性。这在我的前端工作正常,但在单元测试中运行时会抛出“检测到 CLR ...”错误。奇怪的是 DateTime.Parse 和 int.Parse 的相同语句工作正常。它只是失败了 Guid 和小数。我不相信错误与解析有关(当提取到单独的变量中时它具有正确的解析值)。我也不认为这是嘲弄,因为该语句适用于除 guid 和小数以外的所有其他类型。有任何想法吗?

4

1 回答 1

2

我们昨天在构建服务器上遇到了类似的错误。我们的异常是由 DataContractSerializer 的 ReadObject() 方法引发的。

System.InvalidProgramException: Common Language Runtime detected an invalid program.
 at System.Xml.EncodingStreamWrapper..ctor(Stream stream, Encoding encoding)
 at System.Xml.XmlUTF8TextReader.SetInput(Stream stream, Encoding encoding, XmlDictionaryReaderQuotas quotas, OnXmlDictionaryReaderClose onClose)
 at System.Xml.XmlDictionaryReader.CreateTextReader(Stream stream, Encoding encoding, XmlDictionaryReaderQuotas quotas, OnXmlDictionaryReaderClose onClose)
 at System.Xml.XmlDictionaryReader.CreateTextReader(Stream stream, XmlDictionaryReaderQuotas quotas)
 at System.Runtime.Serialization.XmlObjectSerializer.ReadObject(Stream stream) 

我们编写了一个控制台应用程序,它只做这件事。它运行没有错误,但在简单的单元测试中失败。我们将 Gallio/MbUnit 3.4.11.0 用于我们的测试框架,目标是 .net 4.0。

using System;
using System.IO;
using System.Runtime.Serialization;
using MbUnit.Framework;

namespace TestApp
{
    [TestFixture]
    class Program
    {
        static void Main()
        {
            FooBar();
            Console.ReadKey();
        }

        public static void FooBar()
        {
            var type = typeof(string);
            var foo = "foo";

            using (var stream = new MemoryStream())
            {
                var serializer = new DataContractSerializer(type);
                serializer.WriteObject(stream, foo);
                stream.Seek(0, SeekOrigin.Begin);
                var deserializer = new DataContractSerializer(type);
                var bar = deserializer.ReadObject(stream);
                Console.WriteLine(bar);
            }
        }

        [Test]
        public void Test()
        {
            FooBar();
        }
    }
}

应用程序运行良好,但测试失败。奇怪的是,这个测试通过了我的开发箱,但在我们的构建服务器以及同事的开发箱上失败了。显然,我的开发盒有一些不同之处可以让测试通过,但我还没有找到那个不同之处。

更新 1 我的开发盒上 System.dll 的版本是 4.0.30319.296,但在构建服务器和我同事的开发盒上是 4.0.30319.1001。然而,System.Xml.dll 和 System.Runtime.Serialization.dll 在 4.0.30319.1 中是相同的。

更新 2 在 Google 上快速搜索“4.0.30319.1001”会返回此安全更新,http://support.microsoft.com/kb/2742595,它适用于我们的构建服务器和我同事的开发盒,但不是我的开发箱。我卸载了构建服务器上的更新,重新启动,问题就消失了!我猜微软还没有对此进行单元测试。:-)

于 2013-01-18T18:27:59.873 回答