/* * 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 * * Modifications Copyright OpenSearch Contributors. See * GitHub history for details. */ /* * 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.opensearch.gradle import org.opensearch.gradle.fixtures.AbstractGradleFuncTest import spock.lang.IgnoreIf import static org.opensearch.gradle.fixtures.DistributionDownloadFixture.withMockedDistributionDownload /** * We do not have coverage for the test cluster startup on windows yet. * One step at a time... * */ @IgnoreIf({ os.isWindows() }) class TestClustersPluginFuncTest extends AbstractGradleFuncTest { def setup() { buildFile << """ import org.opensearch.gradle.testclusters.DefaultTestClustersTask plugins { id 'opensearch.testclusters' } class SomeClusterAwareTask extends DefaultTestClustersTask { @TaskAction void doSomething() { println 'SomeClusterAwareTask executed' } } """ } def "test cluster distribution is configured and started"() { given: buildFile << """ testClusters { myCluster { testDistribution = 'archive' } } tasks.register('myTask', SomeClusterAwareTask) { useCluster testClusters.myCluster } """ when: def result = withMockedDistributionDownload(gradleRunner("myTask", '-i')) { build() } then: result.output.contains("opensearch-keystore script executed!") assertOpenSearchStdoutContains("myCluster", "Starting OpenSearch process") assertOpenSearchStdoutContains("myCluster", "Stopping node") assertNoCustomDistro('myCluster') } def "custom distro folder created for tweaked cluster distribution"() { given: buildFile << """ testClusters { myCluster { testDistribution = 'archive' extraJarFile(file('${someJar().absolutePath}')) } } tasks.register('myTask', SomeClusterAwareTask) { useCluster testClusters.myCluster } """ when: def result = withMockedDistributionDownload(gradleRunner("myTask", '-i')) { build() } then: result.output.contains("opensearch-keystore script executed!") assertOpenSearchStdoutContains("myCluster", "Starting OpenSearch process") assertOpenSearchStdoutContains("myCluster", "Stopping node") assertCustomDistro('myCluster') } boolean assertOpenSearchStdoutContains(String testCluster, String expectedOutput) { assert new File(testProjectDir.root, "build/testclusters/${testCluster}-0/logs/opensearch.stdout.log").text.contains(expectedOutput) true } boolean assertCustomDistro(String clusterName) { assert customDistroFolder(clusterName).exists() true } boolean assertNoCustomDistro(String clusterName) { assert !customDistroFolder(clusterName).exists() true } private File customDistroFolder(String clusterName) { new File(testProjectDir.root, "build/testclusters/${clusterName}-0/distro") } }