#region CPL License /* Nuclex Framework Copyright (C) 2002-2014 Nuclex Development Labs This library is free software; you can redistribute it and/or modify it under the terms of the IBM Common Public License as published by the IBM Corporation; either version 1.0 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the IBM Common Public License for more details. You should have received a copy of the IBM Common Public License along with this library */ #endregion using System; using System.Collections.Generic; using System.Text; #if UNITTEST using NUnit.Framework; namespace Nuclex.Support.Parsing { /// Verifies that the parser helper methods are correct [TestFixture] internal class ParserHelperTest { /// Ensures that the SkipSpaces() method can handle null strings [Test] public void CanSkipSpacesInNullString() { int index = 0; Assert.DoesNotThrow( delegate() { ParserHelper.SkipSpaces((string)null, ref index); } ); Assert.AreEqual(0, index); } /// Ensures that the SkipSpaces() method can handle empty strings [Test] public void CanSkipSpacesInEmptyString() { int index = 0; Assert.DoesNotThrow( delegate() { ParserHelper.SkipSpaces(string.Empty, ref index); } ); Assert.AreEqual(0, index); } /// Ensures that the SkipSpaces() method can skip spaces [Test] public void SpacesCanBeSkipped() { int index = 7; ParserHelper.SkipSpaces(" Test Test ", ref index); Assert.AreEqual(10, index); } /// Ensures that the SkipNonSpaces() method can handle null strings [Test] public void CanSkipNonSpacesInNullString() { int index = 0; Assert.DoesNotThrow( delegate() { ParserHelper.SkipNonSpaces((string)null, ref index); } ); Assert.AreEqual(0, index); } /// Ensures that the SkipNonSpaces() method can handle empty strings [Test] public void CanSkipNonSpacesInEmptyString() { int index = 0; Assert.DoesNotThrow( delegate() { ParserHelper.SkipNonSpaces(string.Empty, ref index); } ); Assert.AreEqual(0, index); } /// Ensures that the SkipNonSpaces() method can skip non-space characters [Test] public void NonSpacesCanBeSkipped() { int index = 7; ParserHelper.SkipNonSpaces("Test Test Test", ref index); Assert.AreEqual(11, index); } /// Ensures that the SkipNumbers() method can handle null strings [Test] public void CanSkipNumbersInNullString() { int index = 0; Assert.DoesNotThrow( delegate() { ParserHelper.SkipNumbers((string)null, ref index); } ); Assert.AreEqual(0, index); } /// Ensures that the SkipNumbers() method can handle empty strings [Test] public void CanSkipNumbersInEmptyString() { int index = 0; Assert.DoesNotThrow( delegate() { ParserHelper.SkipNumbers(string.Empty, ref index); } ); Assert.AreEqual(0, index); } /// Ensures that the SkipNumbers() method can skip numbers [Test] public void NumbersCanBeSkipped() { int index = 6; ParserHelper.SkipNumbers("123abc456def789", ref index); Assert.AreEqual(9, index); } /// Ensures that the SkipIntegers() method can handle null strings [Test] public void CanSkipIntegersInNullString() { int index = 0; Assert.IsFalse(ParserHelper.SkipInteger((string)null, ref index)); Assert.AreEqual(0, index); } /// Ensures that the SkipNumbers() method can handle empty strings [Test] public void CanSkipIntegersInEmptyString() { int index = 0; Assert.IsFalse(ParserHelper.SkipInteger(string.Empty, ref index)); Assert.AreEqual(0, index); } /// Verifies that a prefix alone can not be skipped as an integer [Test] public void PrefixAloneIsNotAnInteger() { int index = 0; Assert.IsFalse(ParserHelper.SkipInteger("+Test", ref index)); Assert.AreEqual(0, index); Assert.IsFalse(ParserHelper.SkipInteger("-", ref index)); Assert.AreEqual(0, index); } /// Verifies that a prefixed integer can be skipped [Test] public void PrefixedIntegersCanBeSkipped() { int index = 0; Assert.IsTrue(ParserHelper.SkipInteger("+123", ref index)); Assert.AreEqual(4, index); } /// Verifies that an integer without a prefix can be skipped [Test] public void PlainIntegersCanBeSkipped() { int index = 0; Assert.IsTrue(ParserHelper.SkipInteger("12345", ref index)); Assert.AreEqual(5, index); } /// /// Verifies that trying to skip text as if it was an integer skips nothing /// [Test] public void SkippingTextAsIntegerReturnsFalse() { int index = 0; Assert.IsFalse(ParserHelper.SkipInteger("hello", ref index)); Assert.AreEqual(0, index); } /// Ensures that the SkipIntegers() method can handle null strings [Test] public void CanSkipStringInNullString() { int index = 0; Assert.IsFalse(ParserHelper.SkipString((string)null, ref index)); Assert.AreEqual(0, index); } /// Ensures that the SkipNumbers() method can handle empty strings [Test] public void CanSkipStringInEmptyString() { int index = 0; Assert.IsFalse(ParserHelper.SkipString(string.Empty, ref index)); Assert.AreEqual(0, index); } /// Verifies that a string consisting of a single word can be skipped [Test] public void SingleWordStringsCanBeSkipped() { int index = 0; Assert.IsTrue(ParserHelper.SkipString("hello", ref index)); Assert.AreEqual(5, index); } /// /// Verifies that a space character is not skipped over when skipping a string /// [Test] public void SpaceTerminatesUnquotedStrings() { int index = 0; Assert.IsTrue(ParserHelper.SkipString("hello world", ref index)); Assert.AreEqual(5, index); } /// Verifies that a string in quotes continues until the closing quote [Test] public void QuotedStringsCanBeSkipped() { int index = 0; Assert.IsTrue(ParserHelper.SkipString("\"This is a test\"", ref index)); Assert.AreEqual(16, index); } /// Verifies that a string in quotes continues until the closing quote [Test] public void QuotedStringsStopAtClosingQuote() { int index = 0; Assert.IsTrue(ParserHelper.SkipString("\"This is a test\" but this not.", ref index)); Assert.AreEqual(16, index); } /// Verifies that a string in quotes continues until the closing quote [Test] public void QuotedStringRequiresClosingQuote() { int index = 0; Assert.IsFalse(ParserHelper.SkipString("\"This is missing the closing quote", ref index)); Assert.AreEqual(0, index); } } } // namespace Nuclex.Support.Parsing #endif // UNITTEST