[TEST] Temporarily ignore transport update tests.

This commit is contained in:
Martijn van Groningen 2014-07-21 09:57:03 +02:00
parent 6e81cb5cd6
commit 2d2088b259

View File

@ -19,6 +19,7 @@
package org.elasticsearch.action.update;
import org.apache.lucene.util.LuceneTestCase;
import org.elasticsearch.ElasticsearchTimeoutException;
import org.elasticsearch.action.ListenableActionFuture;
import org.elasticsearch.action.delete.DeleteResponse;
@ -86,6 +87,7 @@ public class TransportUpdateActionTest extends ElasticsearchIntegrationTest {
* Checks correct behavior in case of an update request that does not include a retry_on_conflict parameter.
*/
@Test
@LuceneTestCase.AwaitsFix(bugUrl = "ignore for now, is being worked on")
public void shouldReceiveUpdateResponseWhenNotRetryingOnConflict() {
sendAddRequestAndWaitUntilCompletelyDone(documentId);
@ -100,6 +102,7 @@ public class TransportUpdateActionTest extends ElasticsearchIntegrationTest {
* requests that happen with a particular timing.
*/
@Test
@LuceneTestCase.AwaitsFix(bugUrl = "ignore for now, is being worked on")
public void shouldReceiveUpdateResponseWhenRetryingOnConflict() {
sendAddRequestAndWaitUntilCompletelyDone(documentId);
@ -128,6 +131,7 @@ public class TransportUpdateActionTest extends ElasticsearchIntegrationTest {
* requests to trigger an exception in {@link UpdateHelper#prepare(UpdateRequest)} for the "upsert" case.
*/
@Test
@LuceneTestCase.AwaitsFix(bugUrl = "ignore for now, is being worked on")
public void shouldReceiveUpsertResponseWhenRetryingOnConflict() {
// send an upsert request and make sure the corresponding create operation has arrived in the internal engine
ListenableActionFuture<UpdateResponse> upsertFuture = updateDocument(documentId, true, 1);