use of com.yahoo.feedapi.MessagePropertyProcessor in project vespa by vespa-engine.
the class GetSearcherTestCase method testQueryPassThroughAndGetUnknownBackendHit.
@Test
public void testQueryPassThroughAndGetUnknownBackendHit() throws Exception {
DocumentSessionFactory factory = new DocumentSessionFactory(docType);
GetSearcher searcher = new GetSearcher(new FeedContext(new MessagePropertyProcessor(defFeedCfg, defLoadTypeCfg), factory, docMan, new ClusterList(), new NullFeedMetric()));
HitGroup hits = new HitGroup("mock");
hits.add(new Hit("blernsball"));
Chain<Searcher> searchChain = new Chain<>(searcher, new MockBackend(hits));
Result result = new Execution(searchChain, Execution.Context.createContextStub()).search(newQuery("?flarn=blern&id=userdoc:kittens:9:aaa"));
assertEquals(0, factory.messages.size());
assertNotNull(result.hits().getErrorHit());
assertRendered("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + "<result>\n" + "<errors>\n" + "<error type=\"searcher\" code=\"18\" message=\"Internal server error.: " + "A backend searcher to com.yahoo.storage.searcher.GetSearcher returned a " + "hit that was not an instance of com.yahoo.storage.searcher.DocumentHit. " + "Only DocumentHit instances are supported in the backend hit result set " + "when doing queries that contain document identifier sets recognised by the " + "Get Searcher.\"/>\n" + "</errors>\n" + "</result>\n", result);
}
use of com.yahoo.feedapi.MessagePropertyProcessor in project vespa by vespa-engine.
the class GetSearcherTestCase method testMultiIdBadArrayIndex.
@Test
public void testMultiIdBadArrayIndex() 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[1]=userdoc:kittens:1:2"));
assertNotNull(result.hits().getErrorHit());
assertRendered("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + "<result>\n" + "<errors>\n" + "<error type=\"searcher\" code=\"3\" message=\"Illegal query: " + "java.lang.IllegalArgumentException: query contains document ID " + "array that is not zero-based and/or linearly increasing\"/>\n" + "</errors>\n" + "</result>\n", result);
}
{
Result result = new Execution(searchChain, Execution.Context.createContextStub()).search(newQuery("?id[0]=userdoc:kittens:1:2&id[2]=userdoc:kittens:2:3"));
assertNotNull(result.hits().getErrorHit());
assertRendered("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + "<result>\n" + "<errors>\n" + "<error type=\"searcher\" code=\"3\" message=\"Illegal query: " + "java.lang.IllegalArgumentException: query contains document ID " + "array that is not zero-based and/or linearly increasing\"/>\n" + "</errors>\n" + "</result>\n", result);
}
{
Result result = new Execution(searchChain, Execution.Context.createContextStub()).search(newQuery("?id[1]=userdoc:kittens:2:3"));
assertNotNull(result.hits().getErrorHit());
assertRendered("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + "<result>\n" + "<errors>\n" + "<error type=\"searcher\" code=\"3\" message=\"Illegal query: " + "java.lang.IllegalArgumentException: query contains document ID " + "array that is not zero-based and/or linearly increasing\"/>\n" + "</errors>\n" + "</result>\n", result);
}
{
Result result = new Execution(searchChain, Execution.Context.createContextStub()).search(newQuery("?id[0=userdoc:kittens:1:2"));
assertNotNull(result.hits().getErrorHit());
assertRendered("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + "<result>\n" + "<errors>\n" + "<error type=\"searcher\" code=\"3\" message=\"Illegal query: " + "java.lang.IllegalArgumentException: Malformed document ID array parameter\"/>\n" + "</errors>\n" + "</result>\n", result);
}
}
use of com.yahoo.feedapi.MessagePropertyProcessor in project vespa by vespa-engine.
the class GetSearcherTestCase method testQueryOverridesConfig.
@Test
public void testQueryOverridesConfig() throws Exception {
String config = "raw:timeout 458\nroute \"route66\"";
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=123"));
long lastTimeout = 123000;
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());
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.MessagePropertyProcessor in project vespa by vespa-engine.
the class GetSearcherTestCase method testLegacyHeadersOnly.
@Test
public void testLegacyHeadersOnly() 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&headersonly=true"));
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("[header]", gdm.getFieldSet());
}
assertEquals(1, result.hits().size());
assertHits(result.hits(), "userdoc:kittens:1:2");
}
use of com.yahoo.feedapi.MessagePropertyProcessor in project vespa by vespa-engine.
the class GetSearcherTestCase method testDocumentFieldWithMultipleIDs.
@Test
public void testDocumentFieldWithMultipleIDs() 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&field=name"));
assertNotNull(result.hits().getErrorHit());
assertRendered("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + "<result>\n" + "<errors>\n" + "<error type=\"searcher\" code=\"3\" message=\"Illegal query: " + "java.lang.IllegalArgumentException: Field only valid for single document id query\"/>\n" + "</errors>\n" + "</result>\n", result);
}
Aggregations