summaryrefslogtreecommitdiffstats
path: root/logserver/src/test/java/com/yahoo/logserver/FlusherTestCase.java
blob: d6953fd3bc39a740f71c92d1e80ed7bfcf0db9d1 (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
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.logserver;

import static org.junit.Assert.*;

import org.junit.Test;

import com.yahoo.logserver.handlers.LogHandler;
import com.yahoo.logserver.test.LogDispatcherTestCase;

public class FlusherTestCase {

    @Test
    public void testFlusher() throws InterruptedException {
        Flusher flusher = new Flusher();
        LogDispatcherTestCase.MockHandler handler = new LogDispatcherTestCase.MockHandler();
        Flusher.register(handler);
        flusher.start();
        Thread.sleep(5000);
        flusher.interrupt();
        flusher.join();
        assertTrue(handler.flushCalled > 0);
    }

}