|
1 |
| -/* |
2 |
| - * Licensed to the Apache Software Foundation (ASF) under one or more |
3 |
| - * contributor license agreements. See the NOTICE file distributed with |
4 |
| - * this work for additional information regarding copyright ownership. |
5 |
| - * The ASF licenses this file to You under the Apache license, Version 2.0 |
6 |
| - * (the "License"); you may not use this file except in compliance with |
7 |
| - * the License. You may obtain a copy of the License at |
8 |
| - * |
9 |
| - * http://www.apache.org/licenses/LICENSE-2.0 |
10 |
| - * |
11 |
| - * Unless required by applicable law or agreed to in writing, software |
12 |
| - * distributed under the License is distributed on an "AS IS" BASIS, |
13 |
| - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
14 |
| - * See the license for the specific language governing permissions and |
15 |
| - * limitations under the license. |
16 |
| - */ |
17 |
| -package org.apache.log4j; |
18 |
| - |
19 |
| -import static org.junit.Assert.assertEquals; |
20 |
| - |
21 |
| -import java.util.List; |
22 |
| - |
23 |
| -import org.apache.logging.log4j.core.test.junit.LoggerContextRule; |
24 |
| -import org.apache.logging.log4j.core.test.appender.ListAppender; |
25 |
| -import org.junit.ClassRule; |
26 |
| -import org.junit.Test; |
27 |
| - |
28 |
| -public class CallerInformationTest { |
29 |
| - |
30 |
| - // config from log4j-core test-jar |
31 |
| - private static final String CONFIG = "log4j2-calling-class.xml"; |
32 |
| - |
33 |
| - @ClassRule |
34 |
| - public static final LoggerContextRule ctx = new LoggerContextRule(CONFIG); |
35 |
| - |
36 |
| - @Test |
37 |
| - public void testClassLogger() { |
38 |
| - final ListAppender app = ctx.getListAppender("Class").clear(); |
39 |
| - final Logger logger = Logger.getLogger("ClassLogger"); |
40 |
| - logger.info("Ignored message contents."); |
41 |
| - logger.warn("Verifying the caller class is still correct."); |
42 |
| - logger.error("Hopefully nobody breaks me!"); |
43 |
| - final List<String> messages = app.getMessages(); |
44 |
| - assertEquals("Incorrect number of messages.", 3, messages.size()); |
45 |
| - for (final String message : messages) { |
46 |
| - assertEquals("Incorrect caller class name.", this.getClass().getName(), message); |
47 |
| - } |
48 |
| - } |
49 |
| - |
50 |
| - @Test |
51 |
| - public void testMethodLogger() { |
52 |
| - final ListAppender app = ctx.getListAppender("Method").clear(); |
53 |
| - final Logger logger = Logger.getLogger("MethodLogger"); |
54 |
| - logger.info("More messages."); |
55 |
| - logger.warn("CATASTROPHE INCOMING!"); |
56 |
| - logger.error("ZOMBIES!!!"); |
57 |
| - logger.warn("brains~~~"); |
58 |
| - logger.info("Itchy. Tasty."); |
59 |
| - final List<String> messages = app.getMessages(); |
60 |
| - assertEquals("Incorrect number of messages.", 5, messages.size()); |
61 |
| - for (final String message : messages) { |
62 |
| - assertEquals("Incorrect caller method name.", "testMethodLogger", message); |
63 |
| - } |
64 |
| - } |
65 |
| -} |
| 1 | +/* |
| 2 | + * Licensed to the Apache Software Foundation (ASF) under one or more |
| 3 | + * contributor license agreements. See the NOTICE file distributed with |
| 4 | + * this work for additional information regarding copyright ownership. |
| 5 | + * The ASF licenses this file to You under the Apache license, Version 2.0 |
| 6 | + * (the "License"); you may not use this file except in compliance with |
| 7 | + * the License. You may obtain a copy of the License at |
| 8 | + * |
| 9 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | + * |
| 11 | + * Unless required by applicable law or agreed to in writing, software |
| 12 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | + * See the license for the specific language governing permissions and |
| 15 | + * limitations under the license. |
| 16 | + */ |
| 17 | +package org.apache.log4j; |
| 18 | + |
| 19 | +import java.util.List; |
| 20 | + |
| 21 | +import org.apache.logging.log4j.core.test.appender.ListAppender; |
| 22 | +import org.apache.logging.log4j.core.test.junit.LoggerContextRule; |
| 23 | +import org.junit.ClassRule; |
| 24 | +import org.junit.Test; |
| 25 | + |
| 26 | +import static org.junit.Assert.assertEquals; |
| 27 | + |
| 28 | +public class CallerInformationTest { |
| 29 | + |
| 30 | + // config from log4j-core test-jar |
| 31 | + private static final String CONFIG = "log4j2-calling-class.xml"; |
| 32 | + |
| 33 | + @ClassRule |
| 34 | + public static final LoggerContextRule ctx = new LoggerContextRule(CONFIG); |
| 35 | + |
| 36 | + @Test |
| 37 | + public void testClassLogger() { |
| 38 | + final ListAppender app = ctx.getListAppender("Class").clear(); |
| 39 | + final Logger logger = Logger.getLogger("ClassLogger"); |
| 40 | + logger.info("Ignored message contents."); |
| 41 | + logger.warn("Verifying the caller class is still correct."); |
| 42 | + logger.error("Hopefully nobody breaks me!"); |
| 43 | + final List<String> messages = app.getMessages(); |
| 44 | + assertEquals("Incorrect number of messages.", 3, messages.size()); |
| 45 | + for (final String message : messages) { |
| 46 | + assertEquals("Incorrect caller class name.", this.getClass().getName(), message); |
| 47 | + } |
| 48 | + } |
| 49 | + |
| 50 | + @Test |
| 51 | + public void testMethodLogger() { |
| 52 | + final ListAppender app = ctx.getListAppender("Method").clear(); |
| 53 | + final Logger logger = Logger.getLogger("MethodLogger"); |
| 54 | + logger.info("More messages."); |
| 55 | + logger.warn("CATASTROPHE INCOMING!"); |
| 56 | + logger.error("ZOMBIES!!!"); |
| 57 | + logger.warn("brains~~~"); |
| 58 | + logger.info("Itchy. Tasty."); |
| 59 | + final List<String> messages = app.getMessages(); |
| 60 | + assertEquals("Incorrect number of messages.", 5, messages.size()); |
| 61 | + for (final String message : messages) { |
| 62 | + assertEquals("Incorrect caller method name.", "testMethodLogger", message); |
| 63 | + } |
| 64 | + } |
| 65 | +} |
0 commit comments