/** * Copyright (C) 2015 Orange * Licensed 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 com.francetelecom.clara.cloud.paas.projection.cf; import com.francetelecom.clara.cloud.commons.MavenReference; import com.francetelecom.clara.cloud.logicalmodel.LogicalDeployment; import com.francetelecom.clara.cloud.logicalmodel.samplecatalog.BaseReferenceLogicalModelsCatalog; import com.francetelecom.clara.cloud.logicalmodel.samplecatalog.CFWicketCxfJpaLogicalModelCatalog; import com.francetelecom.clara.cloud.logicalmodel.samplecatalog.SampleAppProperties; import com.francetelecom.clara.cloud.model.TechnicalDeployment; import com.francetelecom.clara.cloud.techmodel.cf.App; import com.francetelecom.clara.cloud.techmodel.cf.Space; import org.fest.assertions.Assertions; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.runners.MockitoJUnitRunner; @RunWith(MockitoJUnitRunner.class) public class RouteMappingProjectionRuleTest { @Test public void should_map_route_to_app() throws Exception { // Given BaseReferenceLogicalModelsCatalog logicalModelCatalog = new CFWicketCxfJpaLogicalModelCatalog(); SampleAppProperties sampleAppProperties = new SampleAppProperties(); LogicalDeployment logicalDeployment = new LogicalDeployment(); logicalModelCatalog.setSampleAppProperties(sampleAppProperties); logicalModelCatalog.populateLogicalDeployment(logicalDeployment); WebGuiServiceProjectionRule webGuiServiceProjectionRule = new WebGuiServiceProjectionRule(); final TechnicalDeployment td = new TechnicalDeployment(""); RouteStrategyImpl routeStrategy = new RouteStrategyImpl("cfapps.elpaaso.net", "paasinstance"); webGuiServiceProjectionRule.setRouteStrategy(routeStrategy); final Space space = new Space(); webGuiServiceProjectionRule.apply(logicalDeployment, td, new DummyProjectionContext(space)); //simulate app generation App app = new App(space, new MavenReference(), "joyn"); app.setLogicalModelId(logicalDeployment.findProcessingNode("Cf-wicket-jpaSample").getName()); td.add(app); RouteMappingProjectionRule routeMappingProjectionRule = new RouteMappingProjectionRule(); //when routeMappingProjectionRule.apply(logicalDeployment, td, new DummyProjectionContext(space)); //then a route should be map to the app Assertions.assertThat(app.getRoutes()).hasSize(1); } }