我正在使用System.Reactive.Linq
扩展方法在异步方法中将可观察对象转换为结果。当我有一个对象引用时,代码可以正确运行;但是,当我将null传递给OnNext
方法时,生成的等待者会抛出
System.InvalidOperationException
HResult=0x80131509
Message=Sequence contains no elements.
Source=System.Reactive
StackTrace:
at System.Reactive.Subjects.AsyncSubject`1.GetResult() in D:\a\1\s\Rx.NET\Source\src\System.Reactive\Subjects\AsyncSubject.cs:line 441
at <namespace>.DataServiceTests.<GetWithInvalidIdShouldReturnNull>d__5.MoveNext() in <local test code>
我期望侍者得到一个空值。我的测试如下:
[Fact]
public async void GetWithInvalidIdShouldReturnNull()
{
var testId = shortid.ShortId.Generate();
var result = await myTestOjbect.GetById(testId);
Assert.Null(result);
}
GetById
方法是:
public IObservable<object> GetById(string id)
{
return Observable.Create((IObserver<object> observer) => {
var item = this._repository.Get(id); // This returns null when id is not found in collection
observer.OnNext(item);
observer.OnCompleted();
return Disposable.Empty;
});
}
答案 0 :(得分:-1)
对我来说很好,尽管我在Linqpad中做到了。这是我的代码:
async Task Main()
{
var result = await GetById("");
if(result == null)
Console.WriteLine("OK!");
else
throw new Exception("Expected Null!");
}
public IObservable<object> GetById(string id)
{
var o = Observable.Create<object>(obs =>
{
obs.OnNext(null);
obs.OnCompleted();
return Disposable.Empty;
});
return o;
}
答案 1 :(得分:-1)
您的主题似乎没有观察者,或者观察者已经被处置。