You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2014/08/07 08:57:12 UTC

svn commit: r1616420 - /logging/log4j/log4j2/trunk/log4j-core/src/test/java/org/apache/logging/log4j/core/lookup/MapLookupTest.java

Author: ggregory
Date: Thu Aug  7 06:57:11 2014
New Revision: 1616420

URL: http://svn.apache.org/r1616420
Log:
Test MapLookup.

Added:
    logging/log4j/log4j2/trunk/log4j-core/src/test/java/org/apache/logging/log4j/core/lookup/MapLookupTest.java   (with props)

Added: logging/log4j/log4j2/trunk/log4j-core/src/test/java/org/apache/logging/log4j/core/lookup/MapLookupTest.java
URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/log4j-core/src/test/java/org/apache/logging/log4j/core/lookup/MapLookupTest.java?rev=1616420&view=auto
==============================================================================
--- logging/log4j/log4j2/trunk/log4j-core/src/test/java/org/apache/logging/log4j/core/lookup/MapLookupTest.java (added)
+++ logging/log4j/log4j2/trunk/log4j-core/src/test/java/org/apache/logging/log4j/core/lookup/MapLookupTest.java Thu Aug  7 06:57:11 2014
@@ -0,0 +1,52 @@
+/*
+ * 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.logging.log4j.core.lookup;
+
+import static org.junit.Assert.assertEquals;
+
+import java.util.HashMap;
+
+import org.junit.Test;
+
+/**
+ * Tests {@link MapLookup}.
+ */
+public class MapLookupTest {
+
+    @Test
+    public void testEmptyMap() {
+        final MapLookup lookup = new MapLookup(new HashMap<String, String>());
+        assertEquals(null, lookup.lookup(null));
+        assertEquals(null, lookup.lookup("X"));
+    }
+
+    @Test
+    public void testMap() {
+        final HashMap<String, String> map = new HashMap<String, String>();
+        map.put("A", "B");
+        final MapLookup lookup = new MapLookup(map);
+        assertEquals(null, lookup.lookup(null));
+        assertEquals("B", lookup.lookup("A"));
+    }
+
+    @Test
+    public void testNullMap() {
+        final MapLookup lookup = new MapLookup();
+        assertEquals(null, lookup.lookup(null));
+        assertEquals(null, lookup.lookup("X"));
+    }
+}

Propchange: logging/log4j/log4j2/trunk/log4j-core/src/test/java/org/apache/logging/log4j/core/lookup/MapLookupTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: logging/log4j/log4j2/trunk/log4j-core/src/test/java/org/apache/logging/log4j/core/lookup/MapLookupTest.java
------------------------------------------------------------------------------
    svn:keywords = Id