iOS unit test: How to set/update/examine firstResponder?

后端 未结 3 1782
故里飘歌
故里飘歌 2020-12-29 07:14

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

3条回答
  •  难免孤独
    2020-12-29 07:26

    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:

提交回复
热议问题