I have created a mock UINavigationController using OCMock. However, I cannot assign it to the navigationController property of a UIViewController since that property is readonly.

id mockNavController = [OCMockObject mockForClass:[UINavigationController class]];
...
myViewController.navigationController = mockNavController; // readonly!

The author of this blog post claims to have found a solution but neglected to share it.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

There are a couple of possible solutions.

You could invoke the private setter for the navigationController but that may not exist or work reliably in all cases.

You could follow Derek's advice and create a category which redefines the navigationController property on UIViewController. Access to the navigationController property should then be safe but if UIViewController accesses the backing ivar directly anywhere and you did not use the same ivar in your category then you might see unexpected behavior.

You could use a partial mock of UINavigationController as in http://blog.carbonfive.com/2010/03/10/testing-view-controllers/. Your test isn't as isolated as you might like in that case but at least the private behavior of your UIViewController superclass and UINavigationController should be unchanged.

link|improve this answer
feedback

It's not necessary to create a mutator that allows you to set the navigationController property, as you can mock the accessor that returns it. Here's how I do it:

-(void)testTappingSettingsButtonShouldDisplaySettings {
    MyController *myController = [[MyController alloc] init];

    // expect the nav controller to push a settings controller
    id mockNavigationController = [OCMockObject mockForClass:[UINavigationController class]];
    [[mockNavigationController expect] pushViewController:[OCMArg any] animated:YES];

    // set up myController to return the mocked navigation controller
    id mockController = [OCMockObject partialMockForObject:myController];
    [[[mockController expect] andReturn:mockNavigationController] navigationController];

    [myController settingsButtonTapped];

    [mockNavigationController verify];
    [mockController verify];
    [myController release];
}
link|improve this answer
Thanks, that is an interesting solution. – titaniumdecoy Dec 29 '10 at 18:00
+1 for "Why didn't I think of that!" – Jon Reid Mar 22 '11 at 2:50
feedback

One technique I have used in tests is to define a category which adds methods to the main class so that I can access internal properties. You could try using a category to synthesize a setter, bt you may need to know the variable name that holds the navigation controller pointer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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