Skip to content

Commit 5d837fa

Browse files
committed
[ML Data Frame] Mute Data Frame tests
Relates to elastic#42344
1 parent f95071d commit 5d837fa

File tree

8 files changed

+15
-0
lines changed

8 files changed

+15
-0
lines changed

x-pack/plugin/data-frame/qa/multi-node-tests/src/test/java/org/elasticsearch/xpack/dataframe/integration/DataFrameTransformIT.java

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ public void cleanTransforms() throws IOException {
3030
cleanUp();
3131
}
3232

33+
@AwaitsFix( bugUrl = "https://github.com/elastic/elasticsearch/issues/42344")
3334
public void testDataFrameTransformCrud() throws Exception {
3435
createReviewsIndex();
3536

x-pack/plugin/data-frame/qa/single-node-tests/src/test/java/org/elasticsearch/xpack/dataframe/integration/DataFrameAuditorIT.java

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
package org.elasticsearch.xpack.dataframe.integration;
88

9+
import org.apache.lucene.util.LuceneTestCase;
910
import org.elasticsearch.client.Request;
1011
import org.elasticsearch.xpack.dataframe.persistence.DataFrameInternalIndex;
1112
import org.junit.Before;
@@ -22,6 +23,7 @@
2223
import static org.hamcrest.Matchers.empty;
2324
import static org.hamcrest.Matchers.is;
2425

26+
@LuceneTestCase.AwaitsFix( bugUrl = "https://github.com/elastic/elasticsearch/issues/42344")
2527
public class DataFrameAuditorIT extends DataFrameRestTestCase {
2628

2729
private static final String TEST_USER_NAME = "df_admin_plus_data";

x-pack/plugin/data-frame/qa/single-node-tests/src/test/java/org/elasticsearch/xpack/dataframe/integration/DataFrameConfigurationIndexIT.java

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
import org.apache.http.entity.ContentType;
1010
import org.apache.http.entity.StringEntity;
11+
import org.apache.lucene.util.LuceneTestCase;
1112
import org.elasticsearch.client.Request;
1213
import org.elasticsearch.client.Response;
1314
import org.elasticsearch.client.ResponseException;
@@ -22,6 +23,7 @@
2223

2324
import static org.elasticsearch.common.xcontent.XContentFactory.jsonBuilder;
2425

26+
@LuceneTestCase.AwaitsFix( bugUrl = "https://github.com/elastic/elasticsearch/issues/42344")
2527
public class DataFrameConfigurationIndexIT extends DataFrameRestTestCase {
2628

2729
/**

x-pack/plugin/data-frame/qa/single-node-tests/src/test/java/org/elasticsearch/xpack/dataframe/integration/DataFrameGetAndGetStatsIT.java

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
package org.elasticsearch.xpack.dataframe.integration;
88

9+
import org.apache.lucene.util.LuceneTestCase;
910
import org.elasticsearch.client.Request;
1011
import org.elasticsearch.common.xcontent.support.XContentMapValues;
1112
import org.elasticsearch.xpack.core.dataframe.DataFrameField;
@@ -21,6 +22,7 @@
2122
import static org.hamcrest.Matchers.equalTo;
2223
import static org.hamcrest.Matchers.greaterThan;
2324

25+
@LuceneTestCase.AwaitsFix( bugUrl = "https://github.com/elastic/elasticsearch/issues/42344")
2426
public class DataFrameGetAndGetStatsIT extends DataFrameRestTestCase {
2527

2628
private static final String TEST_USER_NAME = "df_user";

x-pack/plugin/data-frame/qa/single-node-tests/src/test/java/org/elasticsearch/xpack/dataframe/integration/DataFrameMetaDataIT.java

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
package org.elasticsearch.xpack.dataframe.integration;
88

9+
import org.apache.lucene.util.LuceneTestCase;
910
import org.elasticsearch.Version;
1011
import org.elasticsearch.client.Request;
1112
import org.elasticsearch.client.Response;
@@ -15,6 +16,7 @@
1516
import java.io.IOException;
1617
import java.util.Map;
1718

19+
@LuceneTestCase.AwaitsFix( bugUrl = "https://github.com/elastic/elasticsearch/issues/42344")
1820
public class DataFrameMetaDataIT extends DataFrameRestTestCase {
1921

2022
private boolean indicesCreated = false;

x-pack/plugin/data-frame/qa/single-node-tests/src/test/java/org/elasticsearch/xpack/dataframe/integration/DataFramePivotRestIT.java

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
package org.elasticsearch.xpack.dataframe.integration;
88

9+
import org.apache.lucene.util.LuceneTestCase;
910
import org.elasticsearch.client.Request;
1011
import org.elasticsearch.common.xcontent.support.XContentMapValues;
1112
import org.junit.Before;
@@ -21,6 +22,7 @@
2122
import static org.hamcrest.Matchers.containsString;
2223
import static org.hamcrest.Matchers.equalTo;
2324

25+
@LuceneTestCase.AwaitsFix( bugUrl = "https://github.com/elastic/elasticsearch/issues/42344")
2426
public class DataFramePivotRestIT extends DataFrameRestTestCase {
2527

2628
private static final String TEST_USER_NAME = "df_admin_plus_data";

x-pack/plugin/data-frame/qa/single-node-tests/src/test/java/org/elasticsearch/xpack/dataframe/integration/DataFrameTaskFailedStateIT.java

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
package org.elasticsearch.xpack.dataframe.integration;
88

9+
import org.apache.lucene.util.LuceneTestCase;
910
import org.elasticsearch.client.ResponseException;
1011
import org.elasticsearch.common.xcontent.support.XContentMapValues;
1112
import org.elasticsearch.rest.RestStatus;
@@ -19,6 +20,7 @@
1920
import static org.hamcrest.CoreMatchers.nullValue;
2021
import static org.hamcrest.Matchers.equalTo;
2122

23+
@LuceneTestCase.AwaitsFix( bugUrl = "https://github.com/elastic/elasticsearch/issues/42344")
2224
public class DataFrameTaskFailedStateIT extends DataFrameRestTestCase {
2325

2426
public void testDummy() {

x-pack/plugin/data-frame/qa/single-node-tests/src/test/java/org/elasticsearch/xpack/dataframe/integration/DataFrameUsageIT.java

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
package org.elasticsearch.xpack.dataframe.integration;
88

9+
import org.apache.lucene.util.LuceneTestCase;
910
import org.elasticsearch.client.Request;
1011
import org.elasticsearch.client.Response;
1112
import org.elasticsearch.common.xcontent.support.XContentMapValues;
@@ -22,6 +23,7 @@
2223
import static org.elasticsearch.xpack.core.dataframe.DataFrameField.INDEX_DOC_TYPE;
2324
import static org.elasticsearch.xpack.dataframe.DataFrameFeatureSet.PROVIDED_STATS;
2425

26+
@LuceneTestCase.AwaitsFix( bugUrl = "https://github.com/elastic/elasticsearch/issues/42344")
2527
public class DataFrameUsageIT extends DataFrameRestTestCase {
2628
private boolean indicesCreated = false;
2729

0 commit comments

Comments
 (0)