mirror of https://github.com/apache/lucene.git
SOLR-12028: BadApple and AwaitsFix annotations usage
This commit is contained in:
parent
c98ab259c5
commit
c48177b4b6
|
@ -90,6 +90,7 @@ public class LeaderVoteWaitTimeoutTest extends SolrCloudTestCase {
|
|||
}
|
||||
|
||||
@Test
|
||||
@BadApple(bugUrl="https://issues.apache.org/jira/browse/SOLR-12028") // 17-Mar-2018
|
||||
public void basicTest() throws Exception {
|
||||
final String collectionName = "basicTest";
|
||||
CollectionAdminRequest.createCollection(collectionName, 1, 1)
|
||||
|
@ -126,6 +127,7 @@ public class LeaderVoteWaitTimeoutTest extends SolrCloudTestCase {
|
|||
}
|
||||
|
||||
@Test
|
||||
@BadApple(bugUrl="https://issues.apache.org/jira/browse/SOLR-12028") // 17-Mar-2018
|
||||
public void testMostInSyncReplicasCanWinElection() throws Exception {
|
||||
final String collectionName = "collection1";
|
||||
CollectionAdminRequest.createCollection(collectionName, 1, 3)
|
||||
|
|
|
@ -251,6 +251,7 @@ public class MoveReplicaTest extends SolrCloudTestCase {
|
|||
//Commented out 5-Dec-2017
|
||||
// @AwaitsFix(bugUrl = "https://issues.apache.org/jira/browse/SOLR-11458")
|
||||
@Test
|
||||
@BadApple(bugUrl="https://issues.apache.org/jira/browse/SOLR-12028") // 17-Mar-2018 This JIRA is fixed, but this test still fails
|
||||
public void testFailedMove() throws Exception {
|
||||
String coll = getTestClass().getSimpleName() + "_failed_coll_" + inPlaceMove;
|
||||
int REPLICATION = 2;
|
||||
|
|
|
@ -54,6 +54,7 @@ import static org.apache.solr.common.util.Utils.makeMap;
|
|||
public class SSLMigrationTest extends AbstractFullDistribZkTestBase {
|
||||
|
||||
@Test
|
||||
@BadApple(bugUrl="https://issues.apache.org/jira/browse/SOLR-12028") // 17-Mar-2018
|
||||
public void test() throws Exception {
|
||||
//Migrate from HTTP -> HTTPS -> HTTP
|
||||
assertReplicaInformation("http");
|
||||
|
|
|
@ -41,6 +41,7 @@ public class TestLeaderElectionZkExpiry extends SolrTestCaseJ4 {
|
|||
private static final int MIN_NODES = 4;
|
||||
|
||||
@Test
|
||||
@BadApple(bugUrl="https://issues.apache.org/jira/browse/SOLR-12028") // 17-Mar-2018
|
||||
public void testLeaderElectionWithZkExpiry() throws Exception {
|
||||
String zkDir = createTempDir("zkData").toFile().getAbsolutePath();
|
||||
Path ccDir = createTempDir("testLeaderElectionWithZkExpiry-solr");
|
||||
|
|
|
@ -146,6 +146,7 @@ public class ScheduledMaintenanceTriggerTest extends SolrCloudTestCase {
|
|||
}
|
||||
|
||||
@Test
|
||||
@BadApple(bugUrl="https://issues.apache.org/jira/browse/SOLR-12028") // 17-Mar-2018
|
||||
public void testInactiveShardCleanup() throws Exception {
|
||||
String collection1 = getClass().getSimpleName() + "_collection1";
|
||||
CollectionAdminRequest.Create create1 = CollectionAdminRequest.createCollection(collection1,
|
||||
|
|
Loading…
Reference in New Issue