我很难理解以下测试不起作用的原因:
[Fact]
public void repro()
{
var scheduler = new TestScheduler();
var count = 0;
// this observable is a simplification of the system under test
// I've just included it directly in the test for clarity
// in reality it is NOT accessible from the test code - it is
// an implementation detail of the system under test
// but by passing in a TestScheduler to the sut, the test code
// can theoretically control the execution of the pipeline
// but per this question, that doesn't work when using FromAsync
Observable
.Return(1)
.Select(i => Observable.FromAsync(Whatever))
.Concat()
.ObserveOn(scheduler)
.Subscribe(_ => Interlocked.Increment(ref count));
Assert.Equal(0, count);
// this call initiates the observable pipeline, but does not
// wait until the entire pipeline has been executed before
// returning control to the caller
// the question is: why? Rx knows I'm instigating an async task
// as part of the pipeline (that's the point of the FromAsync
// method), so why can't it still treat the pipeline atomically
// when I call Start() on the scheduler?
scheduler.Start();
// count is still zero at this point
Assert.Equal(1, count);
}
private async Task<Unit> Whatever()
{
await Task.Delay(100);
return Unit.Default;
}
我想要做的是每当一个observable滴答时运行一些异步代码(由Whatever()
表示)。重要的是,我希望这些呼叫排队。更重要的是,我希望能够使用TestScheduler
来控制管道的执行。
似乎对scheduler.Start()
的调用正在煽动Whatever()
的执行,但它不会等到它完成。如果我更改Whatever()
以使其同步:
private async Task<Unit> Whatever()
{
//await Task.Delay(100);
return Unit.Default;
}
然后测试通过,但当然这违背了我想要达到的目的。我可以想象StartAsync()
上有一个TestScheduler
方法,我可以等待,但那不存在。
有人能告诉我是否有办法促使反应式管道的执行并等待它完成,即使它包含异步调用?
答案 0 :(得分:23)
让我把你的问题归结为其基本要点:
是否有办法使用
TestScheduler
执行反应式管道并等待其完成,即使它包含异步调用?
我应该事先警告你,这里没有快速简单的答案,没有方便的&#34;技巧&#34;可以部署。
要回答这个问题,我认为我们需要澄清一些观点。术语&#34;异步调用&#34;在上面的问题中似乎特别用于引用具有Task
或Task<T>
签名的方法 - 即使用任务并行库(TPL)异步运行的方法。
这一点很重要,因为Reactive Extensions(Rx)采用不同的方法来处理异步操作。
在Rx中,并发的引入是通过调度程序来管理的,调度程序是一种实现IScheduler
接口的类型。引入并发的任何操作都应该使调度程序参数可用,以便调用者可以决定适当的调度程序。核心图书馆盲目地坚持这一原则。因此,例如,Delay
允许指定调度程序,但Where
不允许。
从the source可以看出,IScheduler
提供了多个Schedule
重载。需要并发的操作使用这些来安排工作的执行。完全如何执行工作完全延迟到调度程序。这是调度程序抽象的强大功能。
引入并发性的Rx操作通常提供允许省略调度程序的重载,并且在这种情况下选择合理的默认值。这一点非常重要,因为如果您希望使用TestScheduler
来验证代码,则必须使用TestScheduler
进行所有操作引入并发性。一种不允许这样做的流氓方法可能会破坏你的测试工作。
TPL拥有自己的抽象来处理并发:TaskScheduler
。这个想法非常相似。 You can read about it here.
两个抽象之间有两个非常重要的区别:
Now
属性。 TPL调度程序没有。TaskSchedulers
(返回Task
或{{ 1}})。绝大多数Task<T>
返回方法都假定使用默认的Task
,并且无法选择运行工作的位置。 使用TaskScheduler
的动机通常是双重的:
这种方式的工作方式完全取决于调度程序有自己的时间概念。每次通过TestScheduler
安排操作时,我们都会指定何时必须执行 - 要么尽快执行,要么在将来的特定时间执行。然后,调度程序将工作排队等待执行,并在达到指定时间(根据调度程序本身)时执行它。
当你在IScheduler
上调用Start
时,它的工作原理是将所有操作的队列清空,执行时间为当前概念TestScheduler
之前或之前 - 然后将其时钟提前到下一个计划的工作时间并重复,直到其队列为空。
这允许巧妙的技巧,例如能够测试操作永远不会导致事件!如果使用实时这将是一项具有挑战性的任务,但是通过虚拟时间它很容易 - 一旦调度程序队列完全为空,那么Now
得出的结论是,不会发生任何其他事件 - 因为如果没有留在队列中,没有什么可以安排进一步的任务。事实上,TestScheduler
正好在这一点上回归。为了实现这一点,显然必须在Start
上安排所有要测量的并发操作。
一个自定义运算符,在不允许重写的情况下不小心自行选择调度程序,或者在没有时间概念的情况下使用自己的并发形式的操作(例如基于TPL的调用)将使其变得困难,如果通过TestScheduler
控制执行并非不可能。
如果您通过其他方式运行异步操作,明智地使用TestScheduler
的{{1}}和AdvanceTo
方法可以让您与该外来并发源协调 - 但是这可以达到的程度取决于该外国来源所提供的控制。
在TPL的情况下,您确实知道任务何时完成 - 这允许在测试中使用等待和超时,因为这些可能是丑陋的。通过使用AdvanceBy
(TCS),您可以模拟任务并使用TestScheduler
来命中特定点并完成TCS,但这里没有一个简单的方法。通常你只需要诉诸丑陋的等待和超时,因为你没有足够的控制外国并发。
Rx通常是自由线程的,并尽可能避免引入并发。相反,Rx调用链中的不同操作很可能需要不同类型的调度程序抽象。使用单个测试调度程序模拟调用链并不总是可行的。当然,我有理由使用多个TaskCompleteSources
来模拟一些复杂的场景 - 例如使用AdvanceTo
和TestSchedulers
的链有时需要复杂的协调,这意味着您无法将其操作序列化为一个DispatcherScheduler
。
我曾参与过的一些项目已经强制要求将Rx用于所有并发,以避免这些问题。这并不总是可行的,即使在这些情况下,一些TPL的使用通常是不可避免的。
Rx的一个特殊痛点是许多测试者挠头,事实是TPL - &gt; Rx系列转换引入了并发性。例如TaskScheduler
,TestScheduler
超载接受ToObservable
等。不提供调度程序的重载,并且无情地强迫您离开SelectMany
线程,即使用TCS嘲笑。对于仅在测试中引起的所有痛苦,我认为这是一个错误。你可以阅读所有关于here的内容 - 挖掘,你会发现Dave Sexton提出的修复,它提供了指定调度程序的重载,并且正在考虑包含。 You may want to look into that pull request.
如果您可以编辑代码以使用它,则可能使用以下帮助程序方法。它将任务转换为将在TestScheduler上运行并在正确的虚拟时间完成的observable。
它在负责收集任务结果的TestScheduler上安排工作 - 在我们声明任务完成的虚拟时间。工作本身会阻塞,直到任务结果可用 - 允许TPL任务运行多长时间,或者直到经过了实际数量的指定时间,在这种情况下抛出Task<T>
。
阻止工作的效果意味着TestScheduler
不会超过任务的预期虚拟完成时间,直到任务实际完成为止。这样,Rx链的其余部分可以在全速虚拟时间运行,我们只等待TPL任务,在任务完成虚拟时间暂停链的其余部分,同时发生这种情况。
至关重要的是,计划在基于任务的操作的开始虚拟时间和任务的所述结束虚拟时间之间运行的其他并发Rx操作不会被阻止,并且它们的虚拟完成时间将不受影响。
因此,将TimeoutException
设置为您希望任务显示的虚拟时间长度。然后,将在任务启动时的虚拟时间加上指定的持续时间收集结果。
将TestScheduler
设置为允许任务执行的实际时间。如果需要更长时间,则抛出超时异常:
duration
代码中的用法就是这样,你的断言将传递:
timeout
总之,你没有错过任何方便的技巧。您需要考虑Rx如何工作,以及TPL如何工作并决定是否:
public static IObservable<T> ToTestScheduledObseravble<T>(
this Task<T> task,
TestScheduler scheduler,
TimeSpan duration,
TimeSpan? timeout = null)
{
timeout = timeout ?? TimeSpan.FromSeconds(100);
var subject = Subject.Synchronize(new AsyncSubject<T>(), scheduler);
scheduler.Schedule<Task<T>>(task, duration,
(s, t) => {
if (!task.Wait(timeout.Value))
{
subject.OnError(
new TimeoutException(
"Task duration too long"));
}
else
{
switch (task.Status)
{
case TaskStatus.RanToCompletion:
subject.OnNext(task.Result);
subject.OnCompleted();
break;
case TaskStatus.Faulted:
subject.OnError(task.Exception.InnerException);
break;
case TaskStatus.Canceled:
subject.OnError(new TaskCanceledException(task));
break;
}
}
return Disposable.Empty;
});
return subject.AsObservable();
}
Observable
.Return(1)
.Select(i => Whatever().ToTestScheduledObseravble(
scheduler, TimeSpan.FromSeconds(1)))
.Concat()
.Subscribe(_ => Interlocked.Increment(ref count));
混合在一起,为您的测试带来一些控制。答案 1 :(得分:2)
Noseratio更优雅的Rx编写此测试的方式。你可以await
观察到它们的最后一个值。与Count()
结合使用就变得微不足道了。
请注意,在此示例中,TestScheduler
并未用于任何目的。
[Fact]
public async Task repro()
{
var scheduler = new TestScheduler();
var countObs = Observable
.Return(1)
.Select(i => Observable.FromAsync(Whatever))
.Concat()
//.ObserveOn(scheduler) // serves no purpose in this test
.Count();
Assert.Equal(0, count);
//scheduler.Start(); // serves no purpose in this test.
var count = await countObs;
Assert.Equal(1, count);
}
答案 2 :(得分:2)
正如詹姆斯在上面提到的,你不能像你一样混合并发模型。您使用TestScheduler
从Rx中删除并发,但实际上从未通过Rx实际引入并发。但是,您确实使用TPL引入并发(即Task.Delay(100)
。这将实际上在任务池线程上异步运行。因此,您的同步测试将在任务完成之前完成。
你可以改成这样的东西
[Fact]
public void repro()
{
var scheduler = new TestScheduler();
var count = 0;
// this observable is a simplification of the system under test
// I've just included it directly in the test for clarity
// in reality it is NOT accessible from the test code - it is
// an implementation detail of the system under test
// but by passing in a TestScheduler to the sut, the test code
// can theoretically control the execution of the pipeline
// but per this question, that doesn't work when using FromAsync
Observable
.Return(1)
.Select(_ => Observable.FromAsync(()=>Whatever(scheduler)))
.Concat()
.ObserveOn(scheduler)
.Subscribe(_ => Interlocked.Increment(ref count));
Assert.Equal(0, count);
// this call initiates the observable pipeline, but does not
// wait until the entire pipeline has been executed before
// returning control to the caller
// the question is: why? Rx knows I'm instigating an async task
// as part of the pipeline (that's the point of the FromAsync
// method), so why can't it still treat the pipeline atomically
// when I call Start() on the scheduler?
scheduler.Start();
// count is still zero at this point
Assert.Equal(1, count);
}
private async Task<Unit> Whatever(IScheduler scheduler)
{
return await Observable.Timer(TimeSpan.FromMilliseconds(100), scheduler).Select(_=>Unit.Default).ToTask();
}
或者,您需要将Whatever
方法放在可以模拟出来进行测试的接口后面。在这种情况下,你只需要你的Stub / Mock / Double返回上面的代码即return await Observable.Timer(TimeSpan.FromMilliseconds(100), scheduler).Select(_=>Unit.Default).ToTask();