aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/searchdefinition/SummaryTestCase.java
blob: 6fa716d9b764488e21bfa67eca226e059f124918 (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
package com.yahoo.searchdefinition;

import com.yahoo.config.application.api.DeployLogger;
import com.yahoo.searchdefinition.parser.ParseException;
import com.yahoo.vespa.model.test.utils.DeployLoggerStub;
import org.junit.Test;

import java.io.IOException;
import java.util.logging.Level;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

/**
 * Tests summary validation
 *
 * @author bratseth
 */
public class SummaryTestCase {

    @Test
    public void testMemorySummary() throws IOException, ParseException {
        DeployLoggerStub logger = new DeployLoggerStub();
        SearchBuilder.createFromFile("src/test/examples/memorysummary.sd", logger);
        assertTrue(logger.entries.isEmpty());
    }

    @Test
    public void testDiskSummary() throws IOException, ParseException {
        DeployLoggerStub logger = new DeployLoggerStub();
        SearchBuilder.createFromFile("src/test/examples/disksummary.sd", logger);
        assertEquals(1, logger.entries.size());
        assertEquals(Level.FINE, logger.entries.get(0).level);
        assertEquals("summary field 'ondisk' in document summary 'default' references source field 'ondisk', " +
                     "which is not an attribute: Using this summary will cause disk accesses. " +
                     "Set 'from-disk' on this summary class to silence this warning.",
                     logger.entries.get(0).message);
    }

    @Test
    public void testDiskSummaryExplicit() throws IOException, ParseException {
        DeployLoggerStub logger = new DeployLoggerStub();
        SearchBuilder.createFromFile("src/test/examples/disksummaryexplicit.sd", logger);
        assertTrue(logger.entries.isEmpty());
    }

}