Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for yamlSpecs (0.13 seconds)

  1. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rest/RestResourcesPluginFuncTest.groovy

            file("/build/restResources/yamlSpecs/rest-api-spec/api/" + apiFoo).exists()
            file("/build/restResources/yamlSpecs/rest-api-spec/api/" + apiXpackFoo).exists()
            file("/build/restResources/yamlSpecs/rest-api-spec/api/" + apiBar).exists() == false
            file("/build/restResources/yamlSpecs/rest-api-spec/api/" + apiXpackBar).exists() == false
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jul 20 21:05:16 GMT 2021
    - 7K bytes
    - Click Count (0)
  2. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rest/InternalYamlRestTestPluginFuncTest.groovy

            file("/build/restResources/yamlSpecs/rest-api-spec/api/" + api).exists()
            file("/build/resources/yamlRestTest/rest-api-spec/test/10_basic.yml").exists()
            file("/build/classes/java/yamlRestTest/MockIT.class").exists()
    
            // check that our copied specs and tests are on the yamlRestTest classpath
            result.output.contains("./build/restResources/yamlSpecs")
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 03 10:22:28 GMT 2021
    - 3.1K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/RestResourcesPlugin.java

                    task.getInclude().set(extension.getRestApi().getInclude());
                    task.setConfig(specConfig);
                    task.getOutputResourceDir().set(project.getLayout().getBuildDirectory().dir("restResources/yamlSpecs"));
                    task.getAdditionalYamlTestsDir().set(copyRestYamlTestTask.flatMap(CopyRestTestsTask::getOutputResourceDir));
                    task.setSourceResourceDir(
                        defaultSourceSet.getResources()
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jun 23 09:36:58 GMT 2021
    - 6.4K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/rest/compat/YamlRestCompatTestPlugin.java

            final Path compatRestResourcesDir = Path.of("restResources").resolve("v" + compatibleVersion);
            final Path compatSpecsDir = compatRestResourcesDir.resolve("yamlSpecs");
            final Path compatTestsDir = compatRestResourcesDir.resolve("yamlTests");
    
            project.getPluginManager().apply(ElasticsearchJavaBasePlugin.class);
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 03 16:26:11 GMT 2021
    - 11.7K bytes
    - Click Count (0)
  5. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rest/YamlRestCompatTestPluginFuncTest.groovy

        def compatibleVersion = Version.fromString(VersionProperties.getVersions().get("elasticsearch")).getMajor() - 1
        def specIntermediateDir = "restResources/v${compatibleVersion}/yamlSpecs"
        def testIntermediateDir = "restResources/v${compatibleVersion}/yamlTests"
        def transformTask  = ":yamlRestTestV${compatibleVersion}CompatTransform"
        def YAML_FACTORY = new YAMLFactory()
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 30 16:30:48 GMT 2021
    - 16.4K bytes
    - Click Count (0)
Back to Top