use of com.enonic.xp.aggregation.Bucket in project xp by enonic.
the class StatsAggregationTest method terms_stats_aggregation.
@Test
public void terms_stats_aggregation() throws Exception {
createNode("c1", 2.0, "n1", NodePath.ROOT);
createNode("c1", 4.0, "n2", NodePath.ROOT);
createNode("c1", 6.0, "n3", NodePath.ROOT);
createNode("c1", 8.0, "n4", NodePath.ROOT);
createNode("c2", 2.0, "n5", NodePath.ROOT);
createNode("c2", 4.0, "n6", NodePath.ROOT);
createNode("c3", 2.0, "n7", NodePath.ROOT);
final NodeQuery query = NodeQuery.create().addAggregationQuery(TermsAggregationQuery.create("category").fieldName("category").orderDirection(TermsAggregationQuery.Direction.ASC).orderType(TermsAggregationQuery.Type.TERM).addSubQuery(StatsAggregationQuery.create("subquery").fieldName("other").build()).build()).build();
FindNodesByQueryResult result = doFindByQuery(query);
assertEquals(1, result.getAggregations().getSize());
final Aggregation agg = result.getAggregations().get("category");
assertTrue(agg instanceof BucketAggregation);
final BucketAggregation categoryAgg = (BucketAggregation) agg;
final Iterator<Bucket> bucketIterator = categoryAgg.getBuckets().iterator();
verifyStatsAggregation(bucketIterator.next(), "c1", 2d, 8d, 5d, 20d, 4d);
verifyStatsAggregation(bucketIterator.next(), "c2", 2d, 4d, 3d, 6d, 2d);
verifyStatsAggregation(bucketIterator.next(), "c3", 2d, 2d, 2d, 2d, 1d);
}
use of com.enonic.xp.aggregation.Bucket in project xp by enonic.
the class TermsAggregationsTest method size.
@Test
public void size() throws Exception {
create_c1_c2_c3_with_2_3_1_category_hits();
final NodeQuery query = NodeQuery.create().addAggregationQuery(TermsAggregationQuery.create("category").fieldName("category").orderDirection(TermsAggregationQuery.Direction.DESC).orderType(TermsAggregationQuery.Type.DOC_COUNT).size(2).build()).build();
FindNodesByQueryResult result = doFindByQuery(query);
assertEquals(1, result.getAggregations().getSize());
final Aggregation agg = result.getAggregations().get("category");
assertTrue(agg instanceof BucketAggregation);
final BucketAggregation categoryAgg = (BucketAggregation) agg;
assertEquals(2, categoryAgg.getBuckets().getSize());
final Iterator<Bucket> iterator = categoryAgg.getBuckets().iterator();
Bucket next = iterator.next();
assertEquals("c2", next.getKey());
assertEquals(3, next.getDocCount());
next = iterator.next();
assertEquals("c1", next.getKey());
assertEquals(2, next.getDocCount());
}
use of com.enonic.xp.aggregation.Bucket in project xp by enonic.
the class TermsAggregationsTest method order_by_term.
@Test
public void order_by_term() throws Exception {
create_c1_c2_c3_with_2_3_1_category_hits();
final NodeQuery query = NodeQuery.create().addAggregationQuery(TermsAggregationQuery.create("category").fieldName("category").orderDirection(TermsAggregationQuery.Direction.ASC).orderType(TermsAggregationQuery.Type.TERM).build()).build();
FindNodesByQueryResult result = doFindByQuery(query);
assertEquals(1, result.getAggregations().getSize());
final Aggregation agg = result.getAggregations().get("category");
assertTrue(agg instanceof BucketAggregation);
final BucketAggregation categoryAgg = (BucketAggregation) agg;
assertEquals(3, categoryAgg.getBuckets().getSize());
final Iterator<Bucket> iterator = categoryAgg.getBuckets().iterator();
Bucket next = iterator.next();
assertEquals("c1", next.getKey());
assertEquals(2, next.getDocCount());
next = iterator.next();
assertEquals("c2", next.getKey());
assertEquals(3, next.getDocCount());
next = iterator.next();
assertEquals("c3", next.getKey());
assertEquals(1, next.getDocCount());
}
use of com.enonic.xp.aggregation.Bucket in project xp by enonic.
the class AggregationMapper method serializeBuckets.
private static void serializeBuckets(final MapGenerator gen, final Buckets value) {
gen.array("buckets");
for (Bucket bucket : value) {
serializeBucket(gen, bucket);
}
gen.end();
}
use of com.enonic.xp.aggregation.Bucket in project xp by enonic.
the class AggregationMapper method serializeBuckets.
private static void serializeBuckets(final MapGenerator gen, final Buckets value) {
gen.array("buckets");
for (Bucket bucket : value) {
serializeBucket(gen, bucket);
}
gen.end();
}
Aggregations