blob: 5cd9080d9c54d07e11b8b5968c1aa0c6652f9a1d [file] [log] [blame]
/*
* 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.tools;
import java.io.File;
import java.io.FileOutputStream;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Locale;
import javax.tools.Diagnostic;
import javax.tools.DiagnosticCollector;
import javax.tools.JavaCompiler;
import javax.tools.JavaFileObject;
import javax.tools.StandardJavaFileManager;
import javax.tools.ToolProvider;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Marker;
import org.apache.logging.log4j.message.Message;
import org.apache.logging.log4j.message.MessageFactory;
import org.apache.logging.log4j.test.TestLogger;
import org.apache.logging.log4j.util.MessageSupplier;
import org.apache.logging.log4j.util.Supplier;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
@Tag("functional")
public class GenerateCustomLoggerTest {
@BeforeAll
public static void beforeClass() {
System.setProperty("log4j2.loggerContextFactory", "org.apache.logging.log4j.test.TestLoggerContextFactory");
}
@Test
public void testGenerateSource() throws Exception {
final String CLASSNAME = "org.myorg.MyCustomLogger";
// generate custom logger source
final List<String> values = Arrays.asList("DEFCON1=350 DEFCON2=450 DEFCON3=550".split(" "));
final List<Generate.LevelInfo> levels = Generate.LevelInfo.parse(values, Generate.CustomLogger.class);
final String src = Generate.generateSource(CLASSNAME, levels, Generate.Type.CUSTOM);
final File f = new File("target/test-classes/org/myorg/MyCustomLogger.java");
f.getParentFile().mkdirs();
try (final FileOutputStream out = new FileOutputStream(f)) {
out.write(src.getBytes(Charset.defaultCharset()));
}
// set up compiler
final JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
final DiagnosticCollector<JavaFileObject> diagnostics = new DiagnosticCollector<>();
final List<String> errors = new ArrayList<>();
try (final StandardJavaFileManager fileManager = compiler.getStandardFileManager(diagnostics, null, null)) {
final Iterable<? extends JavaFileObject> compilationUnits = fileManager.getJavaFileObjectsFromFiles(
Collections.singletonList(f));
// compile generated source
compiler.getTask(null, fileManager, diagnostics, null, null, compilationUnits).call();
// check we don't have any compilation errors
for (final Diagnostic<? extends JavaFileObject> diagnostic : diagnostics.getDiagnostics()) {
if (diagnostic.getKind() == Diagnostic.Kind.ERROR) {
errors.add(String.format("Compile error: %s%n", diagnostic.getMessage(Locale.getDefault())));
}
}
}
assertTrue(errors.isEmpty(), errors.toString());
// load the compiled class
final Class<?> cls = Class.forName(CLASSNAME);
// check that all factory methods exist and are static
assertTrue(Modifier.isStatic(cls.getDeclaredMethod("create").getModifiers()));
assertTrue(Modifier.isStatic(cls.getDeclaredMethod("create", Class.class).getModifiers()));
assertTrue(Modifier.isStatic(cls.getDeclaredMethod("create", Object.class).getModifiers()));
assertTrue(Modifier.isStatic(cls.getDeclaredMethod("create", String.class).getModifiers()));
assertTrue(Modifier.isStatic(cls.getDeclaredMethod("create", Class.class, MessageFactory.class).getModifiers()));
assertTrue(Modifier
.isStatic(cls.getDeclaredMethod("create", Object.class, MessageFactory.class).getModifiers()));
assertTrue(Modifier
.isStatic(cls.getDeclaredMethod("create", String.class, MessageFactory.class).getModifiers()));
// check that all log methods exist
final String[] logMethods = { "defcon1", "defcon2", "defcon3" };
for (final String name : logMethods) {
assertDoesNotThrow(() -> {
cls.getDeclaredMethod(name, Marker.class, Message.class, Throwable.class);
cls.getDeclaredMethod(name, Marker.class, Object.class, Throwable.class);
cls.getDeclaredMethod(name, Marker.class, String.class, Throwable.class);
cls.getDeclaredMethod(name, Marker.class, Message.class);
cls.getDeclaredMethod(name, Marker.class, Object.class);
cls.getDeclaredMethod(name, Marker.class, String.class);
cls.getDeclaredMethod(name, Message.class);
cls.getDeclaredMethod(name, Object.class);
cls.getDeclaredMethod(name, String.class);
cls.getDeclaredMethod(name, Message.class, Throwable.class);
cls.getDeclaredMethod(name, Object.class, Throwable.class);
cls.getDeclaredMethod(name, String.class, Throwable.class);
cls.getDeclaredMethod(name, String.class, Object[].class);
cls.getDeclaredMethod(name, Marker.class, String.class, Object[].class);
// 2.4 lambda support
cls.getDeclaredMethod(name, Marker.class, MessageSupplier.class);
cls.getDeclaredMethod(name, Marker.class, MessageSupplier.class, Throwable.class);
cls.getDeclaredMethod(name, Marker.class, String.class, Supplier[].class);
cls.getDeclaredMethod(name, Marker.class, Supplier.class);
cls.getDeclaredMethod(name, Marker.class, Supplier.class, Throwable.class);
cls.getDeclaredMethod(name, MessageSupplier.class);
cls.getDeclaredMethod(name, MessageSupplier.class, Throwable.class);
cls.getDeclaredMethod(name, String.class, Supplier[].class);
cls.getDeclaredMethod(name, Supplier.class);
cls.getDeclaredMethod(name, Supplier.class, Throwable.class);
});
}
// now see if it actually works...
final Method create = cls.getDeclaredMethod("create", String.class);
final Object customLogger = create.invoke(null, "X.Y.Z");
int n = 0;
for (final String name : logMethods) {
final Method method = cls.getDeclaredMethod(name, String.class);
method.invoke(customLogger, "This is message " + n++);
}
final TestLogger underlying = (TestLogger) LogManager.getLogger("X.Y.Z");
final List<String> lines = underlying.getEntries();
for (int i = 0; i < lines.size(); i++) {
assertEquals(" " + levels.get(i).name + " This is message " + i, lines.get(i));
}
}
}