adds test for dynamically added keys

Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/56ddfe6c
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/56ddfe6c
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/56ddfe6c

Branch: refs/heads/master
Commit: 56ddfe6c59dfed02c31b48e6bc82045b00cd237e
Parents: 0a416f3
Author: Robert Moss <robert.m...@cloudsoftcorp.com>
Authored: Thu Feb 11 10:13:10 2016 +0000
Committer: Robert Moss <robert.m...@cloudsoftcorp.com>
Committed: Thu Feb 11 11:18:05 2016 +0000

----------------------------------------------------------------------
 .../software/base/InboundPortsUtilsTest.java    | 53 ++++++++++++++++++++
 1 file changed, 53 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/56ddfe6c/software/base/src/test/java/org/apache/brooklyn/entity/software/base/InboundPortsUtilsTest.java
----------------------------------------------------------------------
diff --git 
a/software/base/src/test/java/org/apache/brooklyn/entity/software/base/InboundPortsUtilsTest.java
 
b/software/base/src/test/java/org/apache/brooklyn/entity/software/base/InboundPortsUtilsTest.java
new file mode 100644
index 0000000..fe18191
--- /dev/null
+++ 
b/software/base/src/test/java/org/apache/brooklyn/entity/software/base/InboundPortsUtilsTest.java
@@ -0,0 +1,53 @@
+/*
+ * 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 java.util.Collection;
+
+import org.apache.brooklyn.api.entity.EntitySpec;
+import org.apache.brooklyn.api.mgmt.ManagementContext;
+import org.apache.brooklyn.config.ConfigKey;
+import org.apache.brooklyn.core.config.ConfigKeys;
+import org.apache.brooklyn.core.entity.Entities;
+import org.apache.brooklyn.core.test.BrooklynAppUnitTestSupport;
+import org.apache.brooklyn.core.test.entity.TestApplication;
+import org.apache.brooklyn.core.test.entity.TestEntity;
+import 
org.apache.brooklyn.location.localhost.LocalhostMachineProvisioningLocation;
+import org.testng.annotations.AfterMethod;
+import org.testng.annotations.BeforeMethod;
+import org.testng.annotations.Test;
+import org.testng.Assert;
+
+import com.google.common.collect.ImmutableSet;
+
+public class InboundPortsUtilsTest extends BrooklynAppUnitTestSupport {
+
+    @Test
+    public void testGetRequiredOpenPortsGetsDynamicallyAddedKeys() {
+        TestEntity entity = 
app.createAndManageChild(EntitySpec.create(TestEntity.class));
+        Collection<Integer> defaultRequiredOpenPorts = 
InboundPortsUtils.getRequiredOpenPorts(entity, ImmutableSet.<ConfigKey<?>>of(), 
true, null);
+        Assert.assertEquals(defaultRequiredOpenPorts, ImmutableSet.of(), 
"Expected no ports");
+        ConfigKey<Integer> newTestConfigKeyPort = 
ConfigKeys.newIntegerConfigKey("new.test.config.key.port");
+        ConfigKey<String> newTestConfigKeyString = 
ConfigKeys.newStringConfigKey("new.test.config.key.string");
+        entity.config().set(newTestConfigKeyPort, 9999);
+        entity.config().set(newTestConfigKeyString, "foo.bar");
+        Collection<Integer> dynamicRequiredOpenPorts = 
InboundPortsUtils.getRequiredOpenPorts(entity, ImmutableSet.<ConfigKey<?>>of(), 
true, null);
+        Assert.assertEquals(dynamicRequiredOpenPorts, ImmutableSet.of(9999), 
"Expected new port to be added");
+    }
+}

Reply via email to