/* * 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.config; import static org.testng.Assert.assertEquals; import java.io.File; import org.apache.brooklyn.core.internal.BrooklynProperties; import org.apache.brooklyn.util.os.Os; import org.testng.annotations.AfterMethod; import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; import com.google.common.base.Charsets; import com.google.common.io.Files; @Test public class BrooklynPropertiesBuilderTest { private File globalPropertiesFile; private File localPropertiesFile; @BeforeMethod(alwaysRun=true) public void setUp() throws Exception { globalPropertiesFile = Os.newTempFile(getClass(), ".global.properties"); localPropertiesFile = Os.newTempFile(getClass(), "local.properties"); } @AfterMethod(alwaysRun=true) public void tearDown() throws Exception { if (globalPropertiesFile != null) globalPropertiesFile.delete(); if (localPropertiesFile != null) localPropertiesFile.delete(); } @Test public void testSetGlobalBrooklynPropertiesFile() throws Exception { String globalPropertiesContents = "brooklyn.mykey=myval"; Files.write(globalPropertiesContents, globalPropertiesFile, Charsets.UTF_8); BrooklynProperties props = new BrooklynProperties.Factory.Builder() .globalPropertiesFile(globalPropertiesFile.getAbsolutePath()) .build(); assertEquals(props.get("brooklyn.mykey"), "myval"); } @Test public void testSetLocalBrooklynPropertiesFile() throws Exception { String globalPropertiesContents = "brooklyn.mykey=myvalglobal"+"\n"+ "brooklyn.mykey2=myvalglobal2"+"\n"; Files.write(globalPropertiesContents, globalPropertiesFile, Charsets.UTF_8); String localPropertiesContents = "brooklyn.mykey=myvaloverriding"+"\n"+ "brooklyn.mykeyLocal=myvallocal2"+"\n"; Files.write(localPropertiesContents, localPropertiesFile, Charsets.UTF_8); BrooklynProperties props = new BrooklynProperties.Factory.Builder() .globalPropertiesFile(globalPropertiesFile.getAbsolutePath()) .localPropertiesFile(localPropertiesFile.getAbsolutePath()) .build(); assertEquals(props.get("brooklyn.mykey"), "myvaloverriding"); assertEquals(props.get("brooklyn.mykey2"), "myvalglobal2"); assertEquals(props.get("brooklyn.mykeyLocal"), "myvallocal2"); } }