My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
#include <UnitTest++/UnitTest++.h>
#include <MockItNow/MockItNow.h>

namespace TestClasses
{
struct Bar
{
Bar()
: value(0.0f)
{
}

float value;
};

bool operator==(const Bar& lhs, const Bar& rhs)
{
return lhs.value == rhs.value;
}

std::ostream& operator<<(std::ostream& stream, const Bar& bar)
{
return stream << "Bar(value: " << bar.value << ")";
}

class AbstractBase
{
public:
virtual void PureVirtual() = 0;
};

class Concrete : public AbstractBase
{
public:
Concrete()
{
}

Concrete(const AbstractBase&)
{
}

virtual void PureVirtual() {}
};

bool operator==(const Concrete&, const Concrete&)
{
return true;
}

std::ostream& operator<<(std::ostream& stream, const Concrete&)
{
return stream << "Concrete()";
}

class Foo
{
public:

Foo()
{
}

static void StaticFunction()
{
}

virtual void VirtualFunction()
{
}

void NoReturn()
{
}

void NoReturnWithArguments(int, int, float)
{
}

float FloatReturn()
{
return 1.0f;
}

void Overloaded(int)
{
}

void Overloaded(float)
{
}

void UserType(const Bar&)
{
}

void NoReturnWithOutReferenceArgument(int& a)
{
a = 1;
}

void NoReturnWithOutPointerArgument(int* a)
{
*a = 1;
}

void AbstractParameter(AbstractBase&)
{
}
};
}

DECLARE_STORAGE_TYPE(TestClasses::AbstractBase, TestClasses::Concrete);

namespace
{
using namespace TestClasses;

void FreeFunction()
{
}

struct Fixture
{
Fixture()
{
}

Foo foo;
Bar bar;
Mocker mocker;
};

TEST_FIXTURE (Fixture, MemberFunction)
{
REGISTER(Foo::NoReturn);

RECORD
{
// These are identical
foo.NoReturn();
EXPECT(foo.NoReturn());
}

foo.NoReturn();
foo.NoReturn();
}

TEST_FIXTURE (Fixture, VirtualFunction)
{
REGISTER(Foo::VirtualFunction);

RECORD
{
foo.VirtualFunction();
}

foo.VirtualFunction();
}

TEST_FIXTURE (Fixture, FreeFunction)
{
REGISTER(FreeFunction);

RECORD
{
FreeFunction();
}

FreeFunction();
}

TEST_FIXTURE (Fixture, StaticFunction)
{
REGISTER(Foo::StaticFunction);

RECORD
{
Foo::StaticFunction();
}

Foo::StaticFunction();
}

TEST_FIXTURE (Fixture, ArgumentChecking)
{
REGISTER(Foo::NoReturnWithArguments);

RECORD
{
foo.NoReturnWithArguments(1, 2, 3.4f);
}

foo.NoReturnWithArguments(1, 2, 3.4f);
}

TEST_FIXTURE (Fixture, ReturnValues)
{
REGISTER(Foo::FloatReturn);

RECORD
{
EXPECT_RETURN(foo.FloatReturn(), 2.3f);
}

CHECK_EQUAL(2.3f, foo.FloatReturn());
}

TEST_FIXTURE (Fixture, DefaultStubs)
{
REGISTER_STUB(Foo::FloatReturn, 5.6f);

// I'm not going to call NoReturn, but it won't cause a failure because there is no expectation
REGISTER_STUB(Foo::NoReturn);

RECORD
{
EXPECT_RETURN(foo.FloatReturn(), 2.3f);
}

// This is the expectation return value set up in the record block
CHECK_EQUAL(2.3f, foo.FloatReturn());

// All subsequent calls will use the stub return value provided at register time
CHECK_EQUAL(5.6f, foo.FloatReturn());
CHECK_EQUAL(5.6f, foo.FloatReturn());
}

TEST_FIXTURE (Fixture, OverloadedFunctions)
{
REGISTER_OVERLOADED(Foo::Overloaded, void (Foo::*)(int));

RECORD
{
foo.Overloaded(1);

// We never registered this overload, so the mocker won't set up and expectation for it.
// This means it will call the original function.
foo.Overloaded(4.5f);
}

foo.Overloaded(1);
}

TEST_FIXTURE (Fixture, OutReferenceArguments)
{
REGISTER(Foo::NoReturnWithOutReferenceArgument);

int a = 0;

RECORD
{
EXPECT(foo.NoReturnWithOutReferenceArgument(a)).ReturnArgument(Argument1, 12345);
}

// This one will use the expectation from the record block
foo.NoReturnWithOutReferenceArgument(a);
CHECK_EQUAL(12345, a);

// This one will use the original function
foo.NoReturnWithOutReferenceArgument(a);
CHECK_EQUAL(1, a);
}

TEST_FIXTURE (Fixture, OutPointerArguments)
{
REGISTER(Foo::NoReturnWithOutPointerArgument);

int a = 0;
int result = 12345;

RECORD
{
EXPECT(foo.NoReturnWithOutPointerArgument(&a)).ReturnArgument(Argument1, &result);
}

// This one will use the expectation from the record block
foo.NoReturnWithOutPointerArgument(&a);
CHECK_EQUAL(12345, a);

// This one will use the original function
foo.NoReturnWithOutPointerArgument(&a);
CHECK_EQUAL(1, a);
}

TEST_FIXTURE (Fixture, IgnoreArguments)
{
REGISTER(Foo::NoReturnWithArguments);

RECORD
{
EXPECT(foo.NoReturnWithArguments(1, 2, 3.4f)).Ignore(AllArguments);
EXPECT(foo.NoReturnWithArguments(1, 2, 3.4f)).Ignore(Argument1);
}

// Arguments don't matter here
foo.NoReturnWithArguments(-1, -1, -1);

// This one is only ignoring the first argument
foo.NoReturnWithArguments(-1, 2, 3.4f);
}

TEST_FIXTURE (Fixture, IgnoreThis)
{
REGISTER(Foo::NoReturn);

RECORD
{
EXPECT(foo.NoReturn()).Ignore(This);
}

Foo foo2;
foo2.NoReturn();
}

TEST_FIXTURE (Fixture, FailWhenCalled)
{
REGISTER(Foo::NoReturnWithArguments);

RECORD
{
// These are the same
EXPECT(foo.NoReturnWithArguments(1, 2, 3.4f)).FailWhenCalled();
FAIL_WHEN_CALLED(foo.NoReturnWithArguments(1, 2, 3.4f));
}

// Uncomment to see the unit test fail. Note that arguments are ignored when using FailWhenCalled
//foo.NoReturnWithArguments(-1, -1, -1);
}

TEST_FIXTURE (Fixture, CallOriginal)
{
REGISTER(Foo::NoReturn);

RECORD
{
EXPECT(foo.NoReturn()).CallOriginal();
}

// There's still an expectation that the funciton will be called, but it will use the original implementation
foo.NoReturn();
}

TEST_FIXTURE (Fixture, ReturnAlways)
{
REGISTER(Foo::FloatReturn);

Foo foo2;

RECORD
{
EXPECT_RETURN_ALWAYS(foo.FloatReturn(), 2.3f);
EXPECT_RETURN_ALWAYS(foo2.FloatReturn(), 4.5f);
}

// Note that return always is different than using REGISTER_STUB. REGISTER_STUB will return
// the same value for all function calls of that type. EXPECT_RETURN_ALWAYS will return the
// same value for all function calls on that object.

CHECK_EQUAL(2.3f, foo.FloatReturn());
CHECK_EQUAL(2.3f, foo.FloatReturn());
CHECK_EQUAL(2.3f, foo.FloatReturn());

CHECK_EQUAL(4.5f, foo2.FloatReturn());
CHECK_EQUAL(4.5f, foo2.FloatReturn());
CHECK_EQUAL(4.5f, foo2.FloatReturn());
}

TEST_FIXTURE (Fixture, UserTypes)
{
// As soon as you register this function, you are required to provide operator==
// and operator<< for ostream. I've done that above.
REGISTER(Foo::UserType);

RECORD
{
foo.UserType(bar);
}

// This works because the compare operator just checks that the contained values are the same
Bar bar2;
foo.UserType(bar2);
}

TEST_FIXTURE (Fixture, CompareByAddress)
{
REGISTER(Foo::UserType);

RECORD
{
EXPECT(foo.UserType(bar)).CompareArgument<Bar>(Argument1, CompareByAddress);
}

// This one won't work because the addresses are different
//Bar bar2;
//foo.UserType(bar2);

foo.UserType(bar);
}

TEST_FIXTURE (Fixture, CompareByMemory)
{
REGISTER(Foo::UserType);

RECORD
{
EXPECT(foo.UserType(bar)).CompareArgument<Bar>(Argument1, CompareByMemory);
}

// This only works because the object memory is the same
Bar bar2;
foo.UserType(bar2);
}

TEST_FIXTURE (Fixture, AbstractParameter)
{
REGISTER(Foo::AbstractParameter);

Concrete concrete;

RECORD
{
foo.AbstractParameter(concrete);
}

foo.AbstractParameter(concrete);
}

void FunctionThatThrowsException()
{
throw 123;
}

TEST_FIXTURE (Fixture, CanThrowExceptions)
{
REGISTER(FunctionThatThrowsException);

// First just show that the original exception is being thrown and caught

bool caught = false;

try
{
FunctionThatThrowsException();
}
catch (const int& e)
{
CHECK_EQUAL(123, e);
caught = true;
}

CHECK(caught);

// Now show that we can change the exception inside the record block

RECORD
{
EXPECT_THROW(FunctionThatThrowsException(), 456);
}

caught = false;

try
{
FunctionThatThrowsException();
}
catch (const int& e)
{
CHECK_EQUAL(456, e);
caught = true;
}

CHECK(caught);
}

TEST_FIXTURE (Fixture, CanThrowExceptionsByDefault)
{
REGISTER_THROW(FunctionThatThrowsException, 456);

RECORD;

bool caught = false;

try
{
FunctionThatThrowsException();
}
catch (const int& e)
{
CHECK_EQUAL(456, e);
caught = true;
}

CHECK(caught);
}
}

Change log

r10 by rorydriscoll on Mar 13, 2009   Diff
Unscrewed up my last checkin.
Go to: 
Project members, sign in to write a code review

Older revisions

r9 by rorydriscoll on Mar 13, 2009   Diff
- Latest version of MockItNow with
ability to do out pointer arguments.
r7 by rorydriscoll on Jan 15, 2009   Diff
- Added support for recording
functions and throwing exceptions
r6 by rorydriscoll on Nov 15, 2008   Diff
Added macro to define a storage type
for a class
All revisions of this file

File info

Size: 8928 bytes, 496 lines
Powered by Google Project Hosting