/* * 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.location; import static org.testng.Assert.assertFalse; import static org.testng.Assert.assertTrue; import org.apache.brooklyn.api.location.Location; import org.apache.brooklyn.api.location.LocationSpec; import org.apache.brooklyn.core.entity.Entities; import org.apache.brooklyn.core.location.LocationPredicates; import org.apache.brooklyn.core.location.Locations; import org.apache.brooklyn.core.mgmt.internal.LocalManagementContext; import org.apache.brooklyn.core.test.entity.LocalManagementContextForTests; import org.apache.brooklyn.core.test.entity.TestEntity; import org.apache.brooklyn.location.localhost.LocalhostMachineProvisioningLocation; import org.apache.brooklyn.location.ssh.SshMachineLocation; import org.testng.annotations.AfterMethod; import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; public class LocationPredicatesTest { private LocalManagementContext managementContext; private LocalhostMachineProvisioningLocation loc; private SshMachineLocation childLoc; private Location grandchildLoc; @BeforeMethod(alwaysRun=true) public void setUp() throws Exception { managementContext = LocalManagementContextForTests.newInstance(); loc = (LocalhostMachineProvisioningLocation) managementContext.getLocationRegistry().resolve("localhost:(name=mydisplayname)"); childLoc = loc.obtain(); grandchildLoc = managementContext.getLocationManager().createLocation(LocationSpec.create(SimulatedLocation.class).parent(childLoc)); } @AfterMethod(alwaysRun=true) public void tearDown() throws Exception { if (managementContext != null) Entities.destroyAll(managementContext); } @Test public void testIdEqualTo() throws Exception { assertTrue(LocationPredicates.idEqualTo(loc.getId()).apply(loc)); assertFalse(LocationPredicates.idEqualTo("wrongid").apply(loc)); } @Test public void testConfigEqualTo() throws Exception { loc.config().set(TestEntity.CONF_NAME, "myname"); assertTrue(LocationPredicates.configEqualTo(TestEntity.CONF_NAME, "myname").apply(loc)); assertFalse(LocationPredicates.configEqualTo(TestEntity.CONF_NAME, "wrongname").apply(loc)); } @Test public void testDisplayNameEqualTo() throws Exception { assertTrue(LocationPredicates.displayNameEqualTo("mydisplayname").apply(loc)); assertFalse(LocationPredicates.displayNameEqualTo("wrongname").apply(loc)); } @Test public void testIsChildOf() throws Exception { assertTrue(LocationPredicates.isChildOf(loc).apply(childLoc)); assertFalse(LocationPredicates.isChildOf(loc).apply(loc)); assertFalse(LocationPredicates.isChildOf(childLoc).apply(loc)); } @Test public void testIsDescendantOf() throws Exception { assertTrue(LocationPredicates.isDescendantOf(loc).apply(grandchildLoc)); assertTrue(LocationPredicates.isDescendantOf(loc).apply(childLoc)); assertFalse(LocationPredicates.isDescendantOf(loc).apply(loc)); assertFalse(LocationPredicates.isDescendantOf(childLoc).apply(loc)); } @Test public void testManaged() throws Exception { // TODO get exception in LocalhostMachineProvisioningLocation.removeChild because childLoc is "in use"; // this happens from the call to unmanage(loc), which first unmanaged the children. loc.release(childLoc); assertTrue(LocationPredicates.managed().apply(loc)); Locations.unmanage(loc); assertFalse(LocationPredicates.managed().apply(loc)); } }