我有一个可用的 Tailer 实现(commons-io Tailer)这是我的 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 内使用 Java 8 在 Windows 7 上运行它。有没有人对使用运行测试的 JVM 写入的文件对 TailerListener 的 handle() 方法进行单元测试的经验?
谢谢。