use of com.evolveum.midpoint.xml.ns._public.common.common_3.ClassLoggerConfigurationType in project midpoint by Evolveum.
the class TestLoggingConfiguration method applyTestLoggingConfig.
private void applyTestLoggingConfig(LoggingConfigurationType logging) {
// Make sure that this class has a special entry in the config so we will see the messages from this test code
ClassLoggerConfigurationType testClassLogger = new ClassLoggerConfigurationType();
testClassLogger.setPackage(TestLoggingConfiguration.class.getName());
testClassLogger.setLevel(LoggingLevelType.TRACE);
logging.getClassLogger().add(testClassLogger);
ClassLoggerConfigurationType integrationTestToolsLogger = new ClassLoggerConfigurationType();
integrationTestToolsLogger.setPackage(IntegrationTestTools.class.getName());
integrationTestToolsLogger.setLevel(LoggingLevelType.TRACE);
logging.getClassLogger().add(integrationTestToolsLogger);
}
use of com.evolveum.midpoint.xml.ns._public.common.common_3.ClassLoggerConfigurationType in project midpoint by Evolveum.
the class TestLoggingConfiguration method test030ConnectorLogging.
/**
* Test if connectors log properly. The dummy connector logs on all levels when the
* "test" operation is invoked. So let's try it.
*/
@Test
public void test030ConnectorLogging() throws Exception {
final String TEST_NAME = "test030ConnectorLogging";
TestUtil.displayTestTile(TEST_NAME);
// GIVEN
LogfileTestTailer tailer = new LogfileTestTailer(LoggingConfigurationManager.AUDIT_LOGGER_NAME);
// ICF logging is prefixing the messages;
tailer.setAllowPrefix(true);
Task task = taskManager.createTaskInstance(TestLoggingConfiguration.class.getName() + "." + TEST_NAME);
OperationResult result = task.getResult();
importObjectFromFile(RESOURCE_DUMMY_FILE, result);
// Setup
PrismObject<SystemConfigurationType> systemConfiguration = PrismTestUtil.parseObject(AbstractInitializedModelIntegrationTest.SYSTEM_CONFIGURATION_FILE);
LoggingConfigurationType logging = systemConfiguration.asObjectable().getLogging();
applyTestLoggingConfig(logging);
ClassLoggerConfigurationType classLogerCongif = new ClassLoggerConfigurationType();
classLogerCongif.setPackage(DummyConnector.class.getPackage().getName());
classLogerCongif.setLevel(LoggingLevelType.ALL);
logging.getClassLogger().add(classLogerCongif);
ObjectDelta<SystemConfigurationType> systemConfigDelta = ObjectDelta.createModificationReplaceProperty(SystemConfigurationType.class, AbstractInitializedModelIntegrationTest.SYSTEM_CONFIGURATION_OID, SystemConfigurationType.F_LOGGING, prismContext, logging);
Collection<ObjectDelta<? extends ObjectType>> deltas = MiscSchemaUtil.createCollection(systemConfigDelta);
modelService.executeChanges(deltas, null, task, result);
// INFO part
java.util.logging.Logger dummyConnctorJulLogger = java.util.logging.Logger.getLogger(DummyConnector.class.getName());
LOGGER.info("Dummy connector JUL logger as seen by the test: {}; classloader {}", dummyConnctorJulLogger, dummyConnctorJulLogger.getClass().getClassLoader());
// WHEN
modelService.testResource(RESOURCE_DUMMY_OID, task);
// THEN
tailer.tail();
tailer.assertMarkerLogged(LogfileTestTailer.LEVEL_ERROR, "DummyConnectorIcfError");
tailer.assertMarkerLogged(LogfileTestTailer.LEVEL_WARN, "DummyConnectorIcfWarn");
tailer.assertMarkerLogged(LogfileTestTailer.LEVEL_DEBUG, "DummyConnectorIcfInfo");
tailer.assertMarkerLogged(LogfileTestTailer.LEVEL_TRACE, "DummyConnectorIcfOk");
tailer.assertMarkerLogged(LogfileTestTailer.LEVEL_ERROR, "DummyConnectorJULsevere");
tailer.assertMarkerLogged(LogfileTestTailer.LEVEL_WARN, "DummyConnectorJULwarning");
tailer.assertMarkerLogged(LogfileTestTailer.LEVEL_INFO, "DummyConnectorJULinfo");
tailer.assertMarkerLogged(LogfileTestTailer.LEVEL_DEBUG, "DummyConnectorJULfine");
tailer.assertMarkerLogged(LogfileTestTailer.LEVEL_DEBUG, "DummyConnectorJULfiner");
tailer.assertMarkerLogged(LogfileTestTailer.LEVEL_TRACE, "DummyConnectorJULfinest");
tailer.close();
}
Aggregations