|
@@ -0,0 +1,88 @@
|
|
|
+/*
|
|
|
+ * 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.gradle.test.rest.transform.warnings;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.databind.node.ObjectNode;
|
|
|
+import org.elasticsearch.gradle.test.rest.transform.RestTestTransform;
|
|
|
+import org.elasticsearch.gradle.test.rest.transform.feature.InjectFeatureTests;
|
|
|
+import org.junit.Test;
|
|
|
+
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.Collections;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Set;
|
|
|
+
|
|
|
+public class InjectWarningsRegexTests extends InjectFeatureTests {
|
|
|
+
|
|
|
+ private static final String WARNINGS_REGEX = "warnings_regex";
|
|
|
+ Set<String> addWarnings = Set.of("added warning");
|
|
|
+
|
|
|
+ /**
|
|
|
+ * inject warning requires a test name to insert
|
|
|
+ */
|
|
|
+ @Test
|
|
|
+ public void testInjectWarningsRequiresTestName() throws Exception {
|
|
|
+ String testName = "/rest/transform/warnings/without_existing_warnings.yml";
|
|
|
+ List<ObjectNode> tests = getTests(testName);
|
|
|
+ validateSetupDoesNotExist(tests);
|
|
|
+ assertEquals(
|
|
|
+ "inject warnings is only supported for named tests",
|
|
|
+ expectThrows(
|
|
|
+ NullPointerException.class,
|
|
|
+ () -> transformTests(tests, Collections.singletonList(new InjectWarnings(new ArrayList<>(addWarnings), null)))
|
|
|
+ ).getMessage()
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * test file does not any warnings defined
|
|
|
+ */
|
|
|
+ @Test
|
|
|
+ public void testInjectWarningsNoPreExisting() throws Exception {
|
|
|
+ String testName = "/rest/transform/warnings/without_existing_warnings.yml";
|
|
|
+ List<ObjectNode> tests = getTests(testName);
|
|
|
+ validateSetupDoesNotExist(tests);
|
|
|
+ List<ObjectNode> transformedTests = transformTests(tests);
|
|
|
+ printTest(testName, transformedTests);
|
|
|
+ validateSetupAndTearDown(transformedTests);
|
|
|
+ validateBodyHasWarnings(WARNINGS_REGEX, "Test warnings", transformedTests, addWarnings);
|
|
|
+ validateBodyHasNoWarnings(WARNINGS_REGEX, "Test another", transformedTests);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * test file has preexisting warnings
|
|
|
+ */
|
|
|
+ @Test
|
|
|
+ public void testInjectWarningsWithPreExisting() throws Exception {
|
|
|
+ String testName = "/rest/transform/warnings/with_existing_warnings.yml";
|
|
|
+ List<ObjectNode> tests = getTests(testName);
|
|
|
+ validateSetupExist(tests);
|
|
|
+ validateBodyHasWarnings(WARNINGS_REGEX, tests, Set.of("c", "d"));
|
|
|
+ List<ObjectNode> transformedTests = transformTests(tests);
|
|
|
+ printTest(testName, transformedTests);
|
|
|
+ validateSetupAndTearDown(transformedTests);
|
|
|
+ validateBodyHasWarnings(WARNINGS_REGEX, tests, Set.of("c", "d"));
|
|
|
+ validateBodyHasWarnings(WARNINGS_REGEX, "Test warnings", tests, addWarnings);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected List<String> getKnownFeatures() {
|
|
|
+ return Collections.singletonList(WARNINGS_REGEX);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected List<RestTestTransform<?>> getTransformations() {
|
|
|
+ return Collections.singletonList(new InjectWarnings(true, new ArrayList<>(addWarnings), "Test warnings"));
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected boolean getHumanDebug() {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+}
|