use of com.yahoo.search.grouping.result.StringId in project vespa by vespa-engine.
the class JsonRendererTestCase method testGrouping.
@Test
public void testGrouping() throws InterruptedException, ExecutionException, IOException {
String expected = "{\n" + " \"root\": {\n" + " \"children\": [\n" + " {\n" + " \"children\": [\n" + " {\n" + " \"children\": [\n" + " {\n" + " \"fields\": {\n" + " \"count()\": 7\n" + " },\n" + " \"value\": \"Jones\",\n" + " \"id\": \"group:string:Jones\",\n" + " \"relevance\": 1.0\n" + " }\n" + " ],\n" + " \"continuation\": {\n" + " \"next\": \"CCCC\",\n" + " \"prev\": \"BBBB\"\n" + " },\n" + " \"id\": \"grouplist:customer\",\n" + " \"label\": \"customer\",\n" + " \"relevance\": 1.0\n" + " }\n" + " ],\n" + " \"continuation\": {\n" + " \"this\": \"AAAA\"\n" + " },\n" + " \"id\": \"group:root:0\",\n" + " \"relevance\": 1.0\n" + " }\n" + " ],\n" + " \"fields\": {\n" + " \"totalCount\": 1\n" + " },\n" + " \"id\": \"toplevel\",\n" + " \"relevance\": 1.0\n" + " }\n" + "}\n";
Result r = newEmptyResult();
RootGroup rg = new RootGroup(0, new Continuation() {
@Override
public String toString() {
return "AAAA";
}
});
GroupList gl = new GroupList("customer");
gl.continuations().put("prev", new Continuation() {
@Override
public String toString() {
return "BBBB";
}
});
gl.continuations().put("next", new Continuation() {
@Override
public String toString() {
return "CCCC";
}
});
Group g = new Group(new StringId("Jones"), new Relevance(1.0));
g.setField("count()", Integer.valueOf(7));
gl.add(g);
rg.add(gl);
r.hits().add(rg);
r.setTotalHitCount(1L);
String summary = render(r);
assertEqualJson(expected, summary);
}
use of com.yahoo.search.grouping.result.StringId in project vespa by vespa-engine.
the class UniqueGroupingSearcherTestCase method makeHitGroup.
private static Group makeHitGroup(String name) {
Group ein = new Group(new StringId(name), new Relevance(0));
HitList hits = new HitList(UniqueGroupingSearcher.LABEL_HITS);
hits.add(new Hit(name));
ein.add(hits);
return ein;
}
use of com.yahoo.search.grouping.result.StringId in project vespa by vespa-engine.
the class UniqueGroupingSearcherTestCase method makeSortingHitGroup.
private static Group makeSortingHitGroup(String name) {
Hit hit = new Hit(name);
HitList hits = new HitList(UniqueGroupingSearcher.LABEL_HITS);
hits.add(hit);
Group dedupGroup = new Group(new StringId(name), new Relevance(0));
dedupGroup.add(hits);
GroupList dedupedHits = new GroupList(UniqueGroupingSearcher.LABEL_GROUPS);
dedupedHits.add(dedupGroup);
Group ein = new Group(new StringId(name), new Relevance(0));
ein.add(dedupedHits);
return ein;
}
Aggregations