|
@@ -0,0 +1,32 @@
|
|
|
+/*
|
|
|
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
|
+ * or more contributor license agreements. Licensed under the Elastic License
|
|
|
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
|
|
|
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
|
|
|
+ * Side Public License, v 1.
|
|
|
+ */
|
|
|
+
|
|
|
+package org.elasticsearch.ingest;
|
|
|
+
|
|
|
+import org.elasticsearch.test.ESTestCase;
|
|
|
+
|
|
|
+import static org.elasticsearch.ingest.TestIngestDocument.emptyIngestDocument;
|
|
|
+import static org.hamcrest.Matchers.equalTo;
|
|
|
+import static org.hamcrest.Matchers.is;
|
|
|
+
|
|
|
+public class LogstashInternalBridgeTests extends ESTestCase {
|
|
|
+ public void testIngestDocumentRerouteBridge() {
|
|
|
+ final IngestDocument ingestDocument = emptyIngestDocument();
|
|
|
+ ingestDocument.setFieldValue("_index", "nowhere");
|
|
|
+ assertThat(ingestDocument.getFieldValue("_index", String.class), is(equalTo("nowhere")));
|
|
|
+ assertThat(LogstashInternalBridge.isReroute(ingestDocument), is(false));
|
|
|
+
|
|
|
+ ingestDocument.reroute("somewhere");
|
|
|
+ assertThat(ingestDocument.getFieldValue("_index", String.class), is(equalTo("somewhere")));
|
|
|
+ assertThat(LogstashInternalBridge.isReroute(ingestDocument), is(true));
|
|
|
+
|
|
|
+ LogstashInternalBridge.resetReroute(ingestDocument);
|
|
|
+ assertThat(ingestDocument.getFieldValue("_index", String.class), is(equalTo("somewhere")));
|
|
|
+ assertThat(LogstashInternalBridge.isReroute(ingestDocument), is(false));
|
|
|
+ }
|
|
|
+}
|