aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/test/java/com/yahoo/text/internal/SnippetGeneratorTest.java
blob: 54c5a37f23c8185cf0739d62e9116bd55b8fa855 (plain) (blame)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.text.internal;

import org.junit.Test;

import static org.junit.Assert.assertEquals;

/**
 * @author hakon
 */
public class SnippetGeneratorTest {
    private final SnippetGenerator generator = new SnippetGenerator();

    private void assertSnippet(String text, int sizeHint, String expectedSnippet) {
        assertEquals(expectedSnippet, generator.makeSnippet(text, sizeHint));
    }

    @Test
    public void prefixSnippetForReallySmallSizeHint() {
        assertSnippet(
                "This is a long text that should be snippeted", 0,
                "[...44 chars omitted]");

        assertSnippet(
                "This is a long text that should be snippeted", 1,
                "[...44 chars omitted]");
    }

    @Test
    public void snippet() {
        assertSnippet(
                "This is a long text that should be snippeted", 23,
                "[...44 chars omitted]");

        assertSnippet(
                "This is a long text that should be snippeted", 24,
                "T[...43 chars omitted]");

        assertSnippet(
                "This is a long text that should be snippeted", 30,
                "This[...37 chars omitted]ted");

    }

    @Test
    public void noShorteningNeeded() {
        assertSnippet(
                "This is a long text that should be snippeted", 39,
                "This is [...28 chars omitted]nippeted");

        assertSnippet(
                "This is a long text that should be snippeted", 40,
                "This is a long text that should be snippeted");

        assertSnippet(
                "This is a long text that should be snippeted", 50,
                "This is a long text that should be snippeted");
    }
}