/* * 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.k.loader.js; import java.util.ArrayList; import java.util.Collection; import java.util.List; import java.util.stream.Stream; import org.apache.camel.CamelContext; import org.apache.camel.RoutesBuilder; import org.apache.camel.builder.RouteBuilder; import org.apache.camel.impl.DefaultCamelContext; import org.apache.camel.k.Runtime; import org.apache.camel.k.Source; import org.apache.camel.k.SourceLoader; import org.apache.camel.k.Sources; import org.apache.camel.k.listener.RoutesConfigurer; import org.apache.camel.model.RouteDefinition; import org.apache.camel.model.ToDefinition; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.Arguments; import org.junit.jupiter.params.provider.MethodSource; import static org.assertj.core.api.Assertions.assertThat; public class RoutesLoaderTest { @ParameterizedTest @MethodSource("parameters") public void testLoaders(String location, Class<? extends SourceLoader> type) throws Exception { TestRuntime runtime = new TestRuntime(); Source source = Sources.fromURI(location); SourceLoader loader = RoutesConfigurer.load(runtime, source); assertThat(loader).isInstanceOf(type); assertThat(runtime.builders).hasSize(1); assertThat(runtime.builders).first().isInstanceOf(RouteBuilder.class); RouteBuilder builder = (RouteBuilder)runtime.builders.get(0); builder.setContext(runtime.getCamelContext()); builder.configure(); List<RouteDefinition> routes = builder.getRouteCollection().getRoutes(); assertThat(routes).hasSize(1); assertThat(routes.get(0).getInput().getEndpointUri()).matches("timer:/*tick"); assertThat(routes.get(0).getOutputs().get(0)).isInstanceOf(ToDefinition.class); } static Stream<Arguments> parameters() { return Stream.of( Arguments.arguments("classpath:routes.js", JavaScriptSourceLoader.class), Arguments.arguments("classpath:routes-with-endpoint-dsl.js", JavaScriptSourceLoader.class), Arguments.arguments("classpath:routes-compressed.js.gz.b64?language=js&compression=true", JavaScriptSourceLoader.class), Arguments.arguments("classpath:routes.mytype?language=js", JavaScriptSourceLoader.class) ); } static class TestRuntime implements Runtime { private final CamelContext camelContext; private final List<RoutesBuilder> builders; public TestRuntime() { this.camelContext = new DefaultCamelContext(); this.builders = new ArrayList<>(); } @Override public CamelContext getCamelContext() { return this.camelContext; } @Override public void addRoutes(RoutesBuilder builder) { this.builders.add(builder); } @Override public void setPropertiesLocations(Collection<String> locations) { } } }