Search in sources :

Example 1 with ComponentIntegrityValidator

use of org.eclipse.che.api.workspace.server.devfile.validator.ComponentIntegrityValidator in project devspaces-images by redhat-developer.

the class DefaultFactoryParameterResolverTest method shouldResolveRelativeFiles.

@Test
public void shouldResolveRelativeFiles() throws Exception {
    // given
    // we need to set up an "almost real" devfile converter which is a little bit involved
    DevfileSchemaValidator validator = new DevfileSchemaValidator(new DevfileSchemaProvider(), new DevfileVersionDetector());
    Map<String, ComponentIntegrityValidator> validators = new HashMap<>();
    validators.put(EDITOR_COMPONENT_TYPE, new NoopComponentIntegrityValidator());
    validators.put(PLUGIN_COMPONENT_TYPE, new NoopComponentIntegrityValidator());
    validators.put(KUBERNETES_COMPONENT_TYPE, new NoopComponentIntegrityValidator());
    validators.put(OPENSHIFT_COMPONENT_TYPE, new NoopComponentIntegrityValidator());
    DevfileIntegrityValidator integrityValidator = new DevfileIntegrityValidator(validators);
    DevfileParser devfileParser = new DevfileParser(validator, integrityValidator);
    URLFactoryBuilder factoryBuilder = new URLFactoryBuilder("editor", "plugin", false, devfileParser, new DevfileVersionDetector());
    DefaultFactoryParameterResolver res = new DefaultFactoryParameterResolver(factoryBuilder, urlFetcher);
    // set up our factory with the location of our devfile that is referencing our localfile
    Map<String, String> factoryParameters = new HashMap<>();
    factoryParameters.put(URL_PARAMETER_NAME, "http://myloc.com/aa/bb/devfile");
    doReturn(DEVFILE).when(urlFetcher).fetch(eq("http://myloc.com/aa/bb/devfile"));
    doReturn("localfile").when(urlFetcher).fetch("http://myloc.com/aa/localfile");
    // when
    res.createFactory(factoryParameters);
    // then
    verify(urlFetcher).fetch(eq("http://myloc.com/aa/localfile"));
}
Also used : HashMap(java.util.HashMap) DevfileVersionDetector(org.eclipse.che.api.workspace.server.devfile.DevfileVersionDetector) NoopComponentIntegrityValidator(org.eclipse.che.api.workspace.server.devfile.validator.ComponentIntegrityValidator.NoopComponentIntegrityValidator) ComponentIntegrityValidator(org.eclipse.che.api.workspace.server.devfile.validator.ComponentIntegrityValidator) DevfileSchemaProvider(org.eclipse.che.api.workspace.server.devfile.schema.DevfileSchemaProvider) DevfileParser(org.eclipse.che.api.workspace.server.devfile.DevfileParser) NoopComponentIntegrityValidator(org.eclipse.che.api.workspace.server.devfile.validator.ComponentIntegrityValidator.NoopComponentIntegrityValidator) DevfileIntegrityValidator(org.eclipse.che.api.workspace.server.devfile.validator.DevfileIntegrityValidator) URLFactoryBuilder(org.eclipse.che.api.factory.server.urlfactory.URLFactoryBuilder) DevfileSchemaValidator(org.eclipse.che.api.workspace.server.devfile.validator.DevfileSchemaValidator) Test(org.testng.annotations.Test)

Example 2 with ComponentIntegrityValidator

use of org.eclipse.che.api.workspace.server.devfile.validator.ComponentIntegrityValidator in project che-server by eclipse-che.

the class DefaultFactoryParameterResolverTest method shouldResolveRelativeFiles.

@Test
public void shouldResolveRelativeFiles() throws Exception {
    // given
    // we need to set up an "almost real" devfile converter which is a little bit involved
    DevfileSchemaValidator validator = new DevfileSchemaValidator(new DevfileSchemaProvider(), new DevfileVersionDetector());
    Map<String, ComponentIntegrityValidator> validators = new HashMap<>();
    validators.put(EDITOR_COMPONENT_TYPE, new NoopComponentIntegrityValidator());
    validators.put(PLUGIN_COMPONENT_TYPE, new NoopComponentIntegrityValidator());
    validators.put(KUBERNETES_COMPONENT_TYPE, new NoopComponentIntegrityValidator());
    validators.put(OPENSHIFT_COMPONENT_TYPE, new NoopComponentIntegrityValidator());
    DevfileIntegrityValidator integrityValidator = new DevfileIntegrityValidator(validators);
    DevfileParser devfileParser = new DevfileParser(validator, integrityValidator);
    URLFactoryBuilder factoryBuilder = new URLFactoryBuilder("editor", "plugin", false, devfileParser, new DevfileVersionDetector());
    DefaultFactoryParameterResolver res = new DefaultFactoryParameterResolver(factoryBuilder, urlFetcher);
    // set up our factory with the location of our devfile that is referencing our localfile
    Map<String, String> factoryParameters = new HashMap<>();
    factoryParameters.put(URL_PARAMETER_NAME, "http://myloc.com/aa/bb/devfile");
    doReturn(DEVFILE).when(urlFetcher).fetch(eq("http://myloc.com/aa/bb/devfile"));
    doReturn("localfile").when(urlFetcher).fetch("http://myloc.com/aa/localfile");
    // when
    res.createFactory(factoryParameters);
    // then
    verify(urlFetcher).fetch(eq("http://myloc.com/aa/localfile"));
}
Also used : HashMap(java.util.HashMap) DevfileVersionDetector(org.eclipse.che.api.workspace.server.devfile.DevfileVersionDetector) NoopComponentIntegrityValidator(org.eclipse.che.api.workspace.server.devfile.validator.ComponentIntegrityValidator.NoopComponentIntegrityValidator) ComponentIntegrityValidator(org.eclipse.che.api.workspace.server.devfile.validator.ComponentIntegrityValidator) DevfileSchemaProvider(org.eclipse.che.api.workspace.server.devfile.schema.DevfileSchemaProvider) DevfileParser(org.eclipse.che.api.workspace.server.devfile.DevfileParser) NoopComponentIntegrityValidator(org.eclipse.che.api.workspace.server.devfile.validator.ComponentIntegrityValidator.NoopComponentIntegrityValidator) DevfileIntegrityValidator(org.eclipse.che.api.workspace.server.devfile.validator.DevfileIntegrityValidator) URLFactoryBuilder(org.eclipse.che.api.factory.server.urlfactory.URLFactoryBuilder) DevfileSchemaValidator(org.eclipse.che.api.workspace.server.devfile.validator.DevfileSchemaValidator) Test(org.testng.annotations.Test)

Aggregations

HashMap (java.util.HashMap)2 URLFactoryBuilder (org.eclipse.che.api.factory.server.urlfactory.URLFactoryBuilder)2 DevfileParser (org.eclipse.che.api.workspace.server.devfile.DevfileParser)2 DevfileVersionDetector (org.eclipse.che.api.workspace.server.devfile.DevfileVersionDetector)2 DevfileSchemaProvider (org.eclipse.che.api.workspace.server.devfile.schema.DevfileSchemaProvider)2 ComponentIntegrityValidator (org.eclipse.che.api.workspace.server.devfile.validator.ComponentIntegrityValidator)2 NoopComponentIntegrityValidator (org.eclipse.che.api.workspace.server.devfile.validator.ComponentIntegrityValidator.NoopComponentIntegrityValidator)2 DevfileIntegrityValidator (org.eclipse.che.api.workspace.server.devfile.validator.DevfileIntegrityValidator)2 DevfileSchemaValidator (org.eclipse.che.api.workspace.server.devfile.validator.DevfileSchemaValidator)2 Test (org.testng.annotations.Test)2