/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF 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.apache.camel.component.rest; import java.util.HashMap; import java.util.Map; import org.apache.camel.CamelContext; import org.apache.camel.ComponentVerifier; import org.apache.camel.Consumer; import org.apache.camel.ContextTestSupport; import org.apache.camel.Endpoint; import org.apache.camel.Processor; import org.apache.camel.Producer; import org.apache.camel.VerifiableComponent; import org.apache.camel.impl.DefaultComponent; import org.apache.camel.impl.JndiRegistry; import org.apache.camel.impl.verifier.ResultBuilder; import org.apache.camel.impl.verifier.ResultErrorHelper; import org.apache.camel.spi.RestConfiguration; import org.apache.camel.spi.RestConsumerFactory; import org.apache.camel.spi.RestProducerFactory; import org.junit.Assert; public class RestComponentVerifierTest extends ContextTestSupport { @Override protected JndiRegistry createRegistry() throws Exception { JndiRegistry registry = super.createRegistry(); registry.bind("rest", new RestComponent()); registry.bind("rest-component", new MyComponent()); return registry; } public void testParameters() throws Exception { RestComponent component = context.getComponent("rest", RestComponent.class); RestComponentVerifier verifier = (RestComponentVerifier)component.getVerifier(); Map<String, Object> parameters = new HashMap<>(); parameters.put("componentName", "rest-component"); parameters.put("host", "http://localhost:1234"); parameters.put("path", "verify"); parameters.put("method", "get"); // This parameter does not belong to the rest component and validation // is delegated to the underlying component parameters.put("authProxy", "http://localhost:8080"); ComponentVerifier.Result result = verifier.verify(ComponentVerifier.Scope.PARAMETERS, parameters); Assert.assertEquals(ComponentVerifier.Result.Status.OK, result.getStatus()); } public void testMissingParameters() throws Exception { RestComponent component = context.getComponent("rest", RestComponent.class); RestComponentVerifier verifier = (RestComponentVerifier)component.getVerifier(); Map<String, Object> parameters = new HashMap<>(); parameters.put("componentName", "rest-component"); parameters.put("host", "http://localhost:" + 1234); parameters.put("path", "verify"); // This parameter does not belong to the rest component and validation // is delegated to the underlying component parameters.put("authProxy", "http://localhost:8080"); ComponentVerifier.Result result = verifier.verify(ComponentVerifier.Scope.PARAMETERS, parameters); Assert.assertEquals(ComponentVerifier.Result.Status.ERROR, result.getStatus()); Assert.assertEquals(1, result.getErrors().size()); Assert.assertEquals(ComponentVerifier.VerificationError.StandardCode.MISSING_PARAMETER, result.getErrors().get(0).getCode()); Assert.assertEquals(1, result.getErrors().get(0).getParameterKeys().size()); Assert.assertTrue(result.getErrors().get(0).getParameterKeys().contains("method")); } // *************************************************** // // *************************************************** private final class MyComponent extends DefaultComponent implements RestProducerFactory, RestConsumerFactory, VerifiableComponent { @Override protected Endpoint createEndpoint(String uri, String remaining, Map<String, Object> parameters) throws Exception { throw new UnsupportedOperationException(); } @Override public Producer createProducer( CamelContext camelContext, String host, String verb, String basePath, String uriTemplate, String queryParameters, String consumes, String produces, Map<String, Object> parameters) throws Exception { throw new UnsupportedOperationException(); } @Override public Consumer createConsumer( CamelContext camelContext, Processor processor, String verb, String basePath, String uriTemplate, String consumes, String produces, RestConfiguration configuration, Map<String, Object> parameters) throws Exception { throw new UnsupportedOperationException(); } @Override public ComponentVerifier getVerifier() { return (scope, parameters) -> ResultBuilder.withStatusAndScope(ComponentVerifier.Result.Status.OK, scope) .error(ResultErrorHelper.requiresOption("authProxy", parameters)) .build(); } } }