-
Notifications
You must be signed in to change notification settings - Fork 609
Expand file tree
/
Copy pathOCMRecorder.m
More file actions
176 lines (147 loc) · 5.38 KB
/
OCMRecorder.m
File metadata and controls
176 lines (147 loc) · 5.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
#import <limits.h>
/*
* Copyright (c) 2014-2020 Erik Doernenburg and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use these files except in compliance with the License. You may obtain
* a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
#import <objc/runtime.h>
#import "NSInvocation+OCMAdditions.h"
#import "OCClassMockObject.h"
#import "OCMInvocationMatcher.h"
#import "OCMRecorder.h"
#import "OCMFunctionsPrivate.h"
#import "OCMMacroState.h"
@implementation OCMRecorder
- (instancetype)init
{
// no super, we're inheriting from NSProxy
shouldReturnMockFromInit = NO;
return self;
}
- (instancetype)initWithMockObject:(OCMockObject *)aMockObject
{
[self init];
[self setMockObject:aMockObject];
return self;
}
- (void)setMockObject:(OCMockObject *)aMockObject
{
mockObject = aMockObject;
}
- (void)setShouldReturnMockFromInit:(BOOL)flag
{
shouldReturnMockFromInit = flag;
}
- (void)dealloc
{
[invocationMatcher release];
[super dealloc];
}
- (NSString *)description
{
return [invocationMatcher description];
}
- (OCMInvocationMatcher *)invocationMatcher
{
return invocationMatcher;
}
- (BOOL)didRecordInvocation
{
return [invocationMatcher recordedInvocation] != nil;
}
#pragma mark Modifying the matcher
- (id)classMethod
{
// should we handle the case where this is called with a mock that isn't a class mock?
[invocationMatcher setRecordedAsClassMethod:YES];
return self;
}
- (id)ignoringNonObjectArgs
{
[invocationMatcher setIgnoreNonObjectArgs:YES];
return self;
}
- (BOOL)currentlyRecordingInMacro
{
return [[OCMMacroState globalState] recorder] == self;
}
#pragma mark Recording the actual invocation
- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector
{
if([self didRecordInvocation] && [self currentlyRecordingInMacro])
{
[NSException raise:NSInvalidArgumentException
format:@"Recorder attempting to record `%s` but recorder has already recorded a stub for: `%@`. "
@"Are there multiple invocations on mocks in a single macro?",
sel_getName(aSelector), [self description]];
}
if([invocationMatcher recordedAsClassMethod])
return [[(OCClassMockObject *)mockObject mockedClass] methodSignatureForSelector:aSelector];
NSMethodSignature *signature = [mockObject methodSignatureForSelector:aSelector];
if(signature == nil)
{
// if we're a working with a class mock and there is a class method, auto-switch
if(([object_getClass(mockObject) isSubclassOfClass:[OCClassMockObject class]]) &&
([[(OCClassMockObject *)mockObject mockedClass] respondsToSelector:aSelector]))
{
[self classMethod];
signature = [self methodSignatureForSelector:aSelector];
}
}
return signature;
}
- (void)forwardInvocation:(NSInvocation *)anInvocation
{
NSAssert(!([self didRecordInvocation] && [self currentlyRecordingInMacro]),
@"Should not be recording multiple stubs. This should've been prevented in `-methodSignatureForSelector`.");
[anInvocation setTarget:nil];
[invocationMatcher setInvocation:anInvocation];
// If the method returns an object, we want to return a recorder so that we can trap the case
// where multiple invocations are possibly being recorded in a single OCMStub/OCMExpect macro.
// (this is caught in -methodSignatureForSelector).
if(OCMIsObjectType([[anInvocation methodSignature] methodReturnType]))
{
id returnValue = self;
// Code with ARC may retain the receiver of an init method before invoking it. In that case it
// relies on the init method returning an object it can release. So, we must set the correct
// return value here. Normally, the correct return value is the recorder but sometimes it's the
// mock. The decision is easier to make in the mock, which is why the mock sets a flag in the
// recorder and we simply use the flag here.
if(shouldReturnMockFromInit && [anInvocation methodIsInInitFamily])
{
returnValue = mockObject;
}
else if ([anInvocation methodIsInCreateFamily])
{
// In the case of mocking a create method (new, alloc, copy, mutableCopy) we need to
// add a retain count to keep ARC happy. This will appear as a leak in non-arc code.
[returnValue retain];
}
[anInvocation setReturnValue:&returnValue];
}
}
- (void)doesNotRecognizeSelector:(SEL)aSelector __used
{
[NSException raise:NSInvalidArgumentException format:@"%@: cannot stub/expect/verify method '%@' because no such method exists in the mocked class.", mockObject, NSStringFromSelector(aSelector)];
}
@end
@implementation OCMRecorder (Properties)
@dynamic _ignoringNonObjectArgs;
- (OCMRecorder *(^)(void))_ignoringNonObjectArgs
{
id (^theBlock)(void) = ^(void) {
return [self ignoringNonObjectArgs];
};
return [[theBlock copy] autorelease];
}
@end