aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core_test/integration_test/src/test/java/com/yahoo/jdisc/core/OsgiLogServiceIntegrationTest.java
blob: cd3155191f0f6f4a90b53df9438a1311ba16d0ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc.core;

import com.yahoo.jdisc.test.TestDriver;
import org.junit.Test;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceReference;
import org.osgi.service.log.LogEntry;
import org.osgi.service.log.LogReaderService;

import java.util.Enumeration;
import java.util.logging.Level;
import java.util.logging.Logger;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;


/**
 * @author <a href="mailto:simon@yahoo-inc.com">Simon Thoresen Hult</a>
 */
public class OsgiLogServiceIntegrationTest {

    @Test
    @SuppressWarnings("unchecked")
    public void requireThatAllSupportedLogFrameworksAreConfigured() throws Exception {
        // need to explicitly set log level of root logger since integration suite now provides a logger config file,
        // which disables that setLevel() call of the OsgiLogManager.
        Logger.getLogger("").setLevel(Level.INFO);

        long now = System.currentTimeMillis();
        TestDriver driver = TestDriver.newApplicationBundleInstance("app-h-log.jar", false);
        BundleContext ctx = driver.osgiFramework().bundleContext();
        ServiceReference<?> ref = ctx.getServiceReference(LogReaderService.class.getName());
        LogReaderService reader = (LogReaderService)ctx.getService(ref);
        Enumeration<LogEntry> log = (Enumeration<LogEntry>)reader.getLog();

        assertEntry(Level.INFO, "[jdk14] hello world", null, now, log);
        assertEntry(Level.INFO, "[slf4j] hello world", null, now, log);
        assertEntry(Level.INFO, "[log4j] hello world", null, now, log);
        assertEntry(Level.INFO, "[jcl] hello world", null, now, log);

        assertTrue(driver.close());
    }

    private static void assertEntry(Level expectedLevel, String expectedMessage, Throwable expectedException,
                                    long expectedTimeGE, Enumeration<LogEntry> log)
    {
        assertTrue(log.hasMoreElements());
        LogEntry entry = log.nextElement();
        assertNotNull(entry);
        System.err.println("log entry: "+entry.getMessage()+" bundle="+entry.getBundle());
        assertEquals(expectedMessage, entry.getMessage());
        assertNull(entry.getBundle());
        assertNotNull(entry.getServiceReference());
        assertEquals(OsgiLogHandler.toServiceLevel(expectedLevel), entry.getLevel());
        assertEquals(expectedException, entry.getException());
        assertTrue(expectedTimeGE <= entry.getTime());
    }
}