/** * The MIT License * Copyright © 2010 JmxTrans team * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package com.googlecode.jmxtrans.model; import static org.assertj.core.api.Assertions.assertThat; import java.lang.reflect.Method; import java.util.HashMap; import java.util.Map; import org.apache.commons.lang.StringUtils; import org.apache.commons.lang.WordUtils; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.runners.MockitoJUnitRunner; import com.google.common.collect.ImmutableMap; /** * * @author Simon Hutchinson * <a href="https://github.com/sihutch">github.com/sihutch</a> * */ @RunWith(MockitoJUnitRunner.class) public class ResultAttributeTests { private Map<String, String> attributeMap; Result result = new Result(2l, "attributeName1", "className1", "objDomain1", "keyAlias1", "typeName1", ImmutableMap.of("key", (Object) 1)); @Before public void setup() { attributeMap = new HashMap<String, String>(); } @Test public void attributeNamesFromResultAreWrittenToMap() throws Exception { for (ResultAttribute resultAttribute : ResultAttribute.values()) { resultAttribute.addAttribute(attributeMap, result); String attributeName = enumValueToAttribute(resultAttribute); Method m = result.getClass().getMethod("get" + WordUtils.capitalize(attributeName)); String expectedValue = (String) m.invoke(result); assertThat(attributeMap).containsEntry(attributeName, expectedValue); } } private String enumValueToAttribute(ResultAttribute attribute) { String[] split = attribute.name().split("_"); return StringUtils.lowerCase(split[0]) + WordUtils.capitalizeFully(split[1]); } }