Merge pull request elastic/elasticsearch#1023 from rmuir/bad_apples
Mark sleeping tests from elastic/elasticsearch#1007 @BadApple Original commit: elastic/x-pack-elasticsearch@e16c54b050
This commit is contained in:
commit
b529e4da6f
|
@ -5,6 +5,7 @@
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.marvel.agent.collector.cluster;
|
package org.elasticsearch.marvel.agent.collector.cluster;
|
||||||
|
|
||||||
|
import org.apache.lucene.util.LuceneTestCase.BadApple;
|
||||||
import org.elasticsearch.cluster.ClusterName;
|
import org.elasticsearch.cluster.ClusterName;
|
||||||
import org.elasticsearch.cluster.ClusterService;
|
import org.elasticsearch.cluster.ClusterService;
|
||||||
import org.elasticsearch.common.settings.Settings;
|
import org.elasticsearch.common.settings.Settings;
|
||||||
|
@ -22,6 +23,8 @@ import static org.hamcrest.Matchers.hasSize;
|
||||||
import static org.hamcrest.Matchers.instanceOf;
|
import static org.hamcrest.Matchers.instanceOf;
|
||||||
import static org.hamcrest.Matchers.notNullValue;
|
import static org.hamcrest.Matchers.notNullValue;
|
||||||
|
|
||||||
|
//test is just too slow, please fix it to not be sleep-based
|
||||||
|
@BadApple(bugUrl = "https://github.com/elastic/x-plugins/issues/1007")
|
||||||
public class ClusterInfoCollectorTests extends AbstractCollectorTestCase {
|
public class ClusterInfoCollectorTests extends AbstractCollectorTestCase {
|
||||||
public void testClusterInfoCollector() throws Exception {
|
public void testClusterInfoCollector() throws Exception {
|
||||||
Collection<MarvelDoc> results = newClusterInfoCollector().doCollect();
|
Collection<MarvelDoc> results = newClusterInfoCollector().doCollect();
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.marvel.agent.collector.cluster;
|
package org.elasticsearch.marvel.agent.collector.cluster;
|
||||||
|
|
||||||
|
import org.apache.lucene.util.LuceneTestCase.BadApple;
|
||||||
import org.elasticsearch.cluster.ClusterService;
|
import org.elasticsearch.cluster.ClusterService;
|
||||||
import org.elasticsearch.common.settings.Settings;
|
import org.elasticsearch.common.settings.Settings;
|
||||||
import org.elasticsearch.marvel.agent.collector.AbstractCollectorTestCase;
|
import org.elasticsearch.marvel.agent.collector.AbstractCollectorTestCase;
|
||||||
|
@ -19,6 +20,8 @@ import static org.hamcrest.Matchers.greaterThan;
|
||||||
import static org.hamcrest.Matchers.hasSize;
|
import static org.hamcrest.Matchers.hasSize;
|
||||||
import static org.hamcrest.Matchers.instanceOf;
|
import static org.hamcrest.Matchers.instanceOf;
|
||||||
|
|
||||||
|
//test is just too slow, please fix it to not be sleep-based
|
||||||
|
@BadApple(bugUrl = "https://github.com/elastic/x-plugins/issues/1007")
|
||||||
public class ClusterStatsCollectorTests extends AbstractCollectorTestCase {
|
public class ClusterStatsCollectorTests extends AbstractCollectorTestCase {
|
||||||
public void testClusterStatsCollector() throws Exception {
|
public void testClusterStatsCollector() throws Exception {
|
||||||
Collection<MarvelDoc> results = newClusterStatsCollector().doCollect();
|
Collection<MarvelDoc> results = newClusterStatsCollector().doCollect();
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.marvel.agent.renderer.cluster;
|
package org.elasticsearch.marvel.agent.renderer.cluster;
|
||||||
|
|
||||||
|
import org.apache.lucene.util.LuceneTestCase.BadApple;
|
||||||
import org.elasticsearch.action.search.SearchResponse;
|
import org.elasticsearch.action.search.SearchResponse;
|
||||||
import org.elasticsearch.cluster.node.DiscoveryNodes;
|
import org.elasticsearch.cluster.node.DiscoveryNodes;
|
||||||
import org.elasticsearch.common.settings.Settings;
|
import org.elasticsearch.common.settings.Settings;
|
||||||
|
@ -27,6 +28,8 @@ import static org.hamcrest.Matchers.greaterThan;
|
||||||
import static org.hamcrest.Matchers.greaterThanOrEqualTo;
|
import static org.hamcrest.Matchers.greaterThanOrEqualTo;
|
||||||
import static org.hamcrest.core.Is.is;
|
import static org.hamcrest.core.Is.is;
|
||||||
|
|
||||||
|
//test is just too slow, please fix it to not be sleep-based
|
||||||
|
@BadApple(bugUrl = "https://github.com/elastic/x-plugins/issues/1007")
|
||||||
@ClusterScope(scope = Scope.TEST)
|
@ClusterScope(scope = Scope.TEST)
|
||||||
public class ClusterStateTests extends MarvelIntegTestCase {
|
public class ClusterStateTests extends MarvelIntegTestCase {
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.marvel.agent.renderer.shards;
|
package org.elasticsearch.marvel.agent.renderer.shards;
|
||||||
|
|
||||||
|
import org.apache.lucene.util.LuceneTestCase.BadApple;
|
||||||
import org.elasticsearch.action.search.SearchRequestBuilder;
|
import org.elasticsearch.action.search.SearchRequestBuilder;
|
||||||
import org.elasticsearch.action.search.SearchResponse;
|
import org.elasticsearch.action.search.SearchResponse;
|
||||||
import org.elasticsearch.cluster.metadata.IndexMetaData;
|
import org.elasticsearch.cluster.metadata.IndexMetaData;
|
||||||
|
@ -30,6 +31,8 @@ import static org.hamcrest.Matchers.greaterThan;
|
||||||
import static org.hamcrest.Matchers.greaterThanOrEqualTo;
|
import static org.hamcrest.Matchers.greaterThanOrEqualTo;
|
||||||
import static org.hamcrest.Matchers.instanceOf;
|
import static org.hamcrest.Matchers.instanceOf;
|
||||||
|
|
||||||
|
//test is just too slow, please fix it to not be sleep-based
|
||||||
|
@BadApple(bugUrl = "https://github.com/elastic/x-plugins/issues/1007")
|
||||||
@ClusterScope(scope = Scope.TEST)
|
@ClusterScope(scope = Scope.TEST)
|
||||||
public class ShardsTests extends MarvelIntegTestCase {
|
public class ShardsTests extends MarvelIntegTestCase {
|
||||||
private static final String INDEX_PREFIX = "test-shards-";
|
private static final String INDEX_PREFIX = "test-shards-";
|
||||||
|
|
|
@ -16,6 +16,10 @@ import static org.elasticsearch.test.hamcrest.ElasticsearchAssertions.assertAcke
|
||||||
import static org.hamcrest.Matchers.equalTo;
|
import static org.hamcrest.Matchers.equalTo;
|
||||||
import static org.hamcrest.Matchers.instanceOf;
|
import static org.hamcrest.Matchers.instanceOf;
|
||||||
|
|
||||||
|
import org.apache.lucene.util.LuceneTestCase.BadApple;
|
||||||
|
|
||||||
|
//test is just too slow, please fix it to not be sleep-based
|
||||||
|
@BadApple(bugUrl = "https://github.com/elastic/x-plugins/issues/1007")
|
||||||
@ESIntegTestCase.ClusterScope(scope = ESIntegTestCase.Scope.TEST, numDataNodes = 1, numClientNodes = 0)
|
@ESIntegTestCase.ClusterScope(scope = ESIntegTestCase.Scope.TEST, numDataNodes = 1, numClientNodes = 0)
|
||||||
public class MarvelSettingsTests extends MarvelIntegTestCase {
|
public class MarvelSettingsTests extends MarvelIntegTestCase {
|
||||||
private final TimeValue interval = newRandomTimeValue();
|
private final TimeValue interval = newRandomTimeValue();
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.integration;
|
package org.elasticsearch.integration;
|
||||||
|
|
||||||
|
import org.apache.lucene.util.LuceneTestCase.BadApple;
|
||||||
import org.elasticsearch.common.settings.Settings;
|
import org.elasticsearch.common.settings.Settings;
|
||||||
import org.elasticsearch.node.Node;
|
import org.elasticsearch.node.Node;
|
||||||
import org.elasticsearch.test.rest.client.http.HttpResponse;
|
import org.elasticsearch.test.rest.client.http.HttpResponse;
|
||||||
|
@ -17,6 +18,8 @@ import java.util.Map;
|
||||||
import static java.util.Collections.singletonMap;
|
import static java.util.Collections.singletonMap;
|
||||||
import static org.hamcrest.Matchers.is;
|
import static org.hamcrest.Matchers.is;
|
||||||
|
|
||||||
|
//test is just too slow, please fix it to not be sleep-based
|
||||||
|
@BadApple(bugUrl = "https://github.com/elastic/x-plugins/issues/1007")
|
||||||
public class IndexPrivilegeTests extends AbstractPrivilegeTestCase {
|
public class IndexPrivilegeTests extends AbstractPrivilegeTestCase {
|
||||||
|
|
||||||
private String jsonDoc = "{ \"name\" : \"elasticsearch\"}";
|
private String jsonDoc = "{ \"name\" : \"elasticsearch\"}";
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.integration;
|
package org.elasticsearch.integration;
|
||||||
|
|
||||||
|
import org.apache.lucene.util.LuceneTestCase.BadApple;
|
||||||
import org.elasticsearch.ElasticsearchSecurityException;
|
import org.elasticsearch.ElasticsearchSecurityException;
|
||||||
import org.elasticsearch.action.admin.indices.template.get.GetIndexTemplatesResponse;
|
import org.elasticsearch.action.admin.indices.template.get.GetIndexTemplatesResponse;
|
||||||
import org.elasticsearch.action.admin.indices.template.put.PutIndexTemplateResponse;
|
import org.elasticsearch.action.admin.indices.template.put.PutIndexTemplateResponse;
|
||||||
|
@ -30,6 +31,8 @@ import static org.hamcrest.Matchers.hasSize;
|
||||||
* actions that are normally categorized as index actions as cluster actions - for example,
|
* actions that are normally categorized as index actions as cluster actions - for example,
|
||||||
* index template actions.
|
* index template actions.
|
||||||
*/
|
*/
|
||||||
|
//test is just too slow, please fix it to not be sleep-based
|
||||||
|
@BadApple(bugUrl = "https://github.com/elastic/x-plugins/issues/1007")
|
||||||
public class PermissionPrecedenceTests extends ShieldIntegTestCase {
|
public class PermissionPrecedenceTests extends ShieldIntegTestCase {
|
||||||
protected static final String USERS_PASSWD_HASHED = new String(Hasher.BCRYPT.hash(new SecuredString("test123".toCharArray())));
|
protected static final String USERS_PASSWD_HASHED = new String(Hasher.BCRYPT.hash(new SecuredString("test123".toCharArray())));
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.shield.audit.index;
|
package org.elasticsearch.shield.audit.index;
|
||||||
|
|
||||||
|
import org.apache.lucene.util.LuceneTestCase.BadApple;
|
||||||
import org.elasticsearch.action.admin.indices.template.delete.DeleteIndexTemplateResponse;
|
import org.elasticsearch.action.admin.indices.template.delete.DeleteIndexTemplateResponse;
|
||||||
import org.elasticsearch.action.admin.indices.template.get.GetIndexTemplatesResponse;
|
import org.elasticsearch.action.admin.indices.template.get.GetIndexTemplatesResponse;
|
||||||
import org.elasticsearch.action.search.SearchResponse;
|
import org.elasticsearch.action.search.SearchResponse;
|
||||||
|
@ -22,6 +23,8 @@ import java.util.Set;
|
||||||
|
|
||||||
import static org.hamcrest.Matchers.is;
|
import static org.hamcrest.Matchers.is;
|
||||||
|
|
||||||
|
//test is just too slow, please fix it to not be sleep-based
|
||||||
|
@BadApple(bugUrl = "https://github.com/elastic/x-plugins/issues/1007")
|
||||||
@ClusterScope(scope = Scope.TEST, randomDynamicTemplates = false)
|
@ClusterScope(scope = Scope.TEST, randomDynamicTemplates = false)
|
||||||
public class IndexAuditTrailEnabledTests extends ShieldIntegTestCase {
|
public class IndexAuditTrailEnabledTests extends ShieldIntegTestCase {
|
||||||
IndexNameResolver.Rollover rollover = randomFrom(IndexNameResolver.Rollover.values());
|
IndexNameResolver.Rollover rollover = randomFrom(IndexNameResolver.Rollover.values());
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.shield.audit.index;
|
package org.elasticsearch.shield.audit.index;
|
||||||
|
|
||||||
|
import org.apache.lucene.util.LuceneTestCase.BadApple;
|
||||||
import org.elasticsearch.action.IndicesRequest;
|
import org.elasticsearch.action.IndicesRequest;
|
||||||
import org.elasticsearch.action.admin.cluster.node.info.NodesInfoResponse;
|
import org.elasticsearch.action.admin.cluster.node.info.NodesInfoResponse;
|
||||||
import org.elasticsearch.action.admin.indices.settings.get.GetSettingsResponse;
|
import org.elasticsearch.action.admin.indices.settings.get.GetSettingsResponse;
|
||||||
|
@ -58,6 +59,8 @@ import static org.mockito.Mockito.*;
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
//test is just too slow, please fix it to not be sleep-based
|
||||||
|
@BadApple(bugUrl = "https://github.com/elastic/x-plugins/issues/1007")
|
||||||
@ESIntegTestCase.ClusterScope(scope = SUITE, numDataNodes = 1)
|
@ESIntegTestCase.ClusterScope(scope = SUITE, numDataNodes = 1)
|
||||||
public class IndexAuditTrailTests extends ShieldIntegTestCase {
|
public class IndexAuditTrailTests extends ShieldIntegTestCase {
|
||||||
public static final String SECOND_CLUSTER_NODE_PREFIX = "remote_" + SUITE_CLUSTER_NODE_PREFIX;
|
public static final String SECOND_CLUSTER_NODE_PREFIX = "remote_" + SUITE_CLUSTER_NODE_PREFIX;
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.shield.authc.support;
|
package org.elasticsearch.shield.authc.support;
|
||||||
|
|
||||||
|
import org.apache.lucene.util.LuceneTestCase.BadApple;
|
||||||
import org.elasticsearch.common.settings.Settings;
|
import org.elasticsearch.common.settings.Settings;
|
||||||
import org.elasticsearch.common.unit.TimeValue;
|
import org.elasticsearch.common.unit.TimeValue;
|
||||||
import org.elasticsearch.shield.User;
|
import org.elasticsearch.shield.User;
|
||||||
|
@ -24,6 +25,8 @@ import static org.hamcrest.Matchers.not;
|
||||||
import static org.hamcrest.Matchers.nullValue;
|
import static org.hamcrest.Matchers.nullValue;
|
||||||
import static org.hamcrest.Matchers.sameInstance;
|
import static org.hamcrest.Matchers.sameInstance;
|
||||||
|
|
||||||
|
//test is just too slow, please fix it to not be sleep-based
|
||||||
|
@BadApple(bugUrl = "https://github.com/elastic/x-plugins/issues/1007")
|
||||||
public class CachingUsernamePasswordRealmTests extends ESTestCase {
|
public class CachingUsernamePasswordRealmTests extends ESTestCase {
|
||||||
private Settings globalSettings;
|
private Settings globalSettings;
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
package org.elasticsearch.watcher.test.integration;
|
package org.elasticsearch.watcher.test.integration;
|
||||||
|
|
||||||
import org.apache.lucene.util.LuceneTestCase.AwaitsFix;
|
import org.apache.lucene.util.LuceneTestCase.AwaitsFix;
|
||||||
|
import org.apache.lucene.util.LuceneTestCase.BadApple;
|
||||||
import org.elasticsearch.ExceptionsHelper;
|
import org.elasticsearch.ExceptionsHelper;
|
||||||
import org.elasticsearch.action.search.SearchRequest;
|
import org.elasticsearch.action.search.SearchRequest;
|
||||||
import org.elasticsearch.client.Client;
|
import org.elasticsearch.client.Client;
|
||||||
|
@ -52,6 +53,8 @@ import static org.hamcrest.Matchers.equalTo;
|
||||||
import static org.hamcrest.Matchers.instanceOf;
|
import static org.hamcrest.Matchers.instanceOf;
|
||||||
import static org.hamcrest.core.Is.is;
|
import static org.hamcrest.core.Is.is;
|
||||||
|
|
||||||
|
//test is just too slow, please fix it to not be sleep-based
|
||||||
|
@BadApple(bugUrl = "https://github.com/elastic/x-plugins/issues/1007")
|
||||||
@TestLogging("discovery:TRACE,watcher:TRACE")
|
@TestLogging("discovery:TRACE,watcher:TRACE")
|
||||||
@ClusterScope(scope = TEST, numClientNodes = 0, transportClientRatio = 0, randomDynamicTemplates = false, numDataNodes = 0)
|
@ClusterScope(scope = TEST, numClientNodes = 0, transportClientRatio = 0, randomDynamicTemplates = false, numDataNodes = 0)
|
||||||
@SuppressLocalMode
|
@SuppressLocalMode
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
package org.elasticsearch.watcher.transport.action.ack;
|
package org.elasticsearch.watcher.transport.action.ack;
|
||||||
|
|
||||||
|
|
||||||
|
import org.apache.lucene.util.LuceneTestCase.BadApple;
|
||||||
import org.elasticsearch.action.ActionRequestValidationException;
|
import org.elasticsearch.action.ActionRequestValidationException;
|
||||||
import org.elasticsearch.action.delete.DeleteResponse;
|
import org.elasticsearch.action.delete.DeleteResponse;
|
||||||
import org.elasticsearch.action.get.GetRequest;
|
import org.elasticsearch.action.get.GetRequest;
|
||||||
|
@ -48,6 +49,8 @@ import static org.hamcrest.core.IsEqual.equalTo;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*/
|
*/
|
||||||
|
//test is just too slow, please fix it to not be sleep-based
|
||||||
|
@BadApple(bugUrl = "https://github.com/elastic/x-plugins/issues/1007")
|
||||||
public class WatchAckTests extends AbstractWatcherIntegrationTestCase {
|
public class WatchAckTests extends AbstractWatcherIntegrationTestCase {
|
||||||
private IndexResponse indexTestDoc() {
|
private IndexResponse indexTestDoc() {
|
||||||
createIndex("actions", "events");
|
createIndex("actions", "events");
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.watcher.transport.action.execute;
|
package org.elasticsearch.watcher.transport.action.execute;
|
||||||
|
|
||||||
|
import org.apache.lucene.util.LuceneTestCase.BadApple;
|
||||||
import org.elasticsearch.watcher.client.WatcherClient;
|
import org.elasticsearch.watcher.client.WatcherClient;
|
||||||
import org.elasticsearch.watcher.execution.Wid;
|
import org.elasticsearch.watcher.execution.Wid;
|
||||||
import org.elasticsearch.watcher.support.WatcherDateTimeUtils;
|
import org.elasticsearch.watcher.support.WatcherDateTimeUtils;
|
||||||
|
@ -29,6 +30,8 @@ import static org.hamcrest.Matchers.notNullValue;
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
//test is just too slow, please fix it to not be sleep-based
|
||||||
|
@BadApple(bugUrl = "https://github.com/elastic/x-plugins/issues/1007")
|
||||||
public class ExecuteWatchWithDateMathTests extends AbstractWatcherIntegrationTestCase {
|
public class ExecuteWatchWithDateMathTests extends AbstractWatcherIntegrationTestCase {
|
||||||
@Override
|
@Override
|
||||||
protected boolean timeWarped() {
|
protected boolean timeWarped() {
|
||||||
|
|
|
@ -12,6 +12,10 @@ import org.elasticsearch.watcher.trigger.schedule.ScheduleRegistry;
|
||||||
|
|
||||||
import static org.mockito.Mockito.mock;
|
import static org.mockito.Mockito.mock;
|
||||||
|
|
||||||
|
import org.apache.lucene.util.LuceneTestCase.BadApple;
|
||||||
|
|
||||||
|
//test is just too slow, please fix it to not be sleep-based
|
||||||
|
@BadApple(bugUrl = "https://github.com/elastic/x-plugins/issues/1007")
|
||||||
public class SchedulerScheduleEngineTests extends BaseTriggerEngineTestCase {
|
public class SchedulerScheduleEngineTests extends BaseTriggerEngineTestCase {
|
||||||
|
|
||||||
protected TriggerEngine createEngine() {
|
protected TriggerEngine createEngine() {
|
||||||
|
|
|
@ -12,8 +12,12 @@ import org.elasticsearch.watcher.trigger.schedule.ScheduleRegistry;
|
||||||
|
|
||||||
import static org.mockito.Mockito.mock;
|
import static org.mockito.Mockito.mock;
|
||||||
|
|
||||||
|
import org.apache.lucene.util.LuceneTestCase.BadApple;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*/
|
*/
|
||||||
|
//test is just too slow, please fix it to not be sleep-based
|
||||||
|
@BadApple(bugUrl = "https://github.com/elastic/x-plugins/issues/1007")
|
||||||
public class TickerScheduleEngineTests extends BaseTriggerEngineTestCase {
|
public class TickerScheduleEngineTests extends BaseTriggerEngineTestCase {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue