| /* |
| * 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 |
| * |
| * https://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.commons.configuration2.interpol; |
| |
| import static org.junit.jupiter.api.Assertions.assertEquals; |
| import static org.junit.jupiter.api.Assertions.assertNull; |
| |
| import java.awt.event.KeyEvent; |
| |
| import org.junit.jupiter.api.AfterEach; |
| import org.junit.jupiter.api.BeforeEach; |
| import org.junit.jupiter.api.Test; |
| |
| /** |
| * Test class for ConstantLookup. |
| */ |
| public class TestConstantLookup { |
| |
| /** A public field that can be read by the lookup. */ |
| public static final String FIELD = "Field that can be read"; |
| |
| /** A private field that cannot be read by the lookup. */ |
| @SuppressWarnings("unused") |
| private static final String PRIVATE_FIELD = "PRIVATE"; |
| |
| /** The lookup object to be tested. */ |
| private ConstantLookup lookup; |
| |
| @BeforeEach |
| public void setUp() throws Exception { |
| lookup = new ConstantLookup(); |
| } |
| |
| /** |
| * Clears the test environment. Here the static cache of the constant lookup class is wiped out. |
| */ |
| @AfterEach |
| public void tearDown() { |
| ConstantLookup.clear(); |
| } |
| |
| /** |
| * Tests accessing the cache by querying a variable twice. |
| */ |
| @Test |
| void testLookupCache() { |
| testLookupConstant(); |
| testLookupConstant(); |
| } |
| |
| /** |
| * Tests resolving a valid constant. |
| */ |
| @Test |
| void testLookupConstant() { |
| assertEquals(FIELD, lookup.lookup(variable("FIELD"))); |
| } |
| |
| /** |
| * Tries to resolve a variable with an invalid syntax: The name does not contain a dot as a field separator. |
| */ |
| @Test |
| void testLookupInvalidSyntax() { |
| assertNull(lookup.lookup("InvalidVariableName")); |
| } |
| |
| /** |
| * Tests resolving a non existing constant. Result should be null. |
| */ |
| @Test |
| void testLookupNonExisting() { |
| assertNull(lookup.lookup(variable("NO_FIELD"))); |
| } |
| |
| /** |
| * Tests resolving a non string constant. Then looks the same variable up from the cache. |
| */ |
| @Test |
| void testLookupNonStringFromCache() { |
| final String var = KeyEvent.class.getName() + ".VK_ESCAPE"; |
| final Object expected = KeyEvent.VK_ESCAPE; |
| assertEquals(expected, lookup.lookup(var)); |
| assertEquals(expected, lookup.lookup(var)); |
| } |
| |
| /** |
| * Tests looking up a null variable. |
| */ |
| @Test |
| void testLookupNull() { |
| assertNull(lookup.lookup(null)); |
| } |
| |
| /** |
| * Tests resolving a private constant. Because a private field cannot be accessed this should again yield null. |
| */ |
| @Test |
| void testLookupPrivate() { |
| assertNull(lookup.lookup(variable("PRIVATE_FIELD"))); |
| } |
| |
| /** |
| * Tests resolving a field from an unknown class. |
| */ |
| @Test |
| void testLookupUnknownClass() { |
| assertNull(lookup.lookup("org.apache.commons.configuration.NonExistingConfig." + FIELD)); |
| } |
| |
| /** |
| * Generates the name of a variable for a lookup operation based on the given field name of this class. |
| * |
| * @param field the field name |
| * @return the variable for looking up this field |
| */ |
| private String variable(final String field) { |
| return getClass().getName() + '.' + field; |
| } |
| } |