在View Model上测试RACCommand

时间:2013-06-16 12:33:53

标签: mvvm asynchronous magicalrecord reactive-cocoa

我正在尝试测试在我的视图模型上执行的RACCommand的结果。

我将提交命令设置为:

- (void) createSubmitCommand
{
    @weakify(self);
    self.submitCommand = [RACCommand commandWithCanExecuteSignal: [self validSignal]];
    self.submitSignal = [self.submitCommand
                           addSignalBlock:^RACSignal *(id value) {
                               @strongify(self);
                               return [self save];
                           }];
}

- (RACSignal *) save
{
    RACSubject *saveSubject = [RACSubject subject];

    [self.model.managedObjectContext MR_saveOnlySelfWithCompletion:^(BOOL success, NSError *error) {
        if (!success)
        {
            [saveSubject sendError: error];
        }
        else
        {
            [saveSubject sendNext: nil];
            [saveSubject sendCompleted];
        }
    }];

    return saveSubject;
}
当我初始化我的视图模型并且validSignal在测试上下文中有效时,会调用

createSubmitCommand。

我正在使用MagicalRecord进行核心数据持久性测试和Kiwi测试。当我调用[[viewModel submitCommand] execute:nil]我的模型正在保存时,我需要测试它。

我的测试看起来像这样:

__block NSArray *models = nil;
[[vm submitSignal] subscribeNext:^(id x) {
    models = [Model MR_findAll];
}];

[[vm submitCommand] execute: nil];

[[expectFutureValue(models) should] haveCountOf: 2];

问题是save是异步的并且不会阻塞然后测试结束并拆除我的NSManagedObjectContext并且测试失败。 我觉得我的测试完全错误,因为我正在尝试做什么,或者我在滥用RACCommand,但我不知道哪个......

1 个答案:

答案 0 :(得分:6)

原来这是我的愚蠢。我对此测试的期望应该是:

[[expectFutureValue(models) shouldEventually] haveCountOf: 2];

Kiwi似乎坚持不懈,现在等待结果。