use of com.yahoo.feedapi.FeedContext in project vespa by vespa-engine.
the class GetSearcherTestCase method testQueryOverridesDefaults.
@Test
public void testQueryOverridesDefaults() throws Exception {
DocumentSessionFactory factory = new DocumentSessionFactory(docType);
GetSearcher searcher = new GetSearcher(new FeedContext(new MessagePropertyProcessor(defFeedCfg, defLoadTypeCfg), factory, docMan, new ClusterList(), new NullFeedMetric()));
Chain<Searcher> searchChain = new Chain<>(searcher);
Result result = new Execution(searchChain, Execution.Context.createContextStub()).search(newQuery("?id[0]=userdoc:kittens:1:2&id[1]=userdoc:kittens:3:4&priority=LOW_2&route=highwaytohell&timeout=58"));
assertEquals(2, factory.messages.size());
long lastTimeout = 58000;
{
Message m = factory.messages.get(0);
assertEquals(DocumentProtocol.MESSAGE_GETDOCUMENT, m.getType());
GetDocumentMessage gdm = (GetDocumentMessage) m;
DocumentId d = gdm.getDocumentId();
assertEquals("userdoc:kittens:1:2", d.toString());
assertEquals("[all]", gdm.getFieldSet());
assertEquals(DocumentProtocol.Priority.LOW_2, gdm.getPriority());
assertEquals(Route.parse("highwaytohell"), gdm.getRoute());
assertTrue(lastTimeout >= gdm.getTimeRemaining());
lastTimeout = gdm.getTimeRemaining();
}
{
Message m = factory.messages.get(1);
assertEquals(DocumentProtocol.MESSAGE_GETDOCUMENT, m.getType());
GetDocumentMessage gdm = (GetDocumentMessage) m;
DocumentId d = gdm.getDocumentId();
assertEquals("userdoc:kittens:3:4", d.toString());
assertEquals("[all]", gdm.getFieldSet());
assertEquals(DocumentProtocol.Priority.LOW_2, gdm.getPriority());
assertEquals(Route.parse("highwaytohell"), gdm.getRoute());
assertTrue(lastTimeout >= gdm.getTimeRemaining());
}
}
use of com.yahoo.feedapi.FeedContext in project vespa by vespa-engine.
the class GetSearcherTestCase method testGetSingleDocumentQuery.
@Test
public void testGetSingleDocumentQuery() throws Exception {
// Needs auto-reply
DocumentSessionFactory factory = new DocumentSessionFactory(docType);
GetSearcher searcher = new GetSearcher(new FeedContext(new MessagePropertyProcessor(defFeedCfg, defLoadTypeCfg), factory, docMan, new ClusterList(), new NullFeedMetric()));
Chain<Searcher> searchChain = new Chain<>(searcher);
Result result = new Execution(searchChain, Execution.Context.createContextStub()).search(newQuery("?id=userdoc:kittens:1:2"));
System.out.println("HTTP request is " + result.getQuery().getHttpRequest());
assertEquals(1, factory.messages.size());
{
Message m = factory.messages.get(0);
assertEquals(DocumentProtocol.MESSAGE_GETDOCUMENT, m.getType());
GetDocumentMessage gdm = (GetDocumentMessage) m;
DocumentId d = gdm.getDocumentId();
assertEquals("userdoc:kittens:1:2", d.toString());
assertEquals("[all]", gdm.getFieldSet());
}
assertEquals(1, result.hits().size());
assertHits(result.hits(), "userdoc:kittens:1:2");
// By default, document hit should not have its hit fields set
DocumentHit hit = (DocumentHit) result.hits().get(0);
assertEquals(0, hit.fieldKeys().size());
}
use of com.yahoo.feedapi.FeedContext in project vespa by vespa-engine.
the class GetSearcherTestCase method testDocumentFieldWithDocumentNotFound.
@Test
public void testDocumentFieldWithDocumentNotFound() throws Exception {
DocumentSessionFactory factory = new DocumentSessionFactory(docType, null, true);
factory.setNullReply(true);
GetSearcher searcher = new GetSearcher(new FeedContext(new MessagePropertyProcessor(defFeedCfg, defLoadTypeCfg), factory, docMan, new ClusterList(), new NullFeedMetric()));
Chain<Searcher> searchChain = new Chain<>(searcher);
Result result = new Execution(searchChain, Execution.Context.createContextStub()).search(newQuery("?id=userdoc:kittens:1:2&field=name"));
assertNotNull(result.hits().getErrorHit());
assertRendered("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + "<result>\n" + "<errors>\n" + "<error type=\"searcher\" code=\"16\" message=\"Resource not found.: " + "Document not found, could not return field 'name'\"/>\n" + "</errors>\n" + "</result>\n", result);
}
use of com.yahoo.feedapi.FeedContext in project vespa by vespa-engine.
the class GetSearcherTestCase method testGetMultipleDocumentsQuery.
@Test
public void testGetMultipleDocumentsQuery() throws Exception {
DocumentSessionFactory factory = new DocumentSessionFactory(docType);
GetSearcher searcher = new GetSearcher(new FeedContext(new MessagePropertyProcessor(defFeedCfg, defLoadTypeCfg), factory, docMan, new ClusterList(), new NullFeedMetric()));
Chain<Searcher> searchChain = new Chain<>(searcher);
Query query = newQuery("?id[0]=userdoc:kittens:1:2&id[1]=userdoc:kittens:3:4");
Result result = new Execution(searchChain, Execution.Context.createContextStub()).search(query);
assertEquals(2, factory.messages.size());
{
Message m = factory.messages.get(0);
assertEquals(DocumentProtocol.MESSAGE_GETDOCUMENT, m.getType());
GetDocumentMessage gdm = (GetDocumentMessage) m;
DocumentId d = gdm.getDocumentId();
assertEquals("userdoc:kittens:1:2", d.toString());
assertEquals("[all]", gdm.getFieldSet());
}
{
Message m = factory.messages.get(1);
assertEquals(DocumentProtocol.MESSAGE_GETDOCUMENT, m.getType());
GetDocumentMessage gdm = (GetDocumentMessage) m;
DocumentId d = gdm.getDocumentId();
assertEquals("userdoc:kittens:3:4", d.toString());
assertEquals("[all]", gdm.getFieldSet());
}
assertEquals(2, result.hits().size());
assertNull(result.hits().getErrorHit());
assertHits(result.hits(), "userdoc:kittens:1:2", "userdoc:kittens:3:4");
assertEquals(2, query.getHits());
}
use of com.yahoo.feedapi.FeedContext in project vespa by vespa-engine.
the class GetSearcherTestCase method createSearcherChain.
private Chain<Searcher> createSearcherChain(GetDocumentReply[] replies) throws Exception {
DocumentSessionFactory factory = new DocumentSessionFactory(docType, null, false, replies);
GetSearcher searcher = new GetSearcher(new FeedContext(new MessagePropertyProcessor(defFeedCfg, defLoadTypeCfg), factory, docMan, new ClusterList(), new NullFeedMetric()));
return new Chain<>(searcher);
}
Aggregations