aboutsummaryrefslogtreecommitdiffstats
path: root/sample-apps/basic-search/src/test/java/com/mydomain/example/ExampleSearcherTest.java
blob: e562cf1173aa7c9d58f6adc70f571b925c6a0d57 (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
package com.yahoo.example;

import com.yahoo.application.Application;
import com.yahoo.application.Networking;
import com.yahoo.application.container.Search;
import com.yahoo.component.ComponentSpecification;
import com.yahoo.search.Query;
import com.yahoo.search.Result;
import com.yahoo.search.result.Hit;
import org.junit.Test;

import java.nio.file.Paths;

import static org.hamcrest.core.Is.is;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertThat;

/**
 * @author Joe Developer
 */
public class ExampleSearcherTest {
    @Test
    public void hit_is_added() throws Exception {
        try (Application app = Application.fromApplicationPackage(
                Paths.get("src/test/application"),
                Networking.disable))
        {
            Search search = app.getJDisc("jdisc").search();
            Result result = search.process(ComponentSpecification.fromString("default"), new Query("?query=ignored"));

            Hit hit = result.hits().get(ExampleSearcher.hitId);
            assertNotNull("Hit was not added by ExampleSearcher", hit);

            Object messageFromConfig = "Hello, Vespa!";
            assertThat(hit.getField("message"), is(messageFromConfig));
        }
    }
}