* Update gitignore * Move csproj * Update project references * Update solutions * Update build scripts * Tests used to share editorconfig with projects in src * Fix broken tests. * Stop copying around .editorconfig merged root one with linting * csharp_style_expression_bodied -> suggestion * Move StyleCop rulesets to matching directories and update shared build properties * Remove legacy build files, update NuGet.cofig and solution files * Restore myget source * Clean up .gitignore * Update .gitignore * Move new test classes to tests after merge * Gitignore + nuget config * Move new test Co-authored-by: Ronald Barendse <ronald@barend.se>
52 lines
1.3 KiB
C#
52 lines
1.3 KiB
C#
// Copyright (c) Umbraco.
|
|
// See LICENSE for more details.
|
|
|
|
using System.Xml;
|
|
using System.Xml.Linq;
|
|
using NUnit.Framework;
|
|
using Umbraco.Extensions;
|
|
|
|
namespace Umbraco.Cms.Tests.UnitTests.Umbraco.Core
|
|
{
|
|
[TestFixture]
|
|
public class XmlExtensionsTests
|
|
{
|
|
[Test]
|
|
public void XCDataToXmlNode()
|
|
{
|
|
var cdata = new XElement("test", new XCData("hello world"));
|
|
var xdoc = new XmlDocument();
|
|
|
|
XmlNode xmlNode = cdata.GetXmlNode(xdoc);
|
|
|
|
Assert.AreEqual("hello world", xmlNode.InnerText);
|
|
}
|
|
|
|
[Test]
|
|
public void XTextToXmlNode()
|
|
{
|
|
var cdata = new XElement("test", new XText("hello world"));
|
|
var xdoc = new XmlDocument();
|
|
|
|
XmlNode xmlNode = cdata.GetXmlNode(xdoc);
|
|
|
|
Assert.AreEqual("hello world", xmlNode.InnerText);
|
|
}
|
|
|
|
[Test]
|
|
public void ToXmlNodeIsNonDestructive()
|
|
{
|
|
const string xml = "<root><foo attr=\"123\">hello</foo><bar>world</bar></root>";
|
|
|
|
var cdata = new XElement("test", new XText("hello world"));
|
|
var xdoc = new XmlDocument();
|
|
xdoc.LoadXml(xml);
|
|
|
|
XmlNode xmlNode = cdata.GetXmlNode(xdoc);
|
|
|
|
Assert.AreEqual("hello world", xmlNode.InnerText);
|
|
Assert.AreEqual(xml, xdoc.OuterXml);
|
|
}
|
|
}
|
|
}
|