1b89a7cc2SEnji Cooper // Copyright 2009, Google Inc.
2b89a7cc2SEnji Cooper // All rights reserved.
3b89a7cc2SEnji Cooper //
4b89a7cc2SEnji Cooper // Redistribution and use in source and binary forms, with or without
5b89a7cc2SEnji Cooper // modification, are permitted provided that the following conditions are
6b89a7cc2SEnji Cooper // met:
7b89a7cc2SEnji Cooper //
8b89a7cc2SEnji Cooper // * Redistributions of source code must retain the above copyright
9b89a7cc2SEnji Cooper // notice, this list of conditions and the following disclaimer.
10b89a7cc2SEnji Cooper // * Redistributions in binary form must reproduce the above
11b89a7cc2SEnji Cooper // copyright notice, this list of conditions and the following disclaimer
12b89a7cc2SEnji Cooper // in the documentation and/or other materials provided with the
13b89a7cc2SEnji Cooper // distribution.
14b89a7cc2SEnji Cooper // * Neither the name of Google Inc. nor the names of its
15b89a7cc2SEnji Cooper // contributors may be used to endorse or promote products derived from
16b89a7cc2SEnji Cooper // this software without specific prior written permission.
17b89a7cc2SEnji Cooper //
18b89a7cc2SEnji Cooper // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19b89a7cc2SEnji Cooper // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20b89a7cc2SEnji Cooper // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21b89a7cc2SEnji Cooper // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22b89a7cc2SEnji Cooper // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23b89a7cc2SEnji Cooper // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24b89a7cc2SEnji Cooper // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25b89a7cc2SEnji Cooper // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26b89a7cc2SEnji Cooper // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27b89a7cc2SEnji Cooper // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28b89a7cc2SEnji Cooper // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29b89a7cc2SEnji Cooper
30b89a7cc2SEnji Cooper // Google Mock - a framework for writing C++ mock classes.
31b89a7cc2SEnji Cooper //
32b89a7cc2SEnji Cooper // This program is for verifying that a leaked mock object can be
33b89a7cc2SEnji Cooper // caught by Google Mock's leak detector.
34b89a7cc2SEnji Cooper
35b89a7cc2SEnji Cooper #include "gmock/gmock.h"
36b89a7cc2SEnji Cooper
37b89a7cc2SEnji Cooper namespace {
38b89a7cc2SEnji Cooper
39b89a7cc2SEnji Cooper using ::testing::Return;
40b89a7cc2SEnji Cooper
41b89a7cc2SEnji Cooper class FooInterface {
42b89a7cc2SEnji Cooper public:
43*28f6c2f2SEnji Cooper virtual ~FooInterface() = default;
44b89a7cc2SEnji Cooper virtual void DoThis() = 0;
45b89a7cc2SEnji Cooper };
46b89a7cc2SEnji Cooper
47b89a7cc2SEnji Cooper class MockFoo : public FooInterface {
48b89a7cc2SEnji Cooper public:
49*28f6c2f2SEnji Cooper MockFoo() = default;
50b89a7cc2SEnji Cooper
51b89a7cc2SEnji Cooper MOCK_METHOD0(DoThis, void());
52b89a7cc2SEnji Cooper
53b89a7cc2SEnji Cooper private:
54*28f6c2f2SEnji Cooper MockFoo(const MockFoo&) = delete;
55*28f6c2f2SEnji Cooper MockFoo& operator=(const MockFoo&) = delete;
56b89a7cc2SEnji Cooper };
57b89a7cc2SEnji Cooper
TEST(LeakTest,LeakedMockWithExpectCallCausesFailureWhenLeakCheckingIsEnabled)58b89a7cc2SEnji Cooper TEST(LeakTest, LeakedMockWithExpectCallCausesFailureWhenLeakCheckingIsEnabled) {
59b89a7cc2SEnji Cooper MockFoo* foo = new MockFoo;
60b89a7cc2SEnji Cooper
61b89a7cc2SEnji Cooper EXPECT_CALL(*foo, DoThis());
62b89a7cc2SEnji Cooper foo->DoThis();
63b89a7cc2SEnji Cooper
64b89a7cc2SEnji Cooper // In order to test the leak detector, we deliberately leak foo.
65b89a7cc2SEnji Cooper
66b89a7cc2SEnji Cooper // Makes sure Google Mock's leak detector can change the exit code
67b89a7cc2SEnji Cooper // to 1 even when the code is already exiting with 0.
68b89a7cc2SEnji Cooper exit(0);
69b89a7cc2SEnji Cooper }
70b89a7cc2SEnji Cooper
TEST(LeakTest,LeakedMockWithOnCallCausesFailureWhenLeakCheckingIsEnabled)71b89a7cc2SEnji Cooper TEST(LeakTest, LeakedMockWithOnCallCausesFailureWhenLeakCheckingIsEnabled) {
72b89a7cc2SEnji Cooper MockFoo* foo = new MockFoo;
73b89a7cc2SEnji Cooper
74b89a7cc2SEnji Cooper ON_CALL(*foo, DoThis()).WillByDefault(Return());
75b89a7cc2SEnji Cooper
76b89a7cc2SEnji Cooper // In order to test the leak detector, we deliberately leak foo.
77b89a7cc2SEnji Cooper
78b89a7cc2SEnji Cooper // Makes sure Google Mock's leak detector can change the exit code
79b89a7cc2SEnji Cooper // to 1 even when the code is already exiting with 0.
80b89a7cc2SEnji Cooper exit(0);
81b89a7cc2SEnji Cooper }
82b89a7cc2SEnji Cooper
TEST(LeakTest,CatchesMultipleLeakedMockObjects)83b89a7cc2SEnji Cooper TEST(LeakTest, CatchesMultipleLeakedMockObjects) {
84b89a7cc2SEnji Cooper MockFoo* foo1 = new MockFoo;
85b89a7cc2SEnji Cooper MockFoo* foo2 = new MockFoo;
86b89a7cc2SEnji Cooper
87b89a7cc2SEnji Cooper ON_CALL(*foo1, DoThis()).WillByDefault(Return());
88b89a7cc2SEnji Cooper EXPECT_CALL(*foo2, DoThis());
89b89a7cc2SEnji Cooper foo2->DoThis();
90b89a7cc2SEnji Cooper
91b89a7cc2SEnji Cooper // In order to test the leak detector, we deliberately leak foo1 and
92b89a7cc2SEnji Cooper // foo2.
93b89a7cc2SEnji Cooper
94b89a7cc2SEnji Cooper // Makes sure Google Mock's leak detector can change the exit code
95b89a7cc2SEnji Cooper // to 1 even when the code is already exiting with 0.
96b89a7cc2SEnji Cooper exit(0);
97b89a7cc2SEnji Cooper }
98b89a7cc2SEnji Cooper
99b89a7cc2SEnji Cooper } // namespace
100