- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对 rx/ReactiveUi 非常陌生,想使用 TestScheduler 编写一个 xunit 测试来检查检索搜索建议的限制是否正常工作。
想法是使用 TestScheudler 进行计时,更改 search-term 属性的值并检查是否调用了异步方法。不幸的是,该方法没有在预期的位置调用(见附件代码,尤其是单元测试)。
我错过了什么?我尝试测试的方法是否是一个好方法?
我的 View 模型:
public class MyViewModel : ReactiveObject
{
public MyViewModel (IMyQueryHandler queryHandler)
{
...
// Type suggestions
this.SearchTerms = this.ObservableForProperty(x => x.SearchTerm)
.Throttle(SuggestionThrottle).Value();
this.SearchTerms.Subscribe(this.LoadSearchSuggestionsAsync);
...
}
internal async void LoadSearchSuggestionsAsync(string search)
{
...
this.SearchSuggestions = this.queryHandler.ExecuteQuery(...);
...
}
public IList<SearchSuggestion> SearchSuggestions
{
get { return this.searchSuggestions; }
set { this.RaiseAndSetIfChanged(ref this.searchSuggestions, value); }
}
...
}
我的单元测试 (xunit):
...
public class TestFixture : ReactiveObject
{
public string SearchTerms { get { return this._searchTermsBackingField.Value; } }
public ObservableAsPropertyHelper<string> _searchTermsBackingField;
}
[Fact]
public void WillTryToLoadSearchSuggestionsAfterThrottleTime()
{
new TestScheduler().With(
sched =>
{
var fixture = new TestFixture();
var queryClient = Substitute.For<IMyQueryHandler>();
var caseSuggestions = new List<...> { ... }
queryClient.ExecuteQuery<...>(...).ReturnsForAnyArgs(...); // Nsubstitute
var vm = new MyViewModel(queryClient);
vm.SearchTerms.ToProperty(fixture, p => p.SearchTerms, out fixture._searchTermsBackingField);
sched.Schedule(() => vm.SearchTerm = "Tes");
sched.Schedule(MyViewModel.SuggestionThrottle, () => vm.SearchTerm = "Test");
sched.AdvanceBy(MyViewModel.SuggestionThrottle.Ticks);
sched.AdvanceBy(1);
// why is the method MyViewModel.LoadSearchSuggestionsAsync not called here (in debug)???
sched.AdvanceBy(1);
} // method gets called here...
}
...
最佳答案
Throttle 没有设置调度器,而是写 Throttle(timespan, RxApp.MainThreadScheduler)
关于c# - TestScheduler 在订阅的属性上没有像预期的那样工作(w throttle),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27549753/
我创建了以下辅助方法来协助测试可观察对象: public static void ExecuteObservableTest(IObservable observable, Action ac
我正在测试单个用例。但是测试观察者不会在测试环境中发出任何东西。 即使我将 subscribeOn() 从 Schedulers.newThread() 更改为TestScheduler() 仍然测试
根据一些评论,我应该明确表示这个问题是关于为什么 TestScheduler 会抛出空引用异常,而不是如何让测试通过。一个较早的示例假定与 TPL 的交互是问题的原因,但我现在发现这不是触发行为所必需
我正在尝试测试一个函数,其中流的元素在延迟后一个接一个地分派(dispatch),我能够使用 Thread.sleep 使我的测试工作。但是,当我使用 TestScheduler.advanceTim
当我这样做时: testScheduler.Schedule("Hello world",(scheduler, state) => Console.WriteLine(state)); testSc
我对 rx/ReactiveUi 非常陌生,想使用 TestScheduler 编写一个 xunit 测试来检查检索搜索建议的限制是否正常工作。 想法是使用 TestScheudler 进行计时,更改
我正在使用 RX 进行一些(非常基本的)事件订阅:- public void StartListening(IObservable observable) { subscription = ob
我试图让 Jasmine、promises 和 Rx.TestScheduler 一起很好地发挥作用,但我遇到了一个似乎无法解决的障碍。 我想要实现的是使用 RxJs 和 Jasmine 测试延迟 p
我正在尝试在 Kotlin 中使用 RxJava 在 MVP 架构中测试我的演示者。我创建了一个测试规则,用 TestScheduler 替换常用的调度程序,以便能够测试异步请求: class Tes
我正在尝试了解如何在 C# 中实现以下目标 我有这个类的列表 public class StockTickerChangeHistory { public DateTime Time;
我正在尝试在测试中使用带有异步方法的 reactiveui 测试调度程序。 等待异步调用时测试挂起。 根本原因似乎是在异步方法中等待的命令。 [Fact] public async T
我一直面临主题和 TestScheduler 的问题。如果我使用 Trampoline 调度程序,我的测试会通过,但由于某种原因,如果我使用 TestScheduler,测试会失败。 这是我的示例测试
这很愚蠢,但我似乎找不到包含 TestScheduler 的 .net rx nuget 包 请指出正确的方向。 最佳答案 TestScheduler 在 Microsoft.Reactive.Tes
所以我正在尝试在使用 Akavache 的应用程序中测试缓存行为。我的测试看起来像这样: using Akavache; using Microsoft.Reactive.Testing; using
我有一个测试代码的例子: [Fact] public void Should_only_contain_most_recent() { var window = Tim
我正在尝试在 RxJs 版本 5 中使用 Observable.interval 编写示例单元测试。我正在运行以下代码,但我的 observable 只触发一次,而不是预期的 20 次. it('do
我想编写一个单元测试来验证下面的 callInit 方法。但是,我在该行包含 subscribe( 的地方遇到了空指针异常。我的问题是如何在下面的方法中验证 onnext 和 onerror 条件?
tl;dr 是否可以在不重写的情况下对这段代码进行单元测试? http://jsbin.com/jezosegopo/edit?js,console const keyUpObserver = ($i
我想检查我创建的 IObservable 是否尊重“完成后,我将取消订阅你” 的礼貌。乍一看,我的代码似乎有问题。但是删除我的代码,只使用 TestScheduler 提供的 Observable 和
我是 ReactiveUI 的新手。我有以下简单设置:可以指定 csv 的路径,并将包含的数据点显示给用户(使用 oxyplot)。现在我正在尝试测试以下订阅: public GraphViewMod
我是一名优秀的程序员,十分优秀!