commons-io Tailer在JVM内部创建文件时不调用handle()

时间:2015-03-18 18:55:24

标签: java-8 apache-tailer

我有一个有效的Tailer实现(commons-io Tailer) 这是我的故事:

public class SyslogConsumer implements TailerListener {
     @Override
     public void handle(String line) { System.out.println(line);}
    ...
}

public void process() {
    TailerListener listener = new SyslogConsumer();
    final Tailer tailer = Tailer.create( path.toFile(), listener );
    Runtime.getRuntime().addShutdownHook( new Thread( "LogProcessor shutdown hook" ) {
        public void run() {
            tailer.stop();
        }
    } );
}

和我的测试:

public class LogProcessorTest {

    private static Path templog;
    private static final String logEvent = "May 1 00:00:00 this is valid";

    @Before
    public void setup()
        throws IOException
    {
        templog = Files.createTempFile( "logprocessing", ".log" );
        templog.toFile().deleteOnExit();
        BufferedWriter bw = new BufferedWriter( new FileWriter( templog.toFile() ) );
        bw.write( logEvent );
        bw.newLine();
        bw.close();
    }

    @Test
    public void testProcessingValidEntriesProducesEvents()
        throws IOException
    {
        // utility method that pipes stdout to my bytearray
        ByteArrayOutputStream bos = new ByteArrayOutputStream();
        TestUtils.captureStdOut( bos );

        LogProcessor proc = new LogProcessor( templog.toString() );
        proc.process();

        String s = bos.toString( "UTF-8" );
        Assert.assertEquals( logEvent, s );
    }
}

在bos内容为其内容时,它是空的,但日志文件包含2行:

>May 1 00:00:01 this is valid
>  

如果我将测试指向使用bash脚本创建和写入的文件:

$ cat test/endlessLogGenerator.sh
#! /bin/bash
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
out="$DIR/data/logstream.out"
echo > $out
c=0
while :
do
    let c=$((c+1))
    echo $(date +"%b %d %T this is message $c") >> $out
    sleep 1
done

然后它完美地运作。然而,当我在测试运行器中创建文件时,我的监听器永远不会被Tailer处理程序调用。我尝试在一个单独的线程中创建我的文件,也尝试写入一个不是由测试创建的现有文件,也尝试在将它提供给Tailer观看之后在我的测试中写入文件,等等。没有任何作用。我似乎没有尝试写入测试运行器中的文件将导致TailerListener触发handle()方法。我在Eclipse 7中使用Java 8在Windows 7上运行它。有没有人有任何使用TailerListener的handle()方法进行单元测试的经验,该方法是由运行测试的JVM编写的文件?

感谢。

1 个答案:

答案 0 :(得分:0)

原来我的问题是由Tailer吞下一个异常并默默关闭该流引起的:

Tailer's run() implementation...

....    
    } catch (Exception e) {

        listener.handle(e);

    } finally {
        IOUtils.closeQuietly(reader);
    }
....

在我的handle()实现中,我正在从日志中解析日期,并且没有使用正确的模式设置DateTimeFormatter,因此它抛出了一个未经检查的运行时异常,它被Tailer捕获。图书馆实施者的奇怪选择来设计这种行为。

我保留了这个问题,而不仅仅是删除它,因为这个警告可能会派上用场。