/* * 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.search.aggregations.pipeline; import org.opensearch.core.xcontent.XContentBuilder; import org.opensearch.common.xcontent.XContentFactory; import org.opensearch.script.Script; import org.opensearch.script.ScriptType; import org.opensearch.search.aggregations.BasePipelineAggregationTestCase; import org.opensearch.search.aggregations.pipeline.BucketHelpers.GapPolicy; import java.io.IOException; import java.util.HashMap; import java.util.Map; public class BucketScriptTests extends BasePipelineAggregationTestCase { @Override protected BucketScriptPipelineAggregationBuilder createTestAggregatorFactory() { String name = randomAlphaOfLengthBetween(3, 20); Map bucketsPaths = new HashMap<>(); int numBucketPaths = randomIntBetween(1, 10); for (int i = 0; i < numBucketPaths; i++) { bucketsPaths.put(randomAlphaOfLengthBetween(1, 20), randomAlphaOfLengthBetween(1, 40)); } Script script; if (randomBoolean()) { script = mockScript("script"); } else { Map params = new HashMap<>(); if (randomBoolean()) { params.put("foo", "bar"); } ScriptType type = randomFrom(ScriptType.values()); script = new Script( type, type == ScriptType.STORED ? null : randomFrom("my_lang", Script.DEFAULT_SCRIPT_LANG), "script", params ); } BucketScriptPipelineAggregationBuilder factory = new BucketScriptPipelineAggregationBuilder(name, bucketsPaths, script); if (randomBoolean()) { factory.format(randomAlphaOfLengthBetween(1, 10)); } if (randomBoolean()) { factory.gapPolicy(randomFrom(GapPolicy.values())); } return factory; } public void testParseBucketPath() throws IOException { XContentBuilder content = XContentFactory.jsonBuilder() .startObject() .field("buckets_path", "_count") .startObject("script") .field("source", "value") .field("lang", "expression") .endObject() .endObject(); BucketScriptPipelineAggregationBuilder builder1 = BucketScriptPipelineAggregationBuilder.PARSER.parse( createParser(content), "count" ); assertEquals(builder1.getBucketsPaths().length, 1); assertEquals(builder1.getBucketsPaths()[0], "_count"); content = XContentFactory.jsonBuilder() .startObject() .startObject("buckets_path") .field("path1", "_count1") .field("path2", "_count2") .endObject() .startObject("script") .field("source", "value") .field("lang", "expression") .endObject() .endObject(); BucketScriptPipelineAggregationBuilder builder2 = BucketScriptPipelineAggregationBuilder.PARSER.parse( createParser(content), "count" ); assertEquals(builder2.getBucketsPaths().length, 2); assertEquals(builder2.getBucketsPaths()[0], "_count1"); assertEquals(builder2.getBucketsPaths()[1], "_count2"); content = XContentFactory.jsonBuilder() .startObject() .array("buckets_path", "_count1", "_count2") .startObject("script") .field("source", "value") .field("lang", "expression") .endObject() .endObject(); BucketScriptPipelineAggregationBuilder builder3 = BucketScriptPipelineAggregationBuilder.PARSER.parse( createParser(content), "count" ); assertEquals(builder3.getBucketsPaths().length, 2); assertEquals(builder3.getBucketsPaths()[0], "_count1"); assertEquals(builder3.getBucketsPaths()[1], "_count2"); } }