view Xml/XmlToolsTests.cs @ 49:99e4c1949c92 default tip

* Update to v2.6 of NUnit and new syntax/API changes
author IBBoard <dev@ibboard.co.uk>
date Sun, 28 Apr 2013 19:32:14 +0100
parents f6fd30d3b817
children
line wrap: on
line source

// This file (XmlToolsTests.cs) is a part of the IBBoard.Tests project and is copyright 2009 IBBoard
// 
//  The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license.

using System;
using System.Xml;
using NUnit.Framework;

namespace IBBoard.Xml
{
	[TestFixture()]
	public class XmlToolsTests
	{
		private enum TestEnum
		{
			ALPHA
		}
		
		[Test()]
		public void TestParsingOfValidEnumString ()
		{
			XmlElement elem = GetElement("ALPHA");
			Assert.AreEqual(TestEnum.ALPHA, XmlTools.GetEnumValueFromAttribute<TestEnum>(elem, "enum"));
		}

		static XmlElement GetElement(string enumValue)
		{
			XmlDocument doc = new XmlDocument();
			XmlElement elem = doc.CreateElement ("sample");
			XmlAttribute attrib = doc.CreateAttribute ("enum");
			attrib.Value = enumValue;
			elem.Attributes.Append (attrib);
			return elem;
		}
		
		[Test()]
		public void TestParsingOfValidEnumStringWithDifferentCase ()
		{
			XmlElement elem = GetElement("ALPHA");
			Assert.AreEqual(TestEnum.ALPHA, XmlTools.GetEnumValueFromAttribute<TestEnum>(elem, "enum"));
		}
		
		[Test()]
		[ExpectedException(typeof(FormatException), ExpectedMessage="Attribute 'enum' with value Omega for sample with ID '' was not a valid TestEnum enum")]
		public void TestParsingValidEnumStringWithInvalidValueThrowsException ()
		{
			XmlElement elem = GetElement("Omega");
			XmlTools.GetEnumValueFromAttribute<TestEnum>(elem, "enum");
		}
		
		[Test()]
		[ExpectedException(typeof(FormatException), ExpectedMessage="Attribute 'enum' with value Alpha for sample with ID '' was not a valid TestEnum enum")]
		public void TestCaseSensitiveParsingOfValidValueInInvalidCaseThrowsException ()
		{
			XmlElement elem = GetElement("Alpha");
			XmlTools.GetEnumValueFromAttribute<TestEnum>(elem, "enum", false);
		}
	}
}