Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for RestTestTransform (0.19 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/RestTestTransform.java

    import org.gradle.api.Named;
    import org.gradle.api.tasks.Input;
    
    /**
     * A single instruction to transforms a REST test.
     */
    public interface RestTestTransform<T extends JsonNode> extends Named {
    
        /**
         * Transform the Json structure per the given {@link RestTestTransform}
         * Implementations are expected to mutate the parent to satisfy the transformation.
         *
         * @param parent The parent of the node to transform.
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.2K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/RestTestTransformByParentArray.java

    import com.fasterxml.jackson.databind.node.ArrayNode;
    
    /**
     * A type of {@link RestTestTransform} that finds the transformation by a given key that has a value that is an {@link ArrayNode}.
     */
    public interface RestTestTransformByParentArray extends RestTestTransform<ArrayNode> {
    
        /**
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1004 bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/RestTestTransformByParentObject.java

    import com.fasterxml.jackson.databind.JsonNode;
    import com.fasterxml.jackson.databind.node.ObjectNode;
    
    /**
     * A type of {@link RestTestTransform} that finds the transformation by a given key in to an {@link ObjectNode}.
     */
    public interface RestTestTransformByParentObject extends RestTestTransform<ObjectNode> {
    
        /**
         * @return The name of key to find in the REST test
         */
        String getKeyToFind();
    
        /**
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.3K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/headers/InjectHeaders.java

    import com.fasterxml.jackson.databind.node.JsonNodeFactory;
    import com.fasterxml.jackson.databind.node.ObjectNode;
    import com.fasterxml.jackson.databind.node.TextNode;
    import org.elasticsearch.gradle.internal.test.rest.transform.RestTestTransform;
    import org.elasticsearch.gradle.internal.test.rest.transform.RestTestTransformByParentObject;
    import org.elasticsearch.gradle.internal.test.rest.transform.feature.FeatureInjector;
    import org.gradle.api.tasks.Input;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jul 07 15:48:06 GMT 2021
    - 3K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/RestTestTransformer.java

    /**
     * Perform the transformations against the set of RestTests from a given file.
     */
    public class RestTestTransformer {
        /**
         * Transforms a REST test based on the requested {@link RestTestTransform}'s
         *
         * @param tests           The REST tests from the same file. Uses linked list so we can easily add to the beginning of the list.
         * @param transformations The set of transformations to perform against the test
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jul 12 17:42:01 GMT 2021
    - 8.1K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/RestTestTransformGlobalTeardown.java

     */
    
    package org.elasticsearch.gradle.internal.test.rest.transform;
    
    import com.fasterxml.jackson.databind.node.ObjectNode;
    
    import javax.annotation.Nullable;
    
    /**
     * A type of {@link RestTestTransform} that transformations or adds a global "teardown" section.
     */
    public interface RestTestTransformGlobalTeardown {
    
        /**
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 956 bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/skip/Skip.java

    import com.fasterxml.jackson.databind.node.JsonNodeFactory;
    import com.fasterxml.jackson.databind.node.ObjectNode;
    import com.fasterxml.jackson.databind.node.TextNode;
    
    import org.elasticsearch.gradle.internal.test.rest.transform.RestTestTransform;
    import org.elasticsearch.gradle.internal.test.rest.transform.RestTestTransformByParentObject;
    import org.elasticsearch.gradle.internal.test.rest.transform.RestTestTransformGlobalSetup;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 30 16:30:48 GMT 2021
    - 4K bytes
    - Click Count (0)
Back to Top