/* * 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.entity.software.base; import static org.testng.Assert.assertEquals; import static org.testng.Assert.assertSame; import static org.testng.Assert.assertTrue; import org.apache.brooklyn.api.entity.Entity; import org.apache.brooklyn.api.entity.EntitySpec; import org.apache.brooklyn.api.location.Location; import org.apache.brooklyn.api.mgmt.ManagementContext; import org.apache.brooklyn.core.entity.Entities; import org.apache.brooklyn.core.test.entity.TestApplication; import org.apache.brooklyn.core.test.entity.TestEntity; import org.apache.brooklyn.entity.software.base.SameServerEntity; import org.testng.annotations.AfterMethod; import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; import org.apache.brooklyn.location.localhost.LocalhostMachineProvisioningLocation; import org.apache.brooklyn.location.localhost.LocalhostMachineProvisioningLocation.LocalhostMachine; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableSet; import com.google.common.collect.Iterables; public class SameServerEntityTest { private LocalhostMachineProvisioningLocation loc; private ManagementContext mgmt; private TestApplication app; private SameServerEntity entity; @BeforeMethod(alwaysRun=true) public void setUp() { loc = new LocalhostMachineProvisioningLocation(); app = TestApplication.Factory.newManagedInstanceForTests(); mgmt = app.getManagementContext(); entity = app.createAndManageChild(EntitySpec.create(SameServerEntity.class)); } @AfterMethod(alwaysRun=true) public void tearDown() { if (app != null) Entities.destroyAll(mgmt); } @Test public void testUsesSameMachineLocationForEachChild() throws Exception { Entity child1 = entity.addChild(EntitySpec.create(TestEntity.class)); Entity child2 = entity.addChild(EntitySpec.create(TestEntity.class)); app.start(ImmutableList.of(loc)); Location child1Loc = Iterables.getOnlyElement(child1.getLocations()); Location child2Loc = Iterables.getOnlyElement(child2.getLocations()); assertSame(child1Loc, child2Loc); assertTrue(child1Loc instanceof LocalhostMachine, "loc="+child1Loc); assertEquals(ImmutableSet.of(child1Loc), ImmutableSet.copyOf(loc.getInUse())); app.stop(); assertEquals(ImmutableSet.of(), ImmutableSet.copyOf(loc.getInUse())); } }