README.md 12.2 KB
Newer Older
Billy Donahue's avatar
Billy Donahue committed
1
## Google C++ Mocking Framework ##
2

Billy Donahue's avatar
Billy Donahue committed
3
<http://github.com/google/googlemock/>
4

Billy Donahue's avatar
Billy Donahue committed
5
### Overview ###
6
7
8
9
10
11

Google's framework for writing and using C++ mock classes on a variety
of platforms (Linux, Mac OS X, Windows, Windows CE, Symbian, etc).
Inspired by jMock, EasyMock, and Hamcrest, and designed with C++'s
specifics in mind, it can help you derive better designs of your
system and write better tests.
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

Google Mock:

- 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, and
- is easy to learn and use.

29
30
31
32
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!
33

Billy Donahue's avatar
Billy Donahue committed
34
35
Please note that code under scripts/generator/ is from the [cppclean
project](http://code.google.com/p/cppclean/) and under the Apache
shiqian's avatar
shiqian committed
36
License, which is different from Google Mock's license.
37

Billy Donahue's avatar
Billy Donahue committed
38
### Requirements for End Users ###
39

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

44
You can also easily configure Google Mock to work with another testing
Billy Donahue's avatar
Billy Donahue committed
45
46
47
48
49
framework, although it will still need Google Test.  Please read

["Using_Google_Mock_with_Any_Testing_Framework"](
    docs/ForDummies.md#Using_Google_Mock_with_Any_Testing_Framework)
for instructions.
50

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

Billy Donahue's avatar
Billy Donahue committed
54
#### Linux Requirements ####
55

56
57
These are the base requirements to build and use Google Mock from a source
package (as described below):
58

59
60
61
  * GNU-compatible Make or "gmake"
  * POSIX-standard shell
  * POSIX(-2) Regular Expressions (regex.h)
62
  * C++98-standard-compliant compiler (e.g. GCC 3.4 or newer)
63

Billy Donahue's avatar
Billy Donahue committed
64
#### Windows Requirements ####
65

66
67
  * Microsoft Visual C++ 8.0 SP1 or newer

Billy Donahue's avatar
Billy Donahue committed
68
#### Mac OS X Requirements ####
69

70
71
72
  * Mac OS X 10.4 Tiger or newer
  * Developer Tools Installed

Billy Donahue's avatar
Billy Donahue committed
73
### Requirements for Contributors ###
74
75
76
77
78
79
80
81
82
83
84

We welcome patches.  If you plan to contribute a patch, you need to
build Google Mock and its own tests from an SVN checkout (described
below), which has further requirements:

  * 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
85
### Getting the Source ###
86

87
There are two primary ways of getting Google Mock's source code: you
Billy Donahue's avatar
Billy Donahue committed
88
89
90
can download a [stable source release](releases),
or directly check out the source from our Git repository.
The Git checkout requires a few extra steps and some extra software
91
92
packages on your system, but lets you track development and make
patches much more easily, so we highly encourage it.
93

Billy Donahue's avatar
Billy Donahue committed
94
### Git Checkout ###
95

Billy Donahue's avatar
Billy Donahue committed
96
To check out the master branch of Google Mock, run the following git command:
97

Billy Donahue's avatar
Billy Donahue committed
98
    git clone https://github.com/google/googlemock.git
99

Billy Donahue's avatar
Billy Donahue committed
100
If you are using a \*nix system and plan to use the GNU Autotools build
101
102
103
104
105
106
107
system to build Google Mock (described below), you'll need to
configure it now.  Otherwise you are done with getting the source
files.

To prepare the Autotools build system, enter the target directory of
the checkout command you used ('gmock-svn') and proceed with the
following command:
shiqian's avatar
shiqian committed
108

Billy Donahue's avatar
Billy Donahue committed
109
    autoreconf -fvi
shiqian's avatar
shiqian committed
110

111
112
113
114
Once you have completed this step, you are ready to build the library.
Note that you should only need to complete this step once.  The
subsequent 'make' invocations will automatically re-generate the bits
of the build system that need to be changed.
115

116
117
118
119
If your system uses older versions of the autotools, the above command
will fail.  You may need to explicitly specify a version to use.  For
instance, if you have both GNU Automake 1.4 and 1.9 installed and
'automake' would invoke the 1.4, use instead:
120

Billy Donahue's avatar
Billy Donahue committed
121
    AUTOMAKE=automake-1.9 ACLOCAL=aclocal-1.9 autoreconf -fvi
122

shiqian's avatar
shiqian committed
123
Make sure you're using the same version of automake and aclocal.
124

Billy Donahue's avatar
Billy Donahue committed
125
### Preparing to Build ###
126

127
128
129
130
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.
131

Billy Donahue's avatar
Billy Donahue committed
132
### Build ###
133

134
135
136
This section shows how you can integrate Google Mock into your
existing build system.

Billy Donahue's avatar
Billy Donahue committed
137
138
Suppose you put Google Mock in directory ${GMOCK\_DIR} and Google Test
in ${GTEST\_DIR} (the latter is ${GMOCK\_DIR}/gtest by default).  To
139
140
141
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
142
    ${GTEST_DIR}/src/gtest-all.cc and ${GMOCK_DIR}/src/gmock-all.cc
143
144
145

with

Billy Donahue's avatar
Billy Donahue committed
146
    ${GTEST_DIR}/include and ${GMOCK_DIR}/include
147

148
149
in the system header search path, and

Billy Donahue's avatar
Billy Donahue committed
150
    ${GTEST_DIR} and ${GMOCK_DIR}
151
152

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

Billy Donahue's avatar
Billy Donahue committed
155
156
157
158
159
160
161
    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
162

163
164
(We need -pthread as Google Test and Google Mock use threads.)

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

Billy Donahue's avatar
Billy Donahue committed
169
170
    g++ -isystem ${GTEST_DIR}/include -isystem ${GMOCK_DIR}/include \
        -pthread path/to/your_test.cc libgmock.a -o your_test
171
172
173
174
175
176
177
178
179
180
181

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
182
183
184
    cd ${GMOCK_DIR}/make
    make
    ./gmock_test
185

Billy Donahue's avatar
Billy Donahue committed
186
If you see errors, try to tweak the contents of [make/Makefile](make/Makefile) to make them go away.
187
188
189

### Windows ###

190
191
192
The msvc/2005 directory contains VC++ 2005 projects and the msvc/2010
directory contains VC++ 2010 projects for building Google Mock and
selected tests.
193

194
195
196
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
197
have to configure it to use the `gmock_config` propety sheet.  For that:
198
199
200

 * 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
201
 * Navigate to `gmock_config.vsprops` or `gmock_config.props` and select it.
202
203
204
 * In Project Properties | Configuration Properties | General | Additional
   Include Directories, type <path to Google Mock>/include.

Billy Donahue's avatar
Billy Donahue committed
205
### Tweaking Google Mock ###
206
207
208
209
210

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
211
these macros are named like `GTEST_XYZ` and you define them to either 1
212
213
214
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
215
216
see file [${GTEST\_DIR}/include/gtest/internal/gtest-port.h](
../googletest/include/gtest/internal/gtest-port.h).
217
218

### Choosing a TR1 Tuple Library ###
219

220
221
222
223
224
225
226
227
228
229
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
230
library the rest of your project uses, or the two tuple
231
232
implementations will clash.  To do that, add

Billy Donahue's avatar
Billy Donahue committed
233
    -DGTEST_USE_OWN_TR1_TUPLE=0
234
235

to the compiler flags while compiling Google Test, Google Mock, and
236
237
238
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
239
    -DGTEST_USE_OWN_TR1_TUPLE=1
240
241

to the compiler flags instead.
242
243
244
245
246

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.

247
248
249
250
### 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
251
252
253
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.
254
255

### Tweaking Google Mock ###
256

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

Billy Donahue's avatar
Billy Donahue committed
260
### Upgrading from an Earlier Version ###
261

262
263
264
265
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.
266

Billy Donahue's avatar
Billy Donahue committed
267
#### Upgrading from 1.1.0 or Earlier ####
shiqian's avatar
shiqian committed
268

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

Billy Donahue's avatar
Billy Donahue committed
273
#### Upgrading from 1.4.0 or Earlier ####
274

275
276
277
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
278
279
"[Multi-threaded Tests](../googletest#multi-threaded-tests
)" section in file Google Test's README for what you may need to do.
280

Billy Donahue's avatar
Billy Donahue committed
281
282
283
284
285
286
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.
287
288


Billy Donahue's avatar
Billy Donahue committed
289
### Developing Google Mock ###
290

291
292
This section discusses how to make your own changes to Google Mock.

Billy Donahue's avatar
Billy Donahue committed
293
#### Testing Google Mock Itself ####
294
295
296
297

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
298
the instructions above to configure Google Mock.
299
300
Then, create a build output directory and enter it.  Next,

Billy Donahue's avatar
Billy Donahue committed
301
    ${GMOCK_DIR}/configure  # try --help for more info
302
303
304
305

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

Billy Donahue's avatar
Billy Donahue committed
306
307
    make        # Standard makefile following GNU conventions
    make check  # Builds and runs all tests - all should pass.
308
309
310
311
312

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
313
#### Contributing a Patch ####
314

Billy Donahue's avatar
Billy Donahue committed
315
316
317
We welcome patches.
Please read the [Developer's Guide](docs/DevGuide.md)
for how you can contribute. In particular, make sure you have signed
318
319
320
the Contributor License Agreement, or we won't be able to accept the
patch.

321
Happy testing!
Billy Donahue's avatar
Billy Donahue committed
322

Billy Donahue's avatar
Billy Donahue committed
323
[gtest_readme]: ../googletest/README.md "googletest"