Adds the OffsetAttribute#startOffset() and OffsetAttribute#endOffset() First 4 bytes are the start
Inheritance: TokenFilter
        public virtual void Test()
        {
            string test = "The quick red fox jumped over the lazy brown dogs";

            TokenOffsetPayloadTokenFilter nptf = new TokenOffsetPayloadTokenFilter(new MockTokenizer(new StringReader(test), MockTokenizer.WHITESPACE, false));
            int count = 0;
            IPayloadAttribute payloadAtt = nptf.GetAttribute<IPayloadAttribute>();
            IOffsetAttribute offsetAtt = nptf.GetAttribute<IOffsetAttribute>();
            nptf.Reset();
            while (nptf.IncrementToken())
            {
                BytesRef pay = payloadAtt.Payload;
                assertTrue("pay is null and it shouldn't be", pay != null);
                byte[] data = pay.Bytes;
                int start = PayloadHelper.DecodeInt(data, 0);
                assertTrue(start + " does not equal: " + offsetAtt.StartOffset(), start == offsetAtt.StartOffset());
                int end = PayloadHelper.DecodeInt(data, 4);
                assertTrue(end + " does not equal: " + offsetAtt.EndOffset(), end == offsetAtt.EndOffset());
                count++;
            }
            assertTrue(count + " does not equal: " + 10, count == 10);
        }
        public void Test()
        {
            String test = "The quick red fox jumped over the lazy brown dogs";

            TokenOffsetPayloadTokenFilter nptf = new TokenOffsetPayloadTokenFilter(new WhitespaceTokenizer(new StringReader(test)));
            int count = 0;
            IPayloadAttribute payloadAtt = nptf.GetAttribute<IPayloadAttribute>();
            IOffsetAttribute offsetAtt = nptf.GetAttribute<IOffsetAttribute>();

            while (nptf.IncrementToken())
            {
                Payload pay = payloadAtt.Payload;
                Assert.True(pay != null, "pay is null and it shouldn't be");
                byte[] data = pay.GetData();
                int start = PayloadHelper.DecodeInt(data, 0);
                Assert.True(start == offsetAtt.StartOffset, start + " does not equal: " + offsetAtt.StartOffset);
                int end = PayloadHelper.DecodeInt(data, 4);
                Assert.True(end == offsetAtt.EndOffset, end + " does not equal: " + offsetAtt.EndOffset);
                count++;
            }
            Assert.True(count == 10, count + " does not equal: " + 10);
        }
Exemple #3
0
        public virtual void Test()
        {
            string test = "The quick red fox jumped over the lazy brown dogs";

            TokenOffsetPayloadTokenFilter nptf = new TokenOffsetPayloadTokenFilter(new MockTokenizer(new StringReader(test), MockTokenizer.WHITESPACE, false));
            int count = 0;
            IPayloadAttribute payloadAtt = nptf.GetAttribute <IPayloadAttribute>();
            IOffsetAttribute  offsetAtt  = nptf.GetAttribute <IOffsetAttribute>();

            nptf.Reset();
            while (nptf.IncrementToken())
            {
                BytesRef pay = payloadAtt.Payload;
                assertTrue("pay is null and it shouldn't be", pay != null);
                byte[] data  = pay.Bytes;
                int    start = PayloadHelper.DecodeInt32(data, 0);
                assertTrue(start + " does not equal: " + offsetAtt.StartOffset, start == offsetAtt.StartOffset);
                int end = PayloadHelper.DecodeInt32(data, 4);
                assertTrue(end + " does not equal: " + offsetAtt.EndOffset, end == offsetAtt.EndOffset);
                count++;
            }
            assertTrue(count + " does not equal: " + 10, count == 10);
        }