1b89a7cc2SEnji Cooper // Copyright 2013, 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 // Tests Google Mock's functionality that depends on exceptions.
31b89a7cc2SEnji Cooper
32*28f6c2f2SEnji Cooper #include <exception>
33*28f6c2f2SEnji Cooper
34b89a7cc2SEnji Cooper #include "gmock/gmock.h"
35b89a7cc2SEnji Cooper #include "gtest/gtest.h"
36b89a7cc2SEnji Cooper
37b89a7cc2SEnji Cooper #if GTEST_HAS_EXCEPTIONS
38b89a7cc2SEnji Cooper namespace {
39b89a7cc2SEnji Cooper
40b89a7cc2SEnji Cooper using testing::HasSubstr;
41b89a7cc2SEnji Cooper
42b89a7cc2SEnji Cooper using testing::internal::GoogleTestFailureException;
43b89a7cc2SEnji Cooper
44b89a7cc2SEnji Cooper // A type that cannot be default constructed.
45b89a7cc2SEnji Cooper class NonDefaultConstructible {
46b89a7cc2SEnji Cooper public:
NonDefaultConstructible(int)47b89a7cc2SEnji Cooper explicit NonDefaultConstructible(int /* dummy */) {}
48b89a7cc2SEnji Cooper };
49b89a7cc2SEnji Cooper
50b89a7cc2SEnji Cooper class MockFoo {
51b89a7cc2SEnji Cooper public:
52b89a7cc2SEnji Cooper // A mock method that returns a user-defined type. Google Mock
53b89a7cc2SEnji Cooper // doesn't know what the default value for this type is.
54b89a7cc2SEnji Cooper MOCK_METHOD0(GetNonDefaultConstructible, NonDefaultConstructible());
55b89a7cc2SEnji Cooper };
56b89a7cc2SEnji Cooper
TEST(DefaultValueTest,ThrowsRuntimeErrorWhenNoDefaultValue)57b89a7cc2SEnji Cooper TEST(DefaultValueTest, ThrowsRuntimeErrorWhenNoDefaultValue) {
58b89a7cc2SEnji Cooper MockFoo mock;
59b89a7cc2SEnji Cooper try {
60b89a7cc2SEnji Cooper // No expectation is set on this method, so Google Mock must
61b89a7cc2SEnji Cooper // return the default value. However, since Google Mock knows
62b89a7cc2SEnji Cooper // nothing about the return type, it doesn't know what to return,
63b89a7cc2SEnji Cooper // and has to throw (when exceptions are enabled) or abort
64b89a7cc2SEnji Cooper // (otherwise).
65b89a7cc2SEnji Cooper mock.GetNonDefaultConstructible();
66b89a7cc2SEnji Cooper FAIL() << "GetNonDefaultConstructible()'s return type has no default "
67b89a7cc2SEnji Cooper << "value, so Google Mock should have thrown.";
68b89a7cc2SEnji Cooper } catch (const GoogleTestFailureException& /* unused */) {
69b89a7cc2SEnji Cooper FAIL() << "Google Test does not try to catch an exception of type "
70b89a7cc2SEnji Cooper << "GoogleTestFailureException, which is used for reporting "
71b89a7cc2SEnji Cooper << "a failure to other testing frameworks. Google Mock should "
72b89a7cc2SEnji Cooper << "not throw a GoogleTestFailureException as it will kill the "
73b89a7cc2SEnji Cooper << "entire test program instead of just the current TEST.";
74b89a7cc2SEnji Cooper } catch (const std::exception& ex) {
75b89a7cc2SEnji Cooper EXPECT_THAT(ex.what(), HasSubstr("has no default value"));
76b89a7cc2SEnji Cooper }
77b89a7cc2SEnji Cooper }
78b89a7cc2SEnji Cooper
79b89a7cc2SEnji Cooper } // unnamed namespace
80b89a7cc2SEnji Cooper #endif
81