Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add base class for writing unit test for aggregations #22279

Merged
merged 1 commit into from
Dec 21, 2016

Conversation

martijnvg
Copy link
Member

Also adds some initial tests for some aggregations.

First PR for #22278.

@martijnvg martijnvg added review >test Issues or PRs that are addressing/adding tests v5.2.0 v6.0.0-alpha1 labels Dec 20, 2016
* Base class for testing {@link Aggregator} implementations.
* Provides a helper constructing the {@link Aggregator} implementation based on a provided {@link AggregationBuilder} instance.
*/
public abstract class AggregratorTestCase extends ESTestCase {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Aggregator

@jpountz jpountz changed the title Add base class for writing unit test for aggragations Add base class for writing unit test for aggregations Dec 20, 2016
Copy link
Contributor

@jpountz jpountz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I left some comments, but +1 to start from there.

when(searchContext.getQueryShardContext()).thenReturn(queryShardContext);

@SuppressWarnings("unchecked")
A aggregator = (A) aggregatorBuilder.build(searchContext, null).create(null, true);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think the generics on this method are buying anything since we do a blind cast here?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The reason I did the cast here is that we don't have to do the cast in all tests that need an aggregator.

aggregator.postCollection();
InternalMin result = (InternalMin) aggregator.buildAggregation(0L);
assertEquals(-1.0, result.getValue(), 0);
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you also test what happens when no docs match the query?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

or when some docs match the query but do not have a value

*/
public abstract class AggregatorTestCase extends ESTestCase {

protected <A extends Aggregator, B extends AggregationBuilder> A createAggregator(B aggregatorBuilder,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you call it aggregationBuilder rather than aggregatorBuilder to be more consistent with the class name?

Copy link
Contributor

@jpountz jpountz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks like a good start! Thanks for working on that!

@martijnvg martijnvg merged commit 417746c into elastic:master Dec 21, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
>test Issues or PRs that are addressing/adding tests v5.2.0 v6.0.0-alpha1
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants