// // MonoTests.System.Text.RegularExpressions misc. test cases // // Authors: // Gonzalo Paniagua Javier (gonzalo@ximian.com) // // (c) 2003 Novell, Inc. (http://www.novell.com) // using NUnit.Framework; using System; using System.Text.RegularExpressions; namespace MonoTests.System.Text.RegularExpressions { [TestFixture] public class RegexBugs : Assertion { [Test] public void SplitGroup () // bug51146 { string [] splitResult = new Regex ("-").Split ("a-bcd-e-fg"); string [] expected = new string [] {"a", "bcd", "e", "fg"}; int length = expected.Length; int i; AssertEquals ("#01", length, splitResult.Length); for (i = 0; i < length; i++) AssertEquals ("#02 " + i, expected [i], splitResult [i]); splitResult = new Regex ("(-)").Split ("a-bcd-e-fg"); expected = new string [] {"a", "-", "bcd", "-", "e", "-", "fg"}; length = expected.Length; AssertEquals ("#03", length, splitResult.Length); for (i = 0; i < length; i++) AssertEquals ("#04 " + i, expected [i], splitResult [i]); splitResult = new Regex ("(-)b(c)").Split ("a-bcd-e-fg"); expected = new string [] {"a", "-", "c", "d-e-fg" }; length = expected.Length; AssertEquals ("#04", length, splitResult.Length); for (i = 0; i < length; i++) AssertEquals ("#05 " + i, expected [i], splitResult [i]); } [Test] public void MathEmptyGroup () // bug 42529 { string str = "Match something from here."; AssertEquals ("MEG #01", false, Regex.IsMatch(str, @"(something|dog)$")); AssertEquals ("MEG #02", true, Regex.IsMatch(str, @"(|something|dog)$")); AssertEquals ("MEG #03", true, Regex.IsMatch(str, @"(something||dog)$")); AssertEquals ("MEG #04", true, Regex.IsMatch(str, @"(something|dog|)$")); AssertEquals ("MEG #05", true, Regex.IsMatch(str, @"(something|dog)*")); AssertEquals ("MEG #06", true, Regex.IsMatch(str, @"(|something|dog)*")); AssertEquals ("MEG #07", true, Regex.IsMatch(str, @"(something||dog)*")); AssertEquals ("MEG #08", true, Regex.IsMatch(str, @"(something|dog|)*")); AssertEquals ("MEG #09", true, Regex.IsMatch(str, @"(something|dog)*$")); AssertEquals ("MEG #10", true, Regex.IsMatch(str, @"(|something|dog)*$")); AssertEquals ("MEG #11", true, Regex.IsMatch(str, @"(something||dog)*$")); AssertEquals ("MEG #12", true, Regex.IsMatch(str, @"(something|dog|)*$")); } } }