blob: 8e5d4661e4e6869430c14c19fe3115ee748496e3 [file] [log] [blame]
/*
* 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 brooklyn.entity;
import java.util.ArrayList;
import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.testng.Assert;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
import brooklyn.entity.basic.ApplicationBuilder;
import brooklyn.entity.basic.Attributes;
import brooklyn.entity.basic.Entities;
import brooklyn.entity.basic.EntityLocal;
import brooklyn.entity.proxying.EntitySpec;
import brooklyn.event.SensorEvent;
import brooklyn.event.SensorEventListener;
import brooklyn.management.EntityManager;
import brooklyn.management.ManagementContext;
import brooklyn.policy.basic.AbstractPolicy;
import brooklyn.test.TestUtils;
import brooklyn.test.entity.LocalManagementContextForTests;
import brooklyn.test.entity.TestApplication;
import brooklyn.test.entity.TestEntity;
@SuppressWarnings({"rawtypes","unchecked"})
public class EntityPreManagementTest {
@SuppressWarnings("unused")
private static final Logger log = LoggerFactory.getLogger(EntityPreManagementTest.class);
private ManagementContext managementContext;
private EntityManager entityManager;
private TestApplication app;
@BeforeMethod(alwaysRun=true)
public void setUp() throws Exception {
managementContext = new LocalManagementContextForTests();
entityManager = managementContext.getEntityManager();
}
@AfterMethod(alwaysRun=true)
public void tearDown() throws Exception {
if (managementContext != null) Entities.destroyAll(managementContext);
}
@Test
public void testSetSensorBeforeManaged() {
TestEntity e = entityManager.createEntity(EntitySpec.create(TestEntity.class));
e.setAttribute(Attributes.HOSTNAME, "martian.martian");
Assert.assertEquals(e.getAttribute(Attributes.HOSTNAME), "martian.martian");
Assert.assertFalse(e.getManagementSupport().isManagementContextReal());
}
@Test
public void testAddPolicyToEntityBeforeManaged() {
TestEntity e = entityManager.createEntity(EntitySpec.create(TestEntity.class));
final List events = new ArrayList();
e.addPolicy(new AbstractPolicy() {
@Override
public void setEntity(EntityLocal entity) {
super.setEntity(entity);
subscribe(entity, Attributes.HOSTNAME, new SensorEventListener() {
@Override
public void onEvent(SensorEvent event) {
events.add(event);
}
});
}
});
e.setAttribute(Attributes.HOSTNAME, "martian.martian");
Assert.assertEquals(e.getAttribute(Attributes.HOSTNAME), "martian.martian");
if (!events.isEmpty()) Assert.fail("Shouldn't have events yet: "+events);
Assert.assertFalse(e.getManagementSupport().isManagementContextReal());
TestApplication app = ApplicationBuilder.newManagedApp(TestApplication.class, managementContext);
e.setParent(app);
Entities.manage(e);
TestUtils.assertEventually(new Runnable() {
@Override
public void run() {
if (events.isEmpty()) Assert.fail("no events received");
}});
Assert.assertEquals(events.size(), 1, "Expected 1 event; got: "+events);
}
@Test
public void testAddPolicyToApplicationBeforeManaged() {
app = entityManager.createEntity(EntitySpec.create(TestApplication.class));
final List events = new ArrayList();
app.addPolicy(new AbstractPolicy() {
@Override
public void setEntity(EntityLocal entity) {
super.setEntity(entity);
subscribe(entity, Attributes.HOSTNAME, new SensorEventListener() {
@Override
public void onEvent(SensorEvent event) {
events.add(event);
}
});
}
});
app.setAttribute(Attributes.HOSTNAME, "martian.martian");
Assert.assertEquals(app.getAttribute(Attributes.HOSTNAME), "martian.martian");
if (!events.isEmpty()) Assert.fail("Shouldn't have events yet: "+events);
Entities.startManagement(app, managementContext);
TestUtils.assertEventually(new Runnable() {
@Override
public void run() {
if (events.isEmpty()) Assert.fail("no events received");
}});
Assert.assertEquals(events.size(), 1, "Expected 1 event; got: "+events);
}
}