/* * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. */ /* * 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. */ /* * Modifications Copyright OpenSearch Contributors. See * GitHub history for details. */ package org.opensearch.join.query; import org.opensearch.action.index.IndexRequestBuilder; import org.opensearch.common.Strings; import org.opensearch.common.settings.Settings; import org.opensearch.core.xcontent.XContentBuilder; import org.opensearch.common.xcontent.XContentHelper; import org.opensearch.common.xcontent.json.JsonXContent; import org.opensearch.index.IndexModule; import org.opensearch.join.ParentJoinModulePlugin; import org.opensearch.plugins.Plugin; import org.opensearch.test.OpenSearchIntegTestCase; import org.opensearch.test.InternalSettingsPlugin; import java.io.IOException; import java.util.Arrays; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.Map; @OpenSearchIntegTestCase.ClusterScope(scope = OpenSearchIntegTestCase.Scope.SUITE) public abstract class ParentChildTestCase extends OpenSearchIntegTestCase { @Override protected boolean ignoreExternalCluster() { return true; } @Override protected Collection> nodePlugins() { return Arrays.asList(InternalSettingsPlugin.class, ParentJoinModulePlugin.class); } @Override public Settings indexSettings() { Settings.Builder builder = Settings.builder() .put(super.indexSettings()) // aggressive filter caching so that we can assert on the filter cache size .put(IndexModule.INDEX_QUERY_CACHE_ENABLED_SETTING.getKey(), true) .put(IndexModule.INDEX_QUERY_CACHE_EVERYTHING_SETTING.getKey(), true); return builder.build(); } protected IndexRequestBuilder createIndexRequest(String index, String type, String id, String parentId, Object... fields) { Map source = new HashMap<>(); for (int i = 0; i < fields.length; i += 2) { source.put((String) fields[i], fields[i + 1]); } source.put("id", id); return createIndexRequest(index, type, id, parentId, source); } protected IndexRequestBuilder createIndexRequest(String index, String type, String id, String parentId, XContentBuilder builder) throws IOException { Map source = XContentHelper.convertToMap(JsonXContent.jsonXContent, Strings.toString(builder), false); return createIndexRequest(index, type, id, parentId, source); } public static Map buildParentJoinFieldMappingFromSimplifiedDef( String joinFieldName, boolean eagerGlobalOrdinals, String... relations ) { Map fields = new HashMap<>(); Map joinField = new HashMap<>(); joinField.put("type", "join"); joinField.put("eager_global_ordinals", eagerGlobalOrdinals); Map relationMap = new HashMap<>(); for (int i = 0; i < relations.length; i += 2) { String[] children = relations[i + 1].split(","); if (children.length > 1) { relationMap.put(relations[i], children); } else { relationMap.put(relations[i], children[0]); } } joinField.put("relations", relationMap); fields.put(joinFieldName, joinField); fields.put("id", Collections.singletonMap("type", "keyword")); return Collections.singletonMap("properties", fields); } @SuppressWarnings("unchecked") public static Map addFieldMappings(Map map, String... fields) { Map propsMap = (Map) map.get("properties"); for (int i = 0; i < fields.length; i += 2) { String field = fields[i]; String type = fields[i + 1]; propsMap.put(field, Collections.singletonMap("type", type)); } return map; } private IndexRequestBuilder createIndexRequest(String index, String type, String id, String parentId, Map source) { String name = type; type = "doc"; IndexRequestBuilder indexRequestBuilder = client().prepareIndex(index).setId(id); Map joinField = new HashMap<>(); if (parentId != null) { joinField.put("name", name); joinField.put("parent", parentId); indexRequestBuilder.setRouting(parentId); } else { joinField.put("name", name); } source.put("join_field", joinField); indexRequestBuilder.setSource(source); return indexRequestBuilder; } }