1

次のコードでマップを単体テストしようとしていますが、

protected string Map(TransformBase map, string xml)
        {
            StringWriter str = new StringWriter();
            XmlTextWriter writer = new XmlTextWriter(str);

            map.Transform.Transform(new XPathDocument(new StringReader(xml)), new XsltArgumentList(), writer);

            return str.ToString();
        }

そして、次のように呼び出されます。

[Test]
        public void Map_Test()
        {
            var result = Map(new TestMap(),File.ReadAllText(_dataDir.GetFiles("TestRequest.xml")[0].FullName));
            Assert.IsTrue(result.Contains("4323432"));
        }

これはほとんどのマップで正常に機能しますが、外部アセンブリの関数を使用すると機能せず、エラーで失敗します

Result Message: System.Xml.Xsl.XslTransformException : Cannot find a script or an extension object associated with namespace 'http://schemas.microsoft.com/BizTalk/2003/ScriptNS0'.

Result StackTrace:  
at System.Xml.Xsl.Runtime.XmlQueryContext.InvokeXsltLateBoundFunction(String name, String namespaceUri, IList`1[] args)
at <xsl:template match="/workOrderRequest">(XmlQueryRuntime {urn:schemas-microsoft-com:xslt-debug}runtime, XPathNavigator {urn:schemas-microsoft-com:xslt-debug}current)
at <xsl:template match="/">(XmlQueryRuntime {urn:schemas-microsoft-com:xslt-debug}runtime, XPathNavigator {urn:schemas-microsoft-com:xslt-debug}current)
at Root(XmlQueryRuntime {urn:schemas-microsoft-com:xslt-debug}runtime)
at Execute(XmlQueryRuntime {urn:schemas-microsoft-com:xslt-debug}runtime)
at System.Xml.Xsl.XmlILCommand.Execute(Object defaultDocument, XmlResolver dataSources, XsltArgumentList argumentList, XmlSequenceWriter results)
at System.Xml.Xsl.XmlILCommand.Execute(Object defaultDocument, XmlResolver dataSources, XsltArgumentList argumentList, XmlWriter writer)
at System.Xml.Xsl.XslCompiledTransform.Transform(XmlReader input, XsltArgumentList arguments, XmlWriter results)
4

2 に答える 2

3

最後に、次のコード (BT 2013 R2) でこれを行うことができました。メソッドMapは実際のマッピングを行い、結果の xml を返します。

パラメーター、

map -> new object of the map type instance
xml -> source xml content
extObjects -> *_extxml.xml file content generated when executing validate instance on the map

コード

        protected string Map(TransformBase map, string xml, string extObjects = null)
        {
            string result = string.Empty;
            XslCompiledTransform transform = new XslCompiledTransform();
            XsltSettings setting = new XsltSettings(false, true);
            transform.Load(XmlReader.Create(new StringReader(map.XmlContent)), setting, new XmlUrlResolver());

            using (StringWriter writer = new StringWriter())
            {
                transform.Transform(XmlReader.Create(new StringReader(xml)),
                GetExtensionObjects(extObjects), XmlWriter.Create(writer));
                result = writer.ToString();
            }

            return result;
        }

        protected XsltArgumentList GetExtensionObjects(string extObjects)
        {
            XsltArgumentList arguments = new XsltArgumentList();
            if (extObjects == null)
                return arguments;

            XDocument extObjectsXDoc = XDocument.Parse(extObjects);
            foreach (XElement node in extObjectsXDoc.Descendants("ExtensionObject"))
            {
                string assembly_qualified_name = String.Format("{0}, {1}", node.Attribute("ClassName").Value, node.Attribute("AssemblyName").Value);
                object extension_object = Activator.CreateInstance(Type.GetType(assembly_qualified_name));
                arguments.AddExtensionObject(node.Attribute("Namespace").Value, extension_object);
            }
            return arguments;
        }

使用例

    [Test]
    public void Map_Test()
    {
        var result = Map(new A_To_B()
            , File.ReadAllText("A.xml")
            , File.ReadAllText("A_To_B_extxml.xml"));
        Assert.IsNotNullOrEmpty(result);
    }
于 2015-01-29T03:46:28.187 に答える