我正在编写一些集成测试,它们使用HttpServer
,一堆Directory().watch()
',以及其他一些未来/流监听代码。
我正在使用以下测试配置:
class LaserServerTestConfiguration extends SimpleConfiguration {
LaserServer _server;
LaserServerTestConfiguration(this._server);
void onDone(bool success) {
super.onDone(success);
_server.stop();
}
}
我的测试看起来像这样:
main() {
var conf = new LaserConfiguration.fromPath('test/test_config.yaml');
var server = new LaserServer(conf);
unittestConfiguration = new LaserServerTestConfiguration(server);
server.start().then((_) {
test('test file changed event', () {
var response = new Completer<Map>();
response.future.then(expectAsync((e) =>
expect(e, containsValue('test/sample/sample_test.html'))
));
WebSocket.connect("ws://localhost:2014").then((ws) {
ws.listen((msg) {
response.complete(JSON.decode(msg));
ws.close();
});
new File('test/sample/sample.dart').writeAsString("");
});
});
});
}
我遇到的问题是在测试运行(并通过)后,Dart VM不会退出。大概是因为我在事件队列中仍有待处理的事情。
如何调试事件队列?我想看看是什么阻止了Dart VM在测试运行结束时退出。
你可以在自定义TestConfiguration中看到我重载onDone(),这会被调用,我停止()我的服务器(.close(force: true)
在HttpServer上并循环我所有的Directory().watch()
'并取消订阅)。但有些事情仍然存在......
答案 0 :(得分:1)
现在的天文台(Dart VM版本:1.11.0-edge.131775)允许在调试器视图中调查消息队列。