How do you write first responder unit tests?

I'm trying to write a test to confirm that a method advances focus to the next text field. controller is a descendant of UIViewController. But this exploratory test fails:

- (void)testFirstResponder
{
    [controller view];
    [[controller firstTextField] becomeFirstResponder];

    STAssertTrue([[controller firstTextField] isFirstResponder], nil);
}

The first line causes the view to be loaded so that its outlets are in place. The text fields are non-nil. But the test never passes.

I'm guessing that becomeFirstResponder doesn't set the first responder right away, but schedules it for later. So is there a good way to write a unit test against it?

Pulling up answer from comment in accepted answer… Let things run for a short time:

[[NSRunLoop currentRunLoop] runUntilDate:[NSDate date]];
link|improve this question
feedback

3 Answers

up vote 3 down vote accepted
+50

I guess that managing/changing the first responder chain is somehow accomplished in the main loop, when the UI is updated preparing for the next event handling. If this hypothesis is correct, I would simply do the following:

-(void)assertIfNotFirstResponder:(UITextField*)field {
    STAssertTrue([field isFirstResponder], nil);
}

- (void)testFirstResponder
{
     [controller view];
     [[controller firstTextField] becomeFirstResponder];
     [self performSelector:@selector(@"assertIfNotFirstResponder:") withObject:[controller firstTextField] afterDelay:0.0];
 }

Note: I have used a 0.0 delay because I simply want that the message is put on the event queue and dispatched as soon as possible. I need just a way to get back to the main loop, for its housekeeping. This should produce no actual delay in your case. If you are executing several tests of the same kind, i.e. by repeatedly changing the control that is the first responder, this technique should guarantee that all of those events correctly ordered with the ones generated by performSelector.

If you are running your tests from a different thread, you could use – performSelectorOnMainThread:withObject:waitUntilDone:

link|improve this answer
Good thought, but for unit testing, putting a message on the event queue doesn't work because the test concludes and the fixture is torn down before the assertion. Counterexample: changing STAssertTrue to STAssertFalse makes no difference. – Jon Reid May 29 '11 at 23:26
1  
Right, this will not work... as a further hint, I have just found out that you could run for some time the run loop before testing the condition: [[NSRunLoop currentRunLoop] runUntilDate:fiveSecondsFromNow]; (from: stackoverflow.com/questions/1077737/…). I am not entirely sure that this solution is really "elegant", but it should work and may be suitable for "smaller" cases (when you do not really need to go with Frank)... – sergio May 30 '11 at 11:55
Excellent! Even specifying a run time of zero does the trick. – Jon Reid May 30 '11 at 23:42
feedback

You need to ensure the textField is installed in the view hierarchy.

If the view’s window property holds a UIWindow object, it has been installed in a view hierarchy; if it returns nil, the view is detached from any hierarchy.

Hopefully this helps....

link|improve this answer
You're right, the UIWindow was nil. Is there a way to change this in a unit test? Pushing the view controller doesn't work because it schedules things, but (as noted in my response to @sergio) not soon enough for a unit test. – Jon Reid May 29 '11 at 23:30
I now have my answer. +1 for filling in part of the puzzle. – Jon Reid May 31 '11 at 1:06
feedback

It seems instead of unit testing, this is a job for automated acceptance testing. (See Frank: Automated Acceptance Tests for iPhone and iPad)

link|improve this answer
+1 for such a wonderful framework! – sergio May 30 '11 at 11:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.