/* * 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.core.entity; import static org.testng.Assert.assertEquals; import static org.testng.Assert.assertTrue; import java.util.List; import java.util.Map; import org.apache.brooklyn.api.entity.Entity; import org.apache.brooklyn.api.entity.ImplementedBy; import org.apache.brooklyn.core.entity.AbstractEntity; import org.apache.brooklyn.core.entity.Entities; import org.apache.brooklyn.core.location.SimulatedLocation; import org.apache.brooklyn.core.test.entity.LocalManagementContextForTests; import org.apache.brooklyn.core.test.entity.TestApplication; import org.apache.brooklyn.core.test.entity.TestApplicationImpl; import org.apache.brooklyn.util.collections.MutableMap; import org.testng.annotations.AfterMethod; import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; /** * Tests the deprecated use of AbstractAppliation, where its constructor is called directly. * * @author aled */ public class AbstractEntityLegacyTest { private List<SimulatedLocation> locs; private TestApplication app; @ImplementedBy(MyEntityImpl.class) public interface MyEntity extends Entity { int getConfigureCount(); int getConfigureDuringConstructionCount(); } public static class MyEntityImpl extends AbstractEntity implements MyEntity { volatile int configureCount; volatile int configureDuringConstructionCount; public MyEntityImpl() { super(); configureDuringConstructionCount = configureCount; } public MyEntityImpl(Entity parent) { super(parent); configureDuringConstructionCount = configureCount; } public MyEntityImpl(Map flags, Entity parent) { super(flags, parent); configureDuringConstructionCount = configureCount; } @Override public AbstractEntity configure(Map flags) { configureCount++; return super.configure(flags); } @Override public int getConfigureCount() { return configureCount; } @Override public int getConfigureDuringConstructionCount() { return configureDuringConstructionCount; } } @BeforeMethod(alwaysRun=true) public void setUp() throws Exception { } @AfterMethod(alwaysRun=true) public void tearDown() throws Exception { if (app != null) Entities.destroyAll(app.getManagementContext()); } @Test public void testLegacyConstructionCallsConfigureMethod() throws Exception { MyEntity entity = new MyEntityImpl(); assertEquals(entity.getConfigureCount(), 1); assertEquals(entity.getConfigureDuringConstructionCount(), 1); } @Test public void testLegacyConstructionSetsDefaultDisplayName() throws Exception { app = new TestApplicationImpl(); MyEntity entity = new MyEntityImpl(app); assertTrue(entity.getDisplayName().startsWith("MyEntityImpl:"+entity.getId().substring(0,4)), "displayName="+entity.getDisplayName()); Entities.startManagement(app, LocalManagementContextForTests.newInstance()); assertTrue(entity.getDisplayName().startsWith("MyEntity:"+entity.getId().substring(0,4)), "displayName="+entity.getDisplayName()); } @Test public void testLegacyConstructionUsesCustomDisplayName() throws Exception { app = new TestApplicationImpl(MutableMap.of("displayName", "appname")); MyEntity entity = new MyEntityImpl(MutableMap.of("displayName", "entityname"), app); MyEntity entity2 = new MyEntityImpl(MutableMap.of("name", "entityname2"), app); assertEquals(app.getDisplayName(), "appname"); assertEquals(entity.getDisplayName(), "entityname"); assertEquals(entity2.getDisplayName(), "entityname2"); } }