vote up 1 vote down star
1

I'm getting used to OCMock. Coming from a Java/JMock background I'm now looking for the ability to say [[[myMock stub] returnValueFromCustomMethod] someMockedMethod]; where returnValueFromCustomMethod is defined in the test class. I was originally thinking something along the terms of [[[myMock stub] usingSelector:@selector(myMethod:)] someMockedMethod]; but after writing I wonder if my first approach makes more sense. Either way, could someone show me if and how this can be done?

flag

31% accept rate

2 Answers

vote up 0 vote down

That's pretty close to what I'm looking for! Stil there's a lot of noise in the code. I tried a mix of your suggestion along with another approach but I seem to be off by one.

@interface OCMockRecorder (CustomMethods)
- (id) andPerformsSelector:(SEL)selector onTargetObject:(id)targetObject;
@end

@implementation OCMockRecorder (CustomMethods)

- (id) andPerformsSelector:(SEL)selector onTargetObject:(id)targetObject
{
    NSMethodSignature *signature = [[targetObject class] instanceMethodSignatureForSelector:selector];

    // set up an invocation equivalent to [self customMethod]
    NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:signature];
    [invocation setTarget:targetObject];
    [invocation setSelector:selector];

    // introduce it into the mock
    [self setUpReturnValue:invocation];
    return nil;
}

@end

Then to test I use:

@interface OCMockExtensionsTest : SenTestCase
{
    BOOL methodWasCalled;
}

-(void) willBeCalledOnBehalfOfMock;

@end

@implementation OCMockExtensionsTest

-(void) willBeCalledOnBehalfOfMock
{
    methodWasCalled = YES;
}

-(void) setUp
{
    methodWasCalled = NO;
}

-(void) testOCMockExtensions
{
    NSString* aMock = [OCMockObject mockForClass:[NSString class]];
    [[ [(id)aMock stub] andPerformsSelector:@selector(willBeCalledOnBehalfOfMock) onTargetObject:self] 
    initWithString:OCMOCK_ANY];
    STAssertFalse(methodWasCalled, @"Method should not be called until after the mocked method is invoked.");
    [aMock initWithString:@"Hello World!"];
    STAssertTrue(methodWasCalled, @"Method SHOULD be called after the mocked method is invoked.");
}


@end

Yet I see the error: error: OCMockObject[NSString]: unexpected method invoked: initWithString:@"Hello World!" stubbed: (null) Which tells me my invocation isn't being matched.

link|flag
vote up 0 vote down

My original answer was off-track: OCMock doesn't support this! If you wanted to change OCMock to support this, you would need to do something like adding a BOOL returnValueIsFromInvocation field to OCMockRecorder, and add a method to set this up:

- (id)andReturnResultOfInvocation:(NSInvocation *)anInvocation {
  returnValueIsFromInvocation = YES;
  returnValueIsBoxed = NO;
  returnValueShouldBeThrown = NO;
  [returnValue autorelease];
  returnValue = [anInvocation retain];
  return self;
}

Then teach setUpReturnValue to call the invocation (changes are in bold):

- (void)setUpReturnValue:(NSInvocation *)anInvocation
{
  if (returnValueIsFromInvocation) {
    NSInvocation *returnValueInvocation = (NSInvocation *)returnValue;
    [returnValueInvocation invoke];
    void *buffer = malloc([[anInvocation methodSignature] methodReturnLength]);
    [returnValueInvocation getValue:buffer];
    [anInvocation setReturnValue:buffer];
    free(buffer);
  }
  else if(returnValueShouldBeThrown)
  {
    @throw returnValue;
  }
  else if(returnValueIsBoxed)
  {
    if(strcmp([[anInvocation methodSignature] methodReturnType],
              [(NSValue *)returnValue objCType]) != 0)
      [NSException raise:NSInvalidArgumentException
                  format:@"Return value does not match method signature."];
    void *buffer = malloc([[anInvocation methodSignature] methodReturnLength]);
    [returnValue getValue:buffer];
    [anInvocation setReturnValue:buffer];
    free(buffer);
  }
  else
  {
    const char *returnType = [[anInvocation methodSignature] methodReturnType];
    const char *returnTypeWithoutQualifiers = returnType + (strlen(returnType) - 1);
    if(strcmp(returnTypeWithoutQualifiers, @encode(id)) == 0)
      [anInvocation setReturnValue:&returnValue];   
  }
}

This change is difficult to do by introducing subclasses because you have to override the methods that return OCMockRecorders (like stub, expect and so on) but the concrete subclasses of OCMockObject (OCClassMockObject and OCProtocolMockObject) are hidden by the framework.

link|flag

Your Answer

Get an OpenID
or

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