Search in sources :

Example 1 with FederationSearcherModel

use of com.yahoo.search.searchchain.model.federation.FederationSearcherModel in project vespa by vespa-engine.

the class DomFederationSearcherBuilderTest method ensureCorrectModel.

@Test
public void ensureCorrectModel() {
    FederationSearcher searcher = new DomFederationSearcherBuilder().doBuild(root, parse("<federation id='theId'>", "    <provides>p2</provides>", "    <source-set inherits=\"default\" />", "    <source id='source1'>", "        <federationoptions optional='true' />", "    </source>", "    <source id='source2' />", "</federation>"));
    FederationSearcherModel model = searcher.model;
    assertEquals("theId", model.bundleInstantiationSpec.id.stringValue());
    assertEquals(com.yahoo.search.federation.FederationSearcher.class.getName(), model.bundleInstantiationSpec.classId.stringValue());
    assertEquals(2, model.targets.size());
    assertTrue("source-set option was ignored", model.inheritDefaultSources);
    assertThat(targetNames(model.targets), hasItems("source1", "source2"));
}
Also used : FederationSearcher(com.yahoo.vespa.model.container.search.searchchain.FederationSearcher) FederationSearcherModel(com.yahoo.search.searchchain.model.federation.FederationSearcherModel) Test(org.junit.Test) DomBuilderTest(com.yahoo.config.model.builder.xml.test.DomBuilderTest)

Example 2 with FederationSearcherModel

use of com.yahoo.search.searchchain.model.federation.FederationSearcherModel in project vespa by vespa-engine.

the class DomFederationSearcherBuilder method doBuild.

protected FederationSearcher doBuild(AbstractConfigProducer ancestor, Element searcherElement) {
    FederationSearcherModel model = new FederationSearcherModelBuilder(searcherElement).build();
    Optional<Component> targetSelector = buildTargetSelector(ancestor, searcherElement, model.getComponentId());
    return new FederationSearcher(model, targetSelector);
}
Also used : FederationSearcher(com.yahoo.vespa.model.container.search.searchchain.FederationSearcher) Component(com.yahoo.vespa.model.container.component.Component) FederationSearcherModel(com.yahoo.search.searchchain.model.federation.FederationSearcherModel)

Aggregations

FederationSearcherModel (com.yahoo.search.searchchain.model.federation.FederationSearcherModel)2 FederationSearcher (com.yahoo.vespa.model.container.search.searchchain.FederationSearcher)2 DomBuilderTest (com.yahoo.config.model.builder.xml.test.DomBuilderTest)1 Component (com.yahoo.vespa.model.container.component.Component)1 Test (org.junit.Test)1