Skip to content

Commit

Permalink
mute Failing tests related to logging and joda-java migration(#38713)…
Browse files Browse the repository at this point in the history
… backport #38704

the tests awaits fix from #38693 and #38705 and #38581
  • Loading branch information
pgomulka authored Feb 11, 2019
1 parent f8a5687 commit c94d36e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ public void testNoStacktrace() throws IOException {
assertThat(jsonLogLine.stacktrace(), Matchers.nullValue());
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/38705")
public void testStacktraceWithJson() throws IOException {
LogManager.getLogger().info("asdf");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ public void testPreIndexCheckActive() throws Exception {
verifyZeroInteractions(parser);
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/38581")
public void testPreIndex() throws Exception {
when(operation.type()).thenReturn(Watch.DOC_TYPE);
when(operation.id()).thenReturn(randomAlphaOfLength(10));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@ public void testConfigureIndexInMapAndAction() {
fieldName + "] or [ctx.payload._doc." + fieldName + "]"));
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/38581")
public void testIndexActionExecuteSingleDoc() throws Exception {
boolean customId = randomBoolean();
boolean docIdAsParam = customId && randomBoolean();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ public void testPayloadInputWithDotsInFieldNameWorks() throws Exception {
}
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/38693")
public void testThatHistoryContainsStatus() throws Exception {
watcherClient().preparePutWatch("test_watch")
.setSource(watchBuilder()
Expand Down

0 comments on commit c94d36e

Please sign in to comment.