Author: rgoers
Date: Sun Mar 31 08:25:14 2013
New Revision: 1462897
URL: http://svn.apache.org/r1462897
Log:
Add initialization performance test
Added:
logging/log4j/log4j2/trunk/core/src/test/java/org/apache/logging/log4j/Log4jInitPerformance.java
Added:
logging/log4j/log4j2/trunk/core/src/test/java/org/apache/logging/log4j/Log4jInitPerformance.java
URL:
http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/core/src/test/java/org/apache/logging/log4j/Log4jInitPerformance.java?rev=1462897&view=auto
==============================================================================
---
logging/log4j/log4j2/trunk/core/src/test/java/org/apache/logging/log4j/Log4jInitPerformance.java
(added)
+++
logging/log4j/log4j2/trunk/core/src/test/java/org/apache/logging/log4j/Log4jInitPerformance.java
Sun Mar 31 08:25:14 2013
@@ -0,0 +1,54 @@
+/*
+ * 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;
+
+import java.io.ByteArrayInputStream;
+import java.io.InputStream;
+
+import org.apache.logging.log4j.core.config.ConfigurationFactory;
+import org.apache.logging.log4j.core.config.Configurator;
+import org.junit.Test;
+
+
+public class Log4jInitPerformance {
+
+
+ @Test
+ public void testInitialize() throws Exception {
+ String log4jConfigString =
+ "<configuration name=\"ConfigTest\" status=\"debug\" >" +
+ "<appenders>" +
+ " <Console name=\"STDOUT\">" +
+ " <PatternLayout pattern=\"%m%n\"/>" +
+ " </Console>" +
+ "</appenders>" +
+ "<loggers>" +
+ " <root level=\"error\">" +
+ " <appender-ref ref=\"STDOUT\"/>" +
+ " </root>" +
+ "</loggers>" +
+ "</configuration>";
+ final InputStream is = new
ByteArrayInputStream(log4jConfigString.getBytes());
+ final ConfigurationFactory.ConfigurationSource source =
+ new ConfigurationFactory.ConfigurationSource(is);
+ long begin = System.currentTimeMillis();
+ Configurator.initialize(null, source);
+ long tookForInit = System.currentTimeMillis() - begin;
+ System.out.println("log4j 2.0 initialization took " + tookForInit +
"ms");
+ }
+
+}
\ No newline at end of file