gpt4 book ai didi

c# - 我如何测试 FileSystemWatcher 引发正确的事件?

转载 作者:行者123 更新时间:2023-11-30 12:31:05 25 4
gpt4 key购买 nike

我在我的一项服务中使用 System.IO.FileSystemWatcher。我想测试当正在监视的文件发生更改时,我会收到通知。

我正在考虑让后台线程更改文件。在测试中,我会加入那个线程。然后我可以断言调用了正确的事件。如果事件被调用,我可以订阅一个回调来捕获。

我没有做过任何涉及线程的测试,所以我不确定这是否是处理它的最佳方法,或者 Moq 或 MSpec 中是否有一些内置方法可以帮助测试。

最佳答案

Moq 或 MSpec 没有任何专门内置的东西可以帮助您做到这一点,除了一些有趣的语法或功能可以帮助您组织测试。我认为您走在正确的道路上。

我很好奇您的服务如何公开文件更改通知。它会公开它们进行测试吗?还是 FileSystemWatcher 完全隐藏在服务中?如果该服务不简单地向上和向外传递事件通知,您应该提取您的文件监控,以便可以轻松地对其进行测试。

您可以使用 .NET 事件或回调或其他任何方式来做到这一点。不管你怎么做,我都会写这样的测试......

[Subject("File monitoring")]
public class When_a_monitored_file_is_changed
{
Establish context = () =>
{
// depending on your service file monitor design, you would
// attach to your notification
_monitor.FileChanged += () => _changed.Set();

// or pass your callback in
_monitor = new ServiceMonitor(() => _changed.Set());
}

Because of = () => // modify the monitored file;

// Wait a reasonable amount of time for the notification to fire, but not too long that your test is a burden
It should_raise_the_file_changed_event = () => _changed.WaitOne(TimeSpan.FromMilliseconds(100)).ShouldBeTrue();

private static readonly ManualResetEvent _changed = new ManualResetEvent();
}

关于c# - 我如何测试 FileSystemWatcher 引发正确的事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14579362/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com