From 8c8de0a774b09e75a690ebe8805b1c7f089cf169 Mon Sep 17 00:00:00 2001 From: David Turner Date: Mon, 26 Mar 2018 10:57:34 +0100 Subject: [PATCH] Mute failing IndexerUtilsTests Awaiting a fix of elastic/x-pack-elasticsearch#4223 Original commit: elastic/x-pack-elasticsearch@d3850997192da698039503e4884caab99a3725dd --- .../org/elasticsearch/xpack/rollup/job/IndexerUtilsTests.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugin/rollup/src/test/java/org/elasticsearch/xpack/rollup/job/IndexerUtilsTests.java b/plugin/rollup/src/test/java/org/elasticsearch/xpack/rollup/job/IndexerUtilsTests.java index 12d5c4223be..53012de17d0 100644 --- a/plugin/rollup/src/test/java/org/elasticsearch/xpack/rollup/job/IndexerUtilsTests.java +++ b/plugin/rollup/src/test/java/org/elasticsearch/xpack/rollup/job/IndexerUtilsTests.java @@ -55,6 +55,7 @@ import static org.hamcrest.Matchers.equalTo; import static org.mockito.Mockito.when; public class IndexerUtilsTests extends AggregatorTestCase { + @AwaitsFix(bugUrl = "https://github.com/elastic/x-pack-elasticsearch/issues/4223") public void testMissingFields() throws IOException { String indexName = randomAlphaOfLengthBetween(1, 10); RollupJobStats stats = new RollupJobStats(0, 0, 0, 0); @@ -122,6 +123,7 @@ public class IndexerUtilsTests extends AggregatorTestCase { } } + @AwaitsFix(bugUrl = "https://github.com/elastic/x-pack-elasticsearch/issues/4223") public void testCorrectFields() throws IOException { String indexName = randomAlphaOfLengthBetween(1, 10); RollupJobStats stats= new RollupJobStats(0, 0, 0, 0); @@ -196,6 +198,7 @@ public class IndexerUtilsTests extends AggregatorTestCase { } } + @AwaitsFix(bugUrl = "https://github.com/elastic/x-pack-elasticsearch/issues/4223") public void testNumericTerms() throws IOException { String indexName = randomAlphaOfLengthBetween(1, 10); RollupJobStats stats= new RollupJobStats(0, 0, 0, 0); @@ -259,6 +262,7 @@ public class IndexerUtilsTests extends AggregatorTestCase { } } + @AwaitsFix(bugUrl = "https://github.com/elastic/x-pack-elasticsearch/issues/4223") public void testEmptyCounts() throws IOException { String indexName = randomAlphaOfLengthBetween(1, 10); RollupJobStats stats= new RollupJobStats(0, 0, 0, 0);