/** * 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.ambari.server.topology; import static org.junit.Assert.assertEquals; import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Set; import org.junit.Test; /** * Test the Setting class */ public class SettingTest { /** * Test get and set of entire setting. */ @Test public void testGetProperties() { Map<String, Set<HashMap<String, String>>> properties = new HashMap<>(); Set<HashMap<String, String>> setting1 = new HashSet<>(); Set<HashMap<String, String>> setting2 = new HashSet<>(); Set<HashMap<String, String>> setting3 = new HashSet<>(); // Setting 1: Property1 HashMap<String, String> setting1Properties1 = new HashMap<>(); setting1Properties1.put(Setting.SETTING_NAME_RECOVERY_ENABLED, "true"); setting1.add(setting1Properties1); // Setting 2: Property1 and Property2 HashMap<String, String> setting2Properties1 = new HashMap<>(); setting2Properties1.put(Setting.SETTING_NAME_NAME, "HDFS"); setting2Properties1.put(Setting.SETTING_NAME_RECOVERY_ENABLED, "false"); HashMap<String, String> setting2Properties2 = new HashMap<>(); setting2Properties2.put(Setting.SETTING_NAME_NAME, "TEZ"); setting2Properties2.put(Setting.SETTING_NAME_RECOVERY_ENABLED, "false"); setting2.add(setting2Properties1); setting2.add(setting2Properties2); HashMap<String, String> setting3Properties1 = new HashMap<>(); setting1Properties1.put(Setting.SETTING_NAME_SKIP_FAILURE, "true"); setting1.add(setting3Properties1); properties.put(Setting.SETTING_NAME_RECOVERY_SETTINGS, setting1); properties.put(Setting.SETTING_NAME_SERVICE_SETTINGS, setting2); properties.put(Setting.SETTING_NAME_DEPLOYMENT_SETTINGS, setting3); Setting setting = new Setting(properties); assertEquals(properties, setting.getProperties()); } /** * Validate the properties for a given setting. */ @Test public void testGetSettingProperties() { Map<String, Set<HashMap<String, String>>> properties = new HashMap<>(); Set<HashMap<String, String>> setting1 = new HashSet<>(); Set<HashMap<String, String>> setting2 = new HashSet<>(); // Setting 1: Property1 HashMap<String, String> setting1Properties1 = new HashMap<>(); setting1Properties1.put(Setting.SETTING_NAME_RECOVERY_ENABLED, "true"); setting1.add(setting1Properties1); // Setting 2: Property1 and Property2 HashMap<String, String> setting2Properties1 = new HashMap<>(); setting2Properties1.put(Setting.SETTING_NAME_NAME, "HDFS"); setting2Properties1.put(Setting.SETTING_NAME_RECOVERY_ENABLED, "false"); HashMap<String, String> setting2Properties2 = new HashMap<>(); setting2Properties2.put(Setting.SETTING_NAME_NAME, "TEZ"); setting2Properties2.put(Setting.SETTING_NAME_RECOVERY_ENABLED, "false"); setting2.add(setting2Properties1); setting2.add(setting2Properties2); properties.put(Setting.SETTING_NAME_RECOVERY_SETTINGS, setting1); properties.put(Setting.SETTING_NAME_SERVICE_SETTINGS, setting2); Setting setting = new Setting(properties); assertEquals(setting2, setting.getSettingValue(Setting.SETTING_NAME_SERVICE_SETTINGS)); } }