-
Notifications
You must be signed in to change notification settings - Fork 25k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reverting the changes to the REST client tests and the IndicesRequestIT add a section to the indices.asciidoc
- Loading branch information
Showing
7 changed files
with
151 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
135 changes: 135 additions & 0 deletions
135
core/src/test/java/org/elasticsearch/action/bulk/TransportBulkActionTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
/* | ||
* Licensed to Elasticsearch under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.elasticsearch.action.bulk; | ||
|
||
import org.elasticsearch.action.ActionListener; | ||
import org.elasticsearch.action.admin.indices.create.CreateIndexResponse; | ||
import org.elasticsearch.action.bulk.TransportBulkActionTookTests.Resolver; | ||
import org.elasticsearch.action.delete.DeleteRequest; | ||
import org.elasticsearch.action.support.ActionFilters; | ||
import org.elasticsearch.action.support.AutoCreateIndex; | ||
import org.elasticsearch.cluster.service.ClusterService; | ||
import org.elasticsearch.common.settings.Settings; | ||
import org.elasticsearch.common.unit.TimeValue; | ||
import org.elasticsearch.index.IndexNotFoundException; | ||
import org.elasticsearch.index.VersionType; | ||
import org.elasticsearch.test.ESTestCase; | ||
import org.elasticsearch.test.transport.CapturingTransport; | ||
import org.elasticsearch.threadpool.TestThreadPool; | ||
import org.elasticsearch.threadpool.ThreadPool; | ||
import org.elasticsearch.transport.TransportService; | ||
import org.junit.After; | ||
import org.junit.Before; | ||
|
||
import java.util.Collections; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
import static org.elasticsearch.test.ClusterServiceUtils.createClusterService; | ||
|
||
public class TransportBulkActionTests extends ESTestCase { | ||
|
||
/** Services needed by bulk action */ | ||
private TransportService transportService; | ||
private ClusterService clusterService; | ||
private ThreadPool threadPool; | ||
|
||
private TestTransportBulkAction bulkAction; | ||
|
||
class TestTransportBulkAction extends TransportBulkAction { | ||
|
||
boolean indexCreated = false; // set when the "real" index is created | ||
|
||
TestTransportBulkAction() { | ||
super(Settings.EMPTY, TransportBulkActionTests.this.threadPool, transportService, clusterService, null, null, | ||
null, new ActionFilters(Collections.emptySet()), new Resolver(Settings.EMPTY), | ||
new AutoCreateIndex(Settings.EMPTY, clusterService.getClusterSettings(), new Resolver(Settings.EMPTY))); | ||
} | ||
|
||
@Override | ||
protected boolean needToCheck() { | ||
return true; | ||
} | ||
|
||
@Override | ||
void createIndex(String index, TimeValue timeout, ActionListener<CreateIndexResponse> listener) { | ||
indexCreated = true; | ||
listener.onResponse(null); | ||
} | ||
} | ||
|
||
@Before | ||
public void setUp() throws Exception { | ||
super.setUp(); | ||
threadPool = new TestThreadPool("TransportBulkActionTookTests"); | ||
clusterService = createClusterService(threadPool); | ||
CapturingTransport capturingTransport = new CapturingTransport(); | ||
transportService = new TransportService(clusterService.getSettings(), capturingTransport, threadPool, | ||
TransportService.NOOP_TRANSPORT_INTERCEPTOR, | ||
boundAddress -> clusterService.localNode(), null); | ||
transportService.start(); | ||
transportService.acceptIncomingRequests(); | ||
bulkAction = new TestTransportBulkAction(); | ||
} | ||
|
||
@After | ||
public void tearDown() throws Exception { | ||
ThreadPool.terminate(threadPool, 30, TimeUnit.SECONDS); | ||
threadPool = null; | ||
clusterService.close(); | ||
super.tearDown(); | ||
} | ||
|
||
public void testDeleteNonExistingDoc() throws Exception { | ||
BulkRequest bulkRequest = new BulkRequest().add(new DeleteRequest("index", "type", "id")); | ||
|
||
bulkAction.execute(null, bulkRequest, ActionListener.wrap(response -> { | ||
assertFalse(bulkAction.indexCreated); | ||
BulkItemResponse[] bulkResponses = ((BulkResponse) response).getItems(); | ||
assertEquals(bulkResponses.length, 1); | ||
assertTrue(bulkResponses[0].isFailed()); | ||
assertTrue(bulkResponses[0].getFailure().getCause() instanceof IndexNotFoundException); | ||
assertEquals("index", bulkResponses[0].getFailure().getIndex()); | ||
}, exception -> { | ||
throw new AssertionError(exception); | ||
})); | ||
} | ||
|
||
public void testDeleteNonExistingDocExternalVersion() throws Exception { | ||
BulkRequest bulkRequest = new BulkRequest() | ||
.add(new DeleteRequest("index", "type", "id").versionType(VersionType.EXTERNAL).version(0)); | ||
|
||
bulkAction.execute(null, bulkRequest, ActionListener.wrap(response -> { | ||
assertTrue(bulkAction.indexCreated); | ||
}, exception -> { | ||
throw new AssertionError(exception); | ||
})); | ||
} | ||
|
||
public void testDeleteNonExistingDocExternalGteVersion() throws Exception { | ||
BulkRequest bulkRequest = new BulkRequest() | ||
.add(new DeleteRequest("index2", "type", "id").versionType(VersionType.EXTERNAL_GTE).version(0)); | ||
|
||
bulkAction.execute(null, bulkRequest, ActionListener.wrap(response -> { | ||
assertTrue(bulkAction.indexCreated); | ||
}, exception -> { | ||
throw new AssertionError(exception); | ||
})); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters