Skip to content

Commit

Permalink
Disable some composite tests
Browse files Browse the repository at this point in the history
They have started failing about 0.3% of the time each. And there are a
couple dozen of them so yay.

Relates to elastic#77650 and probably elastic#76740
  • Loading branch information
nik9000 committed Sep 13, 2021
1 parent 5efb244 commit 4ec48a0
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -732,6 +732,7 @@ public void testSubAggregationOfNestedAggregateAfter() throws Exception {
);
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/77650")
public void testWithKeywordAndMissingBucket() throws Exception {
final List<Map<String, List<Object>>> dataset = new ArrayList<>();
dataset.addAll(
Expand Down Expand Up @@ -811,6 +812,7 @@ public void testWithKeywordAndMissingBucket() throws Exception {
});
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/77650")
public void testWithKeywordMissingAfter() throws Exception {
final List<Map<String, List<Object>>> dataset = new ArrayList<>();
dataset.addAll(
Expand Down Expand Up @@ -872,6 +874,7 @@ public void testWithKeywordMissingAfter() throws Exception {
});
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/77650")
public void testWithKeywordDesc() throws Exception {
final List<Map<String, List<Object>>> dataset = new ArrayList<>();
dataset.addAll(
Expand Down Expand Up @@ -961,6 +964,7 @@ public void testMultiValuedWithKeyword() throws Exception {
});
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/77650")
public void testMultiValuedWithKeywordDesc() throws Exception {
final List<Map<String, List<Object>>> dataset = new ArrayList<>();
dataset.addAll(
Expand Down Expand Up @@ -1083,6 +1087,7 @@ public void testWithKeywordAndLong() throws Exception {
);
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/77650")
public void testWithKeywordAndLongDesc() throws Exception {
final List<Map<String, List<Object>>> dataset = new ArrayList<>();
dataset.addAll(
Expand Down Expand Up @@ -1143,6 +1148,7 @@ public void testWithKeywordAndLongDesc() throws Exception {
);
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/77650")
public void testWithKeywordLongAndMissingBucket() throws Exception {
final List<Map<String, List<Object>>> dataset = new ArrayList<>();
dataset.addAll(
Expand Down Expand Up @@ -1285,6 +1291,7 @@ public void testWithKeywordLongAndMissingBucket() throws Exception {
);
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/77650")
public void testMissingTermBucket() throws Exception {
List<Map<String, List<Object>>> dataset = Arrays.asList(
createDocument("const", 1, "keyword", "a"),
Expand Down Expand Up @@ -1313,6 +1320,7 @@ public void testMissingTermBucket() throws Exception {
);
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/77650")
public void testMissingHistogramBucket() throws Exception {
List<Map<String, List<Object>>> dataset = Arrays.asList(
createDocument("const", 1, "long", 1),
Expand Down Expand Up @@ -1616,6 +1624,7 @@ public void testMultiValuedWithKeywordAndLong() throws Exception {
);
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/77650")
public void testMultiValuedWithKeywordAndLongDesc() throws Exception {
final List<Map<String, List<Object>>> dataset = new ArrayList<>();
dataset.addAll(
Expand Down

0 comments on commit 4ec48a0

Please sign in to comment.