/* * 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.brooklyn.camp.spi.pdp; import java.io.IOException; import java.io.InputStreamReader; import java.io.Reader; import org.apache.brooklyn.camp.BasicCampPlatform; import org.apache.brooklyn.camp.spi.AssemblyTemplate; import org.apache.brooklyn.camp.spi.pdp.Artifact; import org.apache.brooklyn.camp.spi.pdp.DeploymentPlan; import org.apache.brooklyn.camp.spi.pdp.Service; import org.apache.brooklyn.camp.test.mock.web.MockWebPlatform; import org.apache.brooklyn.util.stream.Streams; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.testng.Assert; import org.testng.annotations.Test; public class PdpYamlTest { private static final Logger log = LoggerFactory.getLogger(PdpYamlTest.class); @Test public void testSimpleYamlArtifactParse() throws IOException { BasicCampPlatform platform = MockWebPlatform.populate(new BasicCampPlatform()); Reader input = Streams.reader(getClass().getResourceAsStream("pdp-single-artifact.yaml")); DeploymentPlan plan = platform.pdp().parseDeploymentPlan(input); log.info("DP is:\n"+plan.toString()); Assert.assertEquals(plan.getName(), "sample"); Assert.assertEquals(plan.getArtifacts().size(), 1); Assert.assertEquals(plan.getServices().size(), 0); Artifact artifact1 = plan.getArtifacts().iterator().next(); Assert.assertEquals(artifact1.getName(), "sample WAR"); } @Test public void testSimpleYamlServiceParse() throws IOException { BasicCampPlatform platform = MockWebPlatform.populate(new BasicCampPlatform()); Reader input = Streams.reader(getClass().getResourceAsStream("pdp-single-service.yaml")); DeploymentPlan plan = platform.pdp().parseDeploymentPlan(input); log.info("DP is:\n"+plan.toString()); Assert.assertEquals(plan.getName(), "sample"); Assert.assertEquals(plan.getArtifacts().size(), 0); Assert.assertEquals(plan.getServices().size(), 1); Service service1 = plan.getServices().iterator().next(); Assert.assertEquals(service1.getName(), "Hello WAR"); } @Test public void testSimpleYamlMatch() throws IOException { BasicCampPlatform platform = MockWebPlatform.populate(new BasicCampPlatform()); Reader input = new InputStreamReader(getClass().getResourceAsStream("pdp-single-artifact.yaml")); AssemblyTemplate at = platform.pdp().registerDeploymentPlan(input); log.info("AT is:\n"+at.toString()); Assert.assertEquals(at.getApplicationComponentTemplates().links().size(), 1); Assert.assertEquals(at.getName(), "sample"); } }