public virtual void TestCharSequenceInterface() { const string s = "0123456789"; CharTermAttribute t = new CharTermAttribute(); t.Append(s); Assert.AreEqual(s.Length, t.Length); Assert.AreEqual("12", t.SubSequence(1, 3).ToString()); Assert.AreEqual(s, t.SubSequence(0, s.Length).ToString()); Assert.IsTrue(Regex.IsMatch(t.ToString(), "01\\d+")); Assert.IsTrue(Regex.IsMatch(t.SubSequence(3, 5).ToString(), "34")); Assert.AreEqual(s.Substring(3, 4), t.SubSequence(3, 7).ToString()); for (int i = 0; i < s.Length; i++) { Assert.IsTrue(t.CharAt(i) == s[i]); } // LUCENENET specific to test indexer for (int i = 0; i < s.Length; i++) { Assert.IsTrue(t[i] == s[i]); } }
public virtual void TestAttributeReflection() { CharTermAttribute t = new CharTermAttribute(); t.Append("foobar"); TestUtil.AssertAttributeReflection(t, new Dictionary <string, object>() { { typeof(ICharTermAttribute).Name + "#term", "foobar" }, { typeof(ITermToBytesRefAttribute).Name + "#bytes", new BytesRef("foobar") } }); }
public virtual void TestExceptions() { CharTermAttribute t = new CharTermAttribute(); t.Append("test"); Assert.AreEqual("test", t.ToString()); try { t.CharAt(-1); Assert.Fail("Should throw IndexOutOfBoundsException"); } catch (System.IndexOutOfRangeException) { } try { t.CharAt(4); Assert.Fail("Should throw IndexOutOfBoundsException"); } catch (System.IndexOutOfRangeException) { } try { t.SubSequence(0, 5); Assert.Fail("Should throw IndexOutOfBoundsException"); } catch (System.IndexOutOfRangeException) { } try { t.SubSequence(5, 0); Assert.Fail("Should throw IndexOutOfBoundsException"); } catch (System.IndexOutOfRangeException) { } }
public virtual void TestNonCharSequenceAppend() { CharTermAttribute t = new CharTermAttribute(); t.Append("0123456789"); t.Append("0123456789"); Assert.AreEqual("01234567890123456789", t.ToString()); t.Append(new StringBuilder("0123456789")); Assert.AreEqual("012345678901234567890123456789", t.ToString()); ICharTermAttribute t2 = new CharTermAttribute(); t2.Append("test"); t.Append(t2); Assert.AreEqual("012345678901234567890123456789test", t.ToString()); t.Append((string)null); t.Append((StringBuilder)null); t.Append((ICharTermAttribute)null); Assert.AreEqual("012345678901234567890123456789testnullnullnull", t.ToString()); }
public virtual void TestCharSequenceInterface() { const string s = "0123456789"; CharTermAttribute t = new CharTermAttribute(); t.Append(s); Assert.AreEqual(s.Length, t.Length); Assert.AreEqual("12", t.SubSequence(1, 3).ToString()); Assert.AreEqual(s, t.SubSequence(0, s.Length).ToString()); //Assert.IsTrue(Pattern.matches("01\\d+", t)); //Assert.IsTrue(Pattern.matches("34", t.SubSequence(3, 5))); Assert.AreEqual(s.Substring(3, 4), t.SubSequence(3, 7).ToString()); for (int i = 0; i < s.Length; i++) { Assert.IsTrue(t.CharAt(i) == s[i]); } }
public virtual void TestAppendableInterfaceWithLongSequences() { CharTermAttribute t = new CharTermAttribute(); t.Append("01234567890123456789012345678901234567890123456789"); // LUCENENET specific overload that accepts string assertEquals("01234567890123456789012345678901234567890123456789", t.ToString()); t.Append("01234567890123456789012345678901234567890123456789", 3, 50); // LUCENENET specific overload that accepts string, start, end Assert.AreEqual("0123456789012345678901234567890123456789012345678934567890123456789012345678901234567890123456789", t.ToString()); t.SetEmpty(); t.Append("01234567890123456789012345678901234567890123456789".ToCharArray()); // LUCENENET specific overload that accepts char[] assertEquals("01234567890123456789012345678901234567890123456789", t.ToString()); t.Append("01234567890123456789012345678901234567890123456789".ToCharArray(), 3, 50); // LUCENENET specific overload that accepts char[], start, end Assert.AreEqual("0123456789012345678901234567890123456789012345678934567890123456789012345678901234567890123456789", t.ToString()); t.SetEmpty(); t.Append(new StringCharSequenceWrapper("01234567890123456789012345678901234567890123456789")); //t.Append((ICharSequence) CharBuffer.wrap("01234567890123456789012345678901234567890123456789".ToCharArray()), 3, 50); // LUCENENET: No CharBuffer in .NET t.Append("01234567890123456789012345678901234567890123456789".ToCharArray(), 3, 50); // LUCENENET specific overload that accepts char[], start, end // "01234567890123456789012345678901234567890123456789" Assert.AreEqual("0123456789012345678901234567890123456789012345678934567890123456789012345678901234567890123456789", t.ToString()); t.SetEmpty().Append(/*(ICharSequence)*/ new StringBuilder("01234567890123456789"), 5, 17); // LUCENENET: StringBuilder doesn't implement ICharSequence Assert.AreEqual(new StringCharSequenceWrapper("567890123456"), t.ToString()); t.Append(new StringBuilder(t.ToString())); Assert.AreEqual(new StringCharSequenceWrapper("567890123456567890123456"), t.ToString()); // very wierd, to test if a subSlice is wrapped correct :) //CharBuffer buf = CharBuffer.wrap("012345678901234567890123456789".ToCharArray(), 3, 15); // LUCENENET: No CharBuffer in .NET StringBuilder buf = new StringBuilder("012345678901234567890123456789", 3, 15, 16); Assert.AreEqual("345678901234567", buf.ToString()); t.SetEmpty().Append(buf, 1, 14); Assert.AreEqual("4567890123456", t.ToString()); // finally use a completely custom ICharSequence that is not catched by instanceof checks const string longTestString = "012345678901234567890123456789"; t.Append(new CharSequenceAnonymousInnerClassHelper(this, longTestString)); Assert.AreEqual("4567890123456" + longTestString, t.ToString()); }
public virtual void TestAppendableInterface() { CharTermAttribute t = new CharTermAttribute(); //Formatter formatter = new Formatter(t, Locale.ROOT); //formatter.format("%d", 1234); //Assert.AreEqual("1234", t.ToString()); //formatter.format("%d", 5678); // LUCENENET: We don't have a formatter in .NET, so continue from here t.Append("12345678"); // LUCENENET specific overload that accepts string Assert.AreEqual("12345678", t.ToString()); t.SetEmpty().Append("12345678".ToCharArray()); // LUCENENET specific overload that accepts char[] Assert.AreEqual("12345678", t.ToString()); t.Append('9'); Assert.AreEqual("123456789", t.ToString()); t.Append(new StringCharSequenceWrapper("0")); Assert.AreEqual("1234567890", t.ToString()); t.Append(new StringCharSequenceWrapper("0123456789"), 1, 3); Assert.AreEqual("123456789012", t.ToString()); //t.Append((ICharSequence) CharBuffer.wrap("0123456789".ToCharArray()), 3, 5); t.Append("0123456789".ToCharArray(), 3, 5); // LUCENENET: no CharBuffer in .NET, so we test char[], start, end overload Assert.AreEqual("12345678901234", t.ToString()); t.Append((ICharSequence)t); Assert.AreEqual("1234567890123412345678901234", t.ToString()); t.Append(/*(ICharSequence)*/ new StringBuilder("0123456789").ToString(), 5, 7); // LUCENENET: StringBuilder doesn't implement ICharSequence Assert.AreEqual("123456789012341234567890123456", t.ToString()); t.Append(/*(ICharSequence)*/ new StringBuilder(t.ToString())); Assert.AreEqual("123456789012341234567890123456123456789012341234567890123456", t.ToString()); // LUCENENET: StringBuilder doesn't implement ICharSequence // very wierd, to test if a subSlice is wrapped correct :) //CharBuffer buf = CharBuffer.wrap("0123456789".ToCharArray(), 3, 5); // LUCENENET: No CharBuffer in .NET StringBuilder buf = new StringBuilder("0123456789", 3, 5, 16); Assert.AreEqual("34567", buf.ToString()); t.SetEmpty().Append(/*(ICharSequence)*/ buf, 1, 2); // LUCENENET: StringBuilder doesn't implement ICharSequence Assert.AreEqual("4", t.ToString()); ICharTermAttribute t2 = new CharTermAttribute(); t2.Append("test"); t.Append((ICharSequence)t2); Assert.AreEqual("4test", t.ToString()); t.Append((ICharSequence)t2, 1, 2); Assert.AreEqual("4teste", t.ToString()); try { t.Append((ICharSequence)t2, 1, 5); Assert.Fail("Should throw ArgumentOutOfRangeException"); } catch (System.IndexOutOfRangeException iobe) { } try { t.Append((ICharSequence)t2, 1, 0); Assert.Fail("Should throw ArgumentOutOfRangeException"); } catch (System.IndexOutOfRangeException iobe) { } t.Append((ICharSequence)null); Assert.AreEqual("4testenull", t.ToString()); // LUCENENET specific - test string overloads try { t.Append((string)t2.ToString(), 1, 5); Assert.Fail("Should throw IndexOutOfBoundsException"); } catch (System.IndexOutOfRangeException iobe) { } try { t.Append((string)t2.ToString(), 1, 0); Assert.Fail("Should throw IndexOutOfBoundsException"); } catch (System.IndexOutOfRangeException iobe) { } t.Append((string)null); Assert.AreEqual("4testenullnull", t.ToString()); // LUCENENET specific - test char[] overloads try { t.Append((char[])t2.ToString().ToCharArray(), 1, 5); Assert.Fail("Should throw IndexOutOfBoundsException"); } catch (System.IndexOutOfRangeException iobe) { } try { t.Append((char[])t2.ToString().ToCharArray(), 1, 0); Assert.Fail("Should throw IndexOutOfBoundsException"); } catch (System.IndexOutOfRangeException iobe) { } t.Append((char[])null); Assert.AreEqual("4testenullnullnull", t.ToString()); }
public virtual void TestAttributeReflection() { CharTermAttribute t = new CharTermAttribute(); t.Append("foobar"); TestUtil.AssertAttributeReflection(t, new Dictionary<string, object>() { { typeof(ICharTermAttribute).Name + "#term", "foobar" }, { typeof(ITermToBytesRefAttribute).Name + "#bytes", new BytesRef("foobar") } }); }