Skip to content

Commit

Permalink
Update after review and add a Test
Browse files Browse the repository at this point in the history
  • Loading branch information
dadoonet committed Apr 9, 2016
1 parent 09fc948 commit 24f48b8
Show file tree
Hide file tree
Showing 3 changed files with 91 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ public IngestInfo info() {

@Override
public void close() throws IOException {
pipelineStore.getProcessorRegistry().close();
pipelineStore.close();
}

Expand Down
89 changes: 89 additions & 0 deletions core/src/test/java/org/elasticsearch/ingest/IngestCloseIT.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
/*
* 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.ingest;

import org.elasticsearch.ingest.core.AbstractProcessorFactory;
import org.elasticsearch.node.NodeModule;
import org.elasticsearch.plugins.Plugin;
import org.elasticsearch.test.ESSingleNodeTestCase;
import org.junit.After;

import java.io.Closeable;
import java.io.IOException;
import java.util.Collection;
import java.util.Map;
import java.util.concurrent.atomic.AtomicBoolean;

import static org.hamcrest.Matchers.is;

public class IngestCloseIT extends ESSingleNodeTestCase {

@Override
protected Collection<Class<? extends Plugin>> getPlugins() {
return pluginList(IngestPlugin.class);
}

private static AtomicBoolean called = new AtomicBoolean(false);

public void testCloseNode() throws Exception {
// We manually stop the node and check we called
stopNode();

assertThat(called.get(), is(true));

// We need to restart the node for the next tests (and because tearDown() expects a Node)
startNode();
}

public static class IngestPlugin extends Plugin {

@Override
public String name() {
return "ingest";
}

@Override
public String description() {
return "ingest mock";
}

public void onModule(NodeModule nodeModule) {
nodeModule.registerProcessor("test", (templateService, registry) -> new Factory());
}
}

public static final class Factory extends AbstractProcessorFactory<TestProcessor> implements Closeable {
@Override
protected TestProcessor doCreate(String tag, Map<String, Object> config) throws Exception {
return new TestProcessor("id", "test", ingestDocument -> {
ingestDocument.setFieldValue("processed", true);
if (ingestDocument.getFieldValue("fail", Boolean.class)) {
throw new IllegalArgumentException("test processor failed");
}
});
}

@Override
public void close() throws IOException {
called.set(true);
}
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ private void reset() throws IOException {
startNode();
}

private void startNode() {
protected void startNode() {
assert NODE == null;
NODE = newNode();
// we must wait for the node to actually be up and running. otherwise the node might have started, elected itself master but might not yet have removed the
Expand All @@ -92,7 +92,7 @@ private void startNode() {
.put(IndexMetaData.SETTING_NUMBER_OF_REPLICAS, 0)).get();
}

private static void stopNode() throws IOException {
protected static void stopNode() throws IOException {
Node node = NODE;
NODE = null;
IOUtils.close(node);
Expand Down

0 comments on commit 24f48b8

Please sign in to comment.