diff options
Diffstat (limited to 'test/org/traccar/helper/StringFinderTest.java')
-rw-r--r-- | test/org/traccar/helper/StringFinderTest.java | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/test/org/traccar/helper/StringFinderTest.java b/test/org/traccar/helper/StringFinderTest.java new file mode 100644 index 000000000..71f9215db --- /dev/null +++ b/test/org/traccar/helper/StringFinderTest.java @@ -0,0 +1,29 @@ +package org.traccar.helper; + +import org.jboss.netty.buffer.ChannelBuffer; +import org.jboss.netty.buffer.ChannelBufferFactory; +import org.jboss.netty.buffer.ChannelBuffers; +import org.jboss.netty.buffer.HeapChannelBufferFactory; +import org.junit.Assert; +import org.junit.Test; + +import java.nio.charset.Charset; + +import static org.junit.Assert.assertArrayEquals; +import static org.junit.Assert.assertEquals; + +public class StringFinderTest { + + @Test + public void testFind() { + + ChannelBuffer buf = ChannelBuffers.copiedBuffer("hello world", Charset.defaultCharset()); + + Assert.assertEquals(-1, buf.indexOf(0, buf.writerIndex(), new StringFinder("bar"))); + Assert.assertEquals(6, buf.indexOf(0, buf.writerIndex(), new StringFinder("world"))); + Assert.assertEquals(-1, buf.indexOf(0, buf.writerIndex(), new StringFinder("worlds"))); + Assert.assertEquals(0, buf.indexOf(0, buf.writerIndex(), new StringFinder("hell"))); + + } + +} |