README.md 13.9 KB
Newer Older
Billy Donahue's avatar
Billy Donahue committed
1
## Google Mock ##
2

Billy Donahue's avatar
Billy Donahue committed
3
The Google C++ mocking framework.
4

Billy Donahue's avatar
Billy Donahue committed
5
### Overview ###
6

Billy Donahue's avatar
Billy Donahue committed
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Google's framework for writing and using C++ mock classes.
It can help you derive better designs of your system and write better tests.

It is inspired by:

  * [jMock](http://www.jmock.org/),
  * [EasyMock](http://www.easymock.org/), and
  * [Hamcrest](http://code.google.com/p/hamcrest/),

and designed with C++'s specifics in mind.

Google mock:

  * lets you create mock classes trivially using simple macros.
  * supports a rich set of matchers and actions.
  * handles unordered, partially ordered, or completely ordered expectations.
  * is extensible by users.

We hope you find it useful!
26

Billy Donahue's avatar
Billy Donahue committed
27
28
29
30
31
32
33
34
35
36
37
38
39
40
### Features ###

  * Provides a declarative syntax for defining mocks.
  * Can easily define partial (hybrid) mocks, which are a cross of real
    and mock objects.
  * Handles functions of arbitrary types and overloaded functions.
  * Comes with a rich set of matchers for validating function arguments.
  * Uses an intuitive syntax for controlling the behavior of a mock.
  * Does automatic verification of expectations (no record-and-replay needed).
  * Allows arbitrary (partial) ordering constraints on
    function calls to be expressed,.
  * Lets a user extend it by defining new matchers and actions.
  * Does not use exceptions.
  * Is easy to learn and use.
41

42
43
44
45
Please see the project page above for more information as well as the
mailing list for questions, discussions, and development.  There is
also an IRC channel on OFTC (irc.oftc.net) #gtest available.  Please
join us!
46

Billy Donahue's avatar
Billy Donahue committed
47
48
49
Please note that code under [scripts/generator](scripts/generator/) is
from [cppclean](http://code.google.com/p/cppclean/) and released under
the Apache License, which is different from Google Mock's license.
50

Billy Donahue's avatar
Billy Donahue committed
51
52
53
54
55
## Getting Started ##

If you are new to the project, we suggest that you read the user
documentation in the following order:

56
  * Learn the [basics](../../master/googletest/docs/Primer.md) of
Billy Donahue's avatar
Billy Donahue committed
57
    Google Test, if you choose to use Google Mock with it (recommended).
58
  * Read [Google Mock for Dummies](../../master/googlemock/docs/ForDummies.md).
Billy Donahue's avatar
Billy Donahue committed
59
60
61
62
63
64
  * Read the instructions below on how to build Google Mock.

You can also watch Zhanyong's [talk](http://www.youtube.com/watch?v=sYpCyLI47rM) on Google Mock's usage and implementation.

Once you understand the basics, check out the rest of the docs:

65
  * [CheatSheet](../../master/googlemock/docs/CheatSheet.md) - all the commonly used stuff
Billy Donahue's avatar
Billy Donahue committed
66
    at a glance.
67
  * [CookBook](../../master/googlemock/docs/CookBook.md) - recipes for getting things done,
Billy Donahue's avatar
Billy Donahue committed
68
69
70
    including advanced techniques.

If you need help, please check the
71
72
[KnownIssues](docs/KnownIssues.md) and
[FrequentlyAskedQuestions](docs/FrequentlyAskedQuestions.md) before
Billy Donahue's avatar
Billy Donahue committed
73
74
75
76
77
78
79
80
posting a question on the
[discussion group](http://groups.google.com/group/googlemock).


### Using Google Mock Without Google Test ###

Google Mock is not a testing framework itself.  Instead, it needs a
testing framework for writing tests.  Google Mock works seamlessly
Ferenc-'s avatar
Ferenc- committed
81
with [Google Test](http://code.google.com/p/googletest/), but
Samuel Roth's avatar
Samuel Roth committed
82
you can also use it with [any C++ testing framework](../../master/googlemock/docs/ForDummies.md#using-google-mock-with-any-testing-framework).
Billy Donahue's avatar
Billy Donahue committed
83

Billy Donahue's avatar
Billy Donahue committed
84
### Requirements for End Users ###
85

Billy Donahue's avatar
Billy Donahue committed
86
Google Mock is implemented on top of [Google Test](
Billy Donahue's avatar
Billy Donahue committed
87
http://github.com/google/googletest/), and depends on it.
Billy Donahue's avatar
Billy Donahue committed
88
You must use the bundled version of Google Test when using Google Mock.
89

90
You can also easily configure Google Mock to work with another testing
Billy Donahue's avatar
Billy Donahue committed
91
92
framework, although it will still need Google Test.  Please read
["Using_Google_Mock_with_Any_Testing_Framework"](
Samuel Roth's avatar
Samuel Roth committed
93
    ../../master/googlemock/docs/ForDummies.md#using-google-mock-with-any-testing-framework)
Billy Donahue's avatar
Billy Donahue committed
94
for instructions.
95

96
Google Mock depends on advanced C++ features and thus requires a more
Billy Donahue's avatar
Billy Donahue committed
97
modern compiler. The following are needed to use Google Mock:
98

Billy Donahue's avatar
Billy Donahue committed
99
#### Linux Requirements ####
100

101
102
103
  * GNU-compatible Make or "gmake"
  * POSIX-standard shell
  * POSIX(-2) Regular Expressions (regex.h)
104
  * C++98-standard-compliant compiler (e.g. GCC 3.4 or newer)
105

Billy Donahue's avatar
Billy Donahue committed
106
#### Windows Requirements ####
107

108
109
  * Microsoft Visual C++ 8.0 SP1 or newer

Billy Donahue's avatar
Billy Donahue committed
110
#### Mac OS X Requirements ####
111

112
113
114
  * Mac OS X 10.4 Tiger or newer
  * Developer Tools Installed

Billy Donahue's avatar
Billy Donahue committed
115
### Requirements for Contributors ###
116

Billy Donahue's avatar
Billy Donahue committed
117
118
We welcome patches. If you plan to contribute a patch, you need to
build Google Mock and its tests, which has further requirements:
119
120
121
122
123
124
125

  * Automake version 1.9 or newer
  * Autoconf version 2.59 or newer
  * Libtool / Libtoolize
  * Python version 2.3 or newer (for running some of the tests and
    re-generating certain source files from templates)

Billy Donahue's avatar
Billy Donahue committed
126
### Building Google Mock ###
127

danilcha's avatar
danilcha committed
128
129
#### Using CMake ####

130
131
If you have CMake available, it is recommended that you follow the
[build instructions][gtest_cmakebuild]
danilcha's avatar
danilcha committed
132
133
134
as described for Google Test. 

If are using Google Mock with an
135
136
existing CMake project, the section
[Incorporating Into An Existing CMake Project][gtest_incorpcmake]
danilcha's avatar
danilcha committed
137
may be of particular interest. 
danilcha's avatar
danilcha committed
138
To make it work for Google Mock you will need to change 
danilcha's avatar
danilcha committed
139
140
141
142
143

    target_link_libraries(example gtest_main)

to 

danilcha's avatar
danilcha committed
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
    target_link_libraries(example gmock_main)
    
This works because `gmock_main` library is compiled with Google Test.
However, it does not automatically add Google Test includes.
Therefore you will also have to change

    if (CMAKE_VERSION VERSION_LESS 2.8.11)
      include_directories("${gtest_SOURCE_DIR}/include")
    endif()

to

    if (CMAKE_VERSION VERSION_LESS 2.8.11)
      include_directories(BEFORE SYSTEM
        "${gtest_SOURCE_DIR}/include" "${gmock_SOURCE_DIR}/include")
    else()
      target_include_directories(gmock_main SYSTEM BEFORE INTERFACE
        "${gtest_SOURCE_DIR}/include" "${gmock_SOURCE_DIR}/include")
    endif()

This will addtionally mark Google Mock includes as system, which will 
silence compiler warnings when compiling your tests using clang with 
`-Wpedantic -Wall -Wextra -Wconversion`.
danilcha's avatar
danilcha committed
167

168

Billy Donahue's avatar
Billy Donahue committed
169
#### Preparing to Build (Unix only) ####
170

Billy Donahue's avatar
Billy Donahue committed
171
If you are using a Unix system and plan to use the GNU Autotools build
172
system to build Google Mock (described below), you'll need to
Billy Donahue's avatar
Billy Donahue committed
173
configure it now.
174

Billy Donahue's avatar
Billy Donahue committed
175
To prepare the Autotools build system:
shiqian's avatar
shiqian committed
176

Billy Donahue's avatar
Billy Donahue committed
177
    cd googlemock
Billy Donahue's avatar
Billy Donahue committed
178
    autoreconf -fvi
shiqian's avatar
shiqian committed
179

180
181
182
183
To build Google Mock and your tests that use it, you need to tell your
build system where to find its headers and source files.  The exact
way to do it depends on which build system you use, and is usually
straightforward.
184

185
186
187
This section shows how you can integrate Google Mock into your
existing build system.

Billy Donahue's avatar
Billy Donahue committed
188
189
Suppose you put Google Mock in directory `${GMOCK_DIR}` and Google Test
in `${GTEST_DIR}` (the latter is `${GMOCK_DIR}/gtest` by default).  To
190
191
192
build Google Mock, create a library build target (or a project as
called by Visual Studio and Xcode) to compile

Billy Donahue's avatar
Billy Donahue committed
193
    ${GTEST_DIR}/src/gtest-all.cc and ${GMOCK_DIR}/src/gmock-all.cc
194
195
196

with

Billy Donahue's avatar
Billy Donahue committed
197
    ${GTEST_DIR}/include and ${GMOCK_DIR}/include
198

199
200
in the system header search path, and

Billy Donahue's avatar
Billy Donahue committed
201
    ${GTEST_DIR} and ${GMOCK_DIR}
202
203

in the normal header search path.  Assuming a Linux-like system and gcc,
204
205
something like the following will do:

Billy Donahue's avatar
Billy Donahue committed
206
207
208
209
210
211
212
    g++ -isystem ${GTEST_DIR}/include -I${GTEST_DIR} \
        -isystem ${GMOCK_DIR}/include -I${GMOCK_DIR} \
        -pthread -c ${GTEST_DIR}/src/gtest-all.cc
    g++ -isystem ${GTEST_DIR}/include -I${GTEST_DIR} \
        -isystem ${GMOCK_DIR}/include -I${GMOCK_DIR} \
        -pthread -c ${GMOCK_DIR}/src/gmock-all.cc
    ar -rv libgmock.a gtest-all.o gmock-all.o
213

214
215
(We need -pthread as Google Test and Google Mock use threads.)

216
Next, you should compile your test source file with
Billy Donahue's avatar
Billy Donahue committed
217
${GTEST\_DIR}/include and ${GMOCK\_DIR}/include in the header search
218
219
path, and link it with gmock and any other necessary libraries:

Billy Donahue's avatar
Billy Donahue committed
220
221
    g++ -isystem ${GTEST_DIR}/include -isystem ${GMOCK_DIR}/include \
        -pthread path/to/your_test.cc libgmock.a -o your_test
222
223
224
225
226
227
228
229
230
231
232

As an example, the make/ directory contains a Makefile that you can
use to build Google Mock on systems where GNU make is available
(e.g. Linux, Mac OS X, and Cygwin).  It doesn't try to build Google
Mock's own tests.  Instead, it just builds the Google Mock library and
a sample test.  You can use it as a starting point for your own build
script.

If the default settings are correct for your environment, the
following commands should succeed:

Billy Donahue's avatar
Billy Donahue committed
233
234
235
    cd ${GMOCK_DIR}/make
    make
    ./gmock_test
236

Billy Donahue's avatar
Billy Donahue committed
237
238
If you see errors, try to tweak the contents of
[make/Makefile](make/Makefile) to make them go away.
239
240
241

### Windows ###

242
243
244
The msvc/2005 directory contains VC++ 2005 projects and the msvc/2010
directory contains VC++ 2010 projects for building Google Mock and
selected tests.
245

246
247
248
Change to the appropriate directory and run "msbuild gmock.sln" to
build the library and tests (or open the gmock.sln in the MSVC IDE).
If you want to create your own project to use with Google Mock, you'll
Billy Donahue's avatar
Billy Donahue committed
249
have to configure it to use the `gmock_config` propety sheet.  For that:
250
251
252

 * Open the Property Manager window (View | Other Windows | Property Manager)
 * Right-click on your project and select "Add Existing Property Sheet..."
Billy Donahue's avatar
Billy Donahue committed
253
 * Navigate to `gmock_config.vsprops` or `gmock_config.props` and select it.
254
255
256
 * In Project Properties | Configuration Properties | General | Additional
   Include Directories, type <path to Google Mock>/include.

Billy Donahue's avatar
Billy Donahue committed
257
### Tweaking Google Mock ###
258
259
260
261
262

Google Mock can be used in diverse environments.  The default
configuration may not work (or may not work well) out of the box in
some environments.  However, you can easily tweak Google Mock by
defining control macros on the compiler command line.  Generally,
Billy Donahue's avatar
Billy Donahue committed
263
these macros are named like `GTEST_XYZ` and you define them to either 1
264
265
266
or 0 to enable or disable a certain feature.

We list the most frequently used macros below.  For a complete list,
Billy Donahue's avatar
Billy Donahue committed
267
268
see file [${GTEST\_DIR}/include/gtest/internal/gtest-port.h](
../googletest/include/gtest/internal/gtest-port.h).
269
270

### Choosing a TR1 Tuple Library ###
271

272
273
274
275
276
277
278
279
280
281
Google Mock uses the C++ Technical Report 1 (TR1) tuple library
heavily.  Unfortunately TR1 tuple is not yet widely available with all
compilers.  The good news is that Google Test 1.4.0+ implements a
subset of TR1 tuple that's enough for Google Mock's need.  Google Mock
will automatically use that implementation when the compiler doesn't
provide TR1 tuple.

Usually you don't need to care about which tuple library Google Test
and Google Mock use.  However, if your project already uses TR1 tuple,
you need to tell Google Test and Google Mock to use the same TR1 tuple
282
library the rest of your project uses, or the two tuple
283
284
implementations will clash.  To do that, add

Billy Donahue's avatar
Billy Donahue committed
285
    -DGTEST_USE_OWN_TR1_TUPLE=0
286
287

to the compiler flags while compiling Google Test, Google Mock, and
288
289
290
your tests.  If you want to force Google Test and Google Mock to use
their own tuple library, just add

Billy Donahue's avatar
Billy Donahue committed
291
    -DGTEST_USE_OWN_TR1_TUPLE=1
292
293

to the compiler flags instead.
294
295
296
297
298

If you want to use Boost's TR1 tuple library with Google Mock, please
refer to the Boost website (http://www.boost.org/) for how to obtain
it and set it up.

299
300
301
302
### As a Shared Library (DLL) ###

Google Mock is compact, so most users can build and link it as a static
library for the simplicity.  Google Mock can be used as a DLL, but the
Billy Donahue's avatar
Billy Donahue committed
303
304
305
same DLL must contain Google Test as well.  See
[Google Test's README][gtest_readme]
for instructions on how to set up necessary compiler settings.
306
307

### Tweaking Google Mock ###
308

309
Most of Google Test's control macros apply to Google Mock as well.
Billy Donahue's avatar
Billy Donahue committed
310
Please see [Google Test's README][gtest_readme] for how to tweak them.
311

Billy Donahue's avatar
Billy Donahue committed
312
### Upgrading from an Earlier Version ###
313

314
315
316
317
We strive to keep Google Mock releases backward compatible.
Sometimes, though, we have to make some breaking changes for the
users' long-term benefits.  This section describes what you'll need to
do if you are upgrading from an earlier version of Google Mock.
318

Billy Donahue's avatar
Billy Donahue committed
319
#### Upgrading from 1.1.0 or Earlier ####
shiqian's avatar
shiqian committed
320

321
You may need to explicitly enable or disable Google Test's own TR1
Billy Donahue's avatar
Billy Donahue committed
322
323
tuple library.  See the instructions in section "[Choosing a TR1 Tuple
Library](../googletest/#choosing-a-tr1-tuple-library)".
324

Billy Donahue's avatar
Billy Donahue committed
325
#### Upgrading from 1.4.0 or Earlier ####
326

327
328
329
On platforms where the pthread library is available, Google Test and
Google Mock use it in order to be thread-safe.  For this to work, you
may need to tweak your compiler and/or linker flags.  Please see the
Billy Donahue's avatar
Billy Donahue committed
330
331
"[Multi-threaded Tests](../googletest#multi-threaded-tests
)" section in file Google Test's README for what you may need to do.
332

Billy Donahue's avatar
Billy Donahue committed
333
334
335
336
337
338
If you have custom matchers defined using `MatcherInterface` or
`MakePolymorphicMatcher()`, you'll need to update their definitions to
use the new matcher API (
[monomorphic](http://code.google.com/p/googlemock/wiki/CookBook#Writing_New_Monomorphic_Matchers),
[polymorphic](http://code.google.com/p/googlemock/wiki/CookBook#Writing_New_Polymorphic_Matchers)).
Matchers defined using `MATCHER()` or `MATCHER_P*()` aren't affected.
339

Billy Donahue's avatar
Billy Donahue committed
340
### Developing Google Mock ###
341

342
343
This section discusses how to make your own changes to Google Mock.

Billy Donahue's avatar
Billy Donahue committed
344
#### Testing Google Mock Itself ####
345
346
347
348

To make sure your changes work as intended and don't break existing
functionality, you'll want to compile and run Google Test's own tests.
For that you'll need Autotools.  First, make sure you have followed
Billy Donahue's avatar
Billy Donahue committed
349
the instructions above to configure Google Mock.
350
351
Then, create a build output directory and enter it.  Next,

Billy Donahue's avatar
Billy Donahue committed
352
    ${GMOCK_DIR}/configure  # try --help for more info
353
354
355
356

Once you have successfully configured Google Mock, the build steps are
standard for GNU-style OSS packages.

Billy Donahue's avatar
Billy Donahue committed
357
358
    make        # Standard makefile following GNU conventions
    make check  # Builds and runs all tests - all should pass.
359
360
361
362
363

Note that when building your project against Google Mock, you are building
against Google Test as well.  There is no need to configure Google Test
separately.

Billy Donahue's avatar
Billy Donahue committed
364
#### Contributing a Patch ####
365

Billy Donahue's avatar
Billy Donahue committed
366
367
368
We welcome patches.
Please read the [Developer's Guide](docs/DevGuide.md)
for how you can contribute. In particular, make sure you have signed
369
370
371
the Contributor License Agreement, or we won't be able to accept the
patch.

372
Happy testing!
Billy Donahue's avatar
Billy Donahue committed
373

Billy Donahue's avatar
Billy Donahue committed
374
[gtest_readme]: ../googletest/README.md "googletest"
375
376
[gtest_cmakebuild]:  ../googletest/README.md#using-cmake "Using CMake"
[gtest_incorpcmake]: ../googletest/README.md#incorporating-into-an-existing-cmake-project "Incorporating Into An Existing CMake Project"