aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/helper/StringFinderTest.java
blob: 1c8234db127189d17b5a0a51230ba82df6d62e86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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 java.nio.charset.StandardCharsets;

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", StandardCharsets.US_ASCII);

        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")));

    }

}