gmock-more-actions.h (googletest-release-1.10.0) | : | gmock-more-actions.h (googletest-release-1.11.0) | ||
---|---|---|---|---|
skipping to change at line 32 | skipping to change at line 32 | |||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |||
// Google Mock - a framework for writing C++ mock classes. | // Google Mock - a framework for writing C++ mock classes. | |||
// | // | |||
// This file implements some actions that depend on gmock-generated-actions.h. | // This file implements some commonly used variadic actions. | |||
// GOOGLETEST_CM0002 DO NOT DELETE | // GOOGLETEST_CM0002 DO NOT DELETE | |||
#ifndef GMOCK_INCLUDE_GMOCK_GMOCK_MORE_ACTIONS_H_ | #ifndef GOOGLEMOCK_INCLUDE_GMOCK_GMOCK_MORE_ACTIONS_H_ | |||
#define GMOCK_INCLUDE_GMOCK_GMOCK_MORE_ACTIONS_H_ | #define GOOGLEMOCK_INCLUDE_GMOCK_GMOCK_MORE_ACTIONS_H_ | |||
#include <algorithm> | #include <memory> | |||
#include <type_traits> | #include <utility> | |||
#include "gmock/gmock-generated-actions.h" | #include "gmock/gmock-actions.h" | |||
#include "gmock/internal/gmock-port.h" | ||||
namespace testing { | // Include any custom callback actions added by the local installation. | |||
namespace internal { | #include "gmock/internal/custom/gmock-generated-actions.h" | |||
// An internal replacement for std::copy which mimics its behavior. This is | // Sometimes you want to give an action explicit template parameters | |||
// necessary because Visual Studio deprecates ::std::copy, issuing warning 4996. | // that cannot be inferred from its value parameters. ACTION() and | |||
// However Visual Studio 2010 and later do not honor #pragmas which disable that | // ACTION_P*() don't support that. ACTION_TEMPLATE() remedies that | |||
// warning. | // and can be viewed as an extension to ACTION() and ACTION_P*(). | |||
template<typename InputIterator, typename OutputIterator> | // | |||
inline OutputIterator CopyElements(InputIterator first, | // The syntax: | |||
InputIterator last, | // | |||
OutputIterator output) { | // ACTION_TEMPLATE(ActionName, | |||
for (; first != last; ++first, ++output) { | // HAS_m_TEMPLATE_PARAMS(kind1, name1, ..., kind_m, name_m), | |||
*output = *first; | // AND_n_VALUE_PARAMS(p1, ..., p_n)) { statements; } | |||
} | // | |||
return output; | // defines an action template that takes m explicit template | |||
} | // parameters and n value parameters. name_i is the name of the i-th | |||
// template parameter, and kind_i specifies whether it's a typename, | ||||
} // namespace internal | // an integral constant, or a template. p_i is the name of the i-th | |||
// value parameter. | ||||
// | ||||
// Example: | ||||
// | ||||
// // DuplicateArg<k, T>(output) converts the k-th argument of the mock | ||||
// // function to type T and copies it to *output. | ||||
// ACTION_TEMPLATE(DuplicateArg, | ||||
// HAS_2_TEMPLATE_PARAMS(int, k, typename, T), | ||||
// AND_1_VALUE_PARAMS(output)) { | ||||
// *output = T(::std::get<k>(args)); | ||||
// } | ||||
// ... | ||||
// int n; | ||||
// EXPECT_CALL(mock, Foo(_, _)) | ||||
// .WillOnce(DuplicateArg<1, unsigned char>(&n)); | ||||
// | ||||
// To create an instance of an action template, write: | ||||
// | ||||
// ActionName<t1, ..., t_m>(v1, ..., v_n) | ||||
// | ||||
// where the ts are the template arguments and the vs are the value | ||||
// arguments. The value argument types are inferred by the compiler. | ||||
// If you want to explicitly specify the value argument types, you can | ||||
// provide additional template arguments: | ||||
// | ||||
// ActionName<t1, ..., t_m, u1, ..., u_k>(v1, ..., v_n) | ||||
// | ||||
// where u_i is the desired type of v_i. | ||||
// | ||||
// ACTION_TEMPLATE and ACTION/ACTION_P* can be overloaded on the | ||||
// number of value parameters, but not on the number of template | ||||
// parameters. Without the restriction, the meaning of the following | ||||
// is unclear: | ||||
// | ||||
// OverloadedAction<int, bool>(x); | ||||
// | ||||
// Are we using a single-template-parameter action where 'bool' refers | ||||
// to the type of x, or are we using a two-template-parameter action | ||||
// where the compiler is asked to infer the type of x? | ||||
// | ||||
// Implementation notes: | ||||
// | ||||
// GMOCK_INTERNAL_*_HAS_m_TEMPLATE_PARAMS and | ||||
// GMOCK_INTERNAL_*_AND_n_VALUE_PARAMS are internal macros for | ||||
// implementing ACTION_TEMPLATE. The main trick we use is to create | ||||
// new macro invocations when expanding a macro. For example, we have | ||||
// | ||||
// #define ACTION_TEMPLATE(name, template_params, value_params) | ||||
// ... GMOCK_INTERNAL_DECL_##template_params ... | ||||
// | ||||
// which causes ACTION_TEMPLATE(..., HAS_1_TEMPLATE_PARAMS(typename, T), ...) | ||||
// to expand to | ||||
// | ||||
// ... GMOCK_INTERNAL_DECL_HAS_1_TEMPLATE_PARAMS(typename, T) ... | ||||
// | ||||
// Since GMOCK_INTERNAL_DECL_HAS_1_TEMPLATE_PARAMS is a macro, the | ||||
// preprocessor will continue to expand it to | ||||
// | ||||
// ... typename T ... | ||||
// | ||||
// This technique conforms to the C++ standard and is portable. It | ||||
// allows us to implement action templates using O(N) code, where N is | ||||
// the maximum number of template/value parameters supported. Without | ||||
// using it, we'd have to devote O(N^2) amount of code to implement all | ||||
// combinations of m and n. | ||||
// Declares the template parameters. | ||||
#define GMOCK_INTERNAL_DECL_HAS_1_TEMPLATE_PARAMS(kind0, name0) kind0 name0 | ||||
#define GMOCK_INTERNAL_DECL_HAS_2_TEMPLATE_PARAMS(kind0, name0, kind1, \ | ||||
name1) kind0 name0, kind1 name1 | ||||
#define GMOCK_INTERNAL_DECL_HAS_3_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ | ||||
kind2, name2) kind0 name0, kind1 name1, kind2 name2 | ||||
#define GMOCK_INTERNAL_DECL_HAS_4_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ | ||||
kind2, name2, kind3, name3) kind0 name0, kind1 name1, kind2 name2, \ | ||||
kind3 name3 | ||||
#define GMOCK_INTERNAL_DECL_HAS_5_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ | ||||
kind2, name2, kind3, name3, kind4, name4) kind0 name0, kind1 name1, \ | ||||
kind2 name2, kind3 name3, kind4 name4 | ||||
#define GMOCK_INTERNAL_DECL_HAS_6_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ | ||||
kind2, name2, kind3, name3, kind4, name4, kind5, name5) kind0 name0, \ | ||||
kind1 name1, kind2 name2, kind3 name3, kind4 name4, kind5 name5 | ||||
#define GMOCK_INTERNAL_DECL_HAS_7_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ | ||||
kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, \ | ||||
name6) kind0 name0, kind1 name1, kind2 name2, kind3 name3, kind4 name4, \ | ||||
kind5 name5, kind6 name6 | ||||
#define GMOCK_INTERNAL_DECL_HAS_8_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ | ||||
kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, name6, \ | ||||
kind7, name7) kind0 name0, kind1 name1, kind2 name2, kind3 name3, \ | ||||
kind4 name4, kind5 name5, kind6 name6, kind7 name7 | ||||
#define GMOCK_INTERNAL_DECL_HAS_9_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ | ||||
kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, name6, \ | ||||
kind7, name7, kind8, name8) kind0 name0, kind1 name1, kind2 name2, \ | ||||
kind3 name3, kind4 name4, kind5 name5, kind6 name6, kind7 name7, \ | ||||
kind8 name8 | ||||
#define GMOCK_INTERNAL_DECL_HAS_10_TEMPLATE_PARAMS(kind0, name0, kind1, \ | ||||
name1, kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, \ | ||||
name6, kind7, name7, kind8, name8, kind9, name9) kind0 name0, \ | ||||
kind1 name1, kind2 name2, kind3 name3, kind4 name4, kind5 name5, \ | ||||
kind6 name6, kind7 name7, kind8 name8, kind9 name9 | ||||
// Lists the template parameters. | ||||
#define GMOCK_INTERNAL_LIST_HAS_1_TEMPLATE_PARAMS(kind0, name0) name0 | ||||
#define GMOCK_INTERNAL_LIST_HAS_2_TEMPLATE_PARAMS(kind0, name0, kind1, \ | ||||
name1) name0, name1 | ||||
#define GMOCK_INTERNAL_LIST_HAS_3_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ | ||||
kind2, name2) name0, name1, name2 | ||||
#define GMOCK_INTERNAL_LIST_HAS_4_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ | ||||
kind2, name2, kind3, name3) name0, name1, name2, name3 | ||||
#define GMOCK_INTERNAL_LIST_HAS_5_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ | ||||
kind2, name2, kind3, name3, kind4, name4) name0, name1, name2, name3, \ | ||||
name4 | ||||
#define GMOCK_INTERNAL_LIST_HAS_6_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ | ||||
kind2, name2, kind3, name3, kind4, name4, kind5, name5) name0, name1, \ | ||||
name2, name3, name4, name5 | ||||
#define GMOCK_INTERNAL_LIST_HAS_7_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ | ||||
kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, \ | ||||
name6) name0, name1, name2, name3, name4, name5, name6 | ||||
#define GMOCK_INTERNAL_LIST_HAS_8_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ | ||||
kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, name6, \ | ||||
kind7, name7) name0, name1, name2, name3, name4, name5, name6, name7 | ||||
#define GMOCK_INTERNAL_LIST_HAS_9_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ | ||||
kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, name6, \ | ||||
kind7, name7, kind8, name8) name0, name1, name2, name3, name4, name5, \ | ||||
name6, name7, name8 | ||||
#define GMOCK_INTERNAL_LIST_HAS_10_TEMPLATE_PARAMS(kind0, name0, kind1, \ | ||||
name1, kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, \ | ||||
name6, kind7, name7, kind8, name8, kind9, name9) name0, name1, name2, \ | ||||
name3, name4, name5, name6, name7, name8, name9 | ||||
// Declares the types of value parameters. | ||||
#define GMOCK_INTERNAL_DECL_TYPE_AND_0_VALUE_PARAMS() | ||||
#define GMOCK_INTERNAL_DECL_TYPE_AND_1_VALUE_PARAMS(p0) , typename p0##_type | ||||
#define GMOCK_INTERNAL_DECL_TYPE_AND_2_VALUE_PARAMS(p0, p1) , \ | ||||
typename p0##_type, typename p1##_type | ||||
#define GMOCK_INTERNAL_DECL_TYPE_AND_3_VALUE_PARAMS(p0, p1, p2) , \ | ||||
typename p0##_type, typename p1##_type, typename p2##_type | ||||
#define GMOCK_INTERNAL_DECL_TYPE_AND_4_VALUE_PARAMS(p0, p1, p2, p3) , \ | ||||
typename p0##_type, typename p1##_type, typename p2##_type, \ | ||||
typename p3##_type | ||||
#define GMOCK_INTERNAL_DECL_TYPE_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) , \ | ||||
typename p0##_type, typename p1##_type, typename p2##_type, \ | ||||
typename p3##_type, typename p4##_type | ||||
#define GMOCK_INTERNAL_DECL_TYPE_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5) , \ | ||||
typename p0##_type, typename p1##_type, typename p2##_type, \ | ||||
typename p3##_type, typename p4##_type, typename p5##_type | ||||
#define GMOCK_INTERNAL_DECL_TYPE_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ | ||||
p6) , typename p0##_type, typename p1##_type, typename p2##_type, \ | ||||
typename p3##_type, typename p4##_type, typename p5##_type, \ | ||||
typename p6##_type | ||||
#define GMOCK_INTERNAL_DECL_TYPE_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ | ||||
p6, p7) , typename p0##_type, typename p1##_type, typename p2##_type, \ | ||||
typename p3##_type, typename p4##_type, typename p5##_type, \ | ||||
typename p6##_type, typename p7##_type | ||||
#define GMOCK_INTERNAL_DECL_TYPE_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ | ||||
p6, p7, p8) , typename p0##_type, typename p1##_type, typename p2##_type, \ | ||||
typename p3##_type, typename p4##_type, typename p5##_type, \ | ||||
typename p6##_type, typename p7##_type, typename p8##_type | ||||
#define GMOCK_INTERNAL_DECL_TYPE_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ | ||||
p6, p7, p8, p9) , typename p0##_type, typename p1##_type, \ | ||||
typename p2##_type, typename p3##_type, typename p4##_type, \ | ||||
typename p5##_type, typename p6##_type, typename p7##_type, \ | ||||
typename p8##_type, typename p9##_type | ||||
// Initializes the value parameters. | ||||
#define GMOCK_INTERNAL_INIT_AND_0_VALUE_PARAMS()\ | ||||
() | ||||
#define GMOCK_INTERNAL_INIT_AND_1_VALUE_PARAMS(p0)\ | ||||
(p0##_type gmock_p0) : p0(::std::move(gmock_p0)) | ||||
#define GMOCK_INTERNAL_INIT_AND_2_VALUE_PARAMS(p0, p1)\ | ||||
(p0##_type gmock_p0, p1##_type gmock_p1) : p0(::std::move(gmock_p0)), \ | ||||
p1(::std::move(gmock_p1)) | ||||
#define GMOCK_INTERNAL_INIT_AND_3_VALUE_PARAMS(p0, p1, p2)\ | ||||
(p0##_type gmock_p0, p1##_type gmock_p1, \ | ||||
p2##_type gmock_p2) : p0(::std::move(gmock_p0)), \ | ||||
p1(::std::move(gmock_p1)), p2(::std::move(gmock_p2)) | ||||
#define GMOCK_INTERNAL_INIT_AND_4_VALUE_PARAMS(p0, p1, p2, p3)\ | ||||
(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \ | ||||
p3##_type gmock_p3) : p0(::std::move(gmock_p0)), \ | ||||
p1(::std::move(gmock_p1)), p2(::std::move(gmock_p2)), \ | ||||
p3(::std::move(gmock_p3)) | ||||
#define GMOCK_INTERNAL_INIT_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4)\ | ||||
(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \ | ||||
p3##_type gmock_p3, p4##_type gmock_p4) : p0(::std::move(gmock_p0)), \ | ||||
p1(::std::move(gmock_p1)), p2(::std::move(gmock_p2)), \ | ||||
p3(::std::move(gmock_p3)), p4(::std::move(gmock_p4)) | ||||
#define GMOCK_INTERNAL_INIT_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5)\ | ||||
(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \ | ||||
p3##_type gmock_p3, p4##_type gmock_p4, \ | ||||
p5##_type gmock_p5) : p0(::std::move(gmock_p0)), \ | ||||
p1(::std::move(gmock_p1)), p2(::std::move(gmock_p2)), \ | ||||
p3(::std::move(gmock_p3)), p4(::std::move(gmock_p4)), \ | ||||
p5(::std::move(gmock_p5)) | ||||
#define GMOCK_INTERNAL_INIT_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6)\ | ||||
(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \ | ||||
p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \ | ||||
p6##_type gmock_p6) : p0(::std::move(gmock_p0)), \ | ||||
p1(::std::move(gmock_p1)), p2(::std::move(gmock_p2)), \ | ||||
p3(::std::move(gmock_p3)), p4(::std::move(gmock_p4)), \ | ||||
p5(::std::move(gmock_p5)), p6(::std::move(gmock_p6)) | ||||
#define GMOCK_INTERNAL_INIT_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7)\ | ||||
(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \ | ||||
p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \ | ||||
p6##_type gmock_p6, p7##_type gmock_p7) : p0(::std::move(gmock_p0)), \ | ||||
p1(::std::move(gmock_p1)), p2(::std::move(gmock_p2)), \ | ||||
p3(::std::move(gmock_p3)), p4(::std::move(gmock_p4)), \ | ||||
p5(::std::move(gmock_p5)), p6(::std::move(gmock_p6)), \ | ||||
p7(::std::move(gmock_p7)) | ||||
#define GMOCK_INTERNAL_INIT_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ | ||||
p7, p8)\ | ||||
(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \ | ||||
p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \ | ||||
p6##_type gmock_p6, p7##_type gmock_p7, \ | ||||
p8##_type gmock_p8) : p0(::std::move(gmock_p0)), \ | ||||
p1(::std::move(gmock_p1)), p2(::std::move(gmock_p2)), \ | ||||
p3(::std::move(gmock_p3)), p4(::std::move(gmock_p4)), \ | ||||
p5(::std::move(gmock_p5)), p6(::std::move(gmock_p6)), \ | ||||
p7(::std::move(gmock_p7)), p8(::std::move(gmock_p8)) | ||||
#define GMOCK_INTERNAL_INIT_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ | ||||
p7, p8, p9)\ | ||||
(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \ | ||||
p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \ | ||||
p6##_type gmock_p6, p7##_type gmock_p7, p8##_type gmock_p8, \ | ||||
p9##_type gmock_p9) : p0(::std::move(gmock_p0)), \ | ||||
p1(::std::move(gmock_p1)), p2(::std::move(gmock_p2)), \ | ||||
p3(::std::move(gmock_p3)), p4(::std::move(gmock_p4)), \ | ||||
p5(::std::move(gmock_p5)), p6(::std::move(gmock_p6)), \ | ||||
p7(::std::move(gmock_p7)), p8(::std::move(gmock_p8)), \ | ||||
p9(::std::move(gmock_p9)) | ||||
// Defines the copy constructor | ||||
#define GMOCK_INTERNAL_DEFN_COPY_AND_0_VALUE_PARAMS() \ | ||||
{} // Avoid https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82134 | ||||
#define GMOCK_INTERNAL_DEFN_COPY_AND_1_VALUE_PARAMS(...) = default; | ||||
#define GMOCK_INTERNAL_DEFN_COPY_AND_2_VALUE_PARAMS(...) = default; | ||||
#define GMOCK_INTERNAL_DEFN_COPY_AND_3_VALUE_PARAMS(...) = default; | ||||
#define GMOCK_INTERNAL_DEFN_COPY_AND_4_VALUE_PARAMS(...) = default; | ||||
#define GMOCK_INTERNAL_DEFN_COPY_AND_5_VALUE_PARAMS(...) = default; | ||||
#define GMOCK_INTERNAL_DEFN_COPY_AND_6_VALUE_PARAMS(...) = default; | ||||
#define GMOCK_INTERNAL_DEFN_COPY_AND_7_VALUE_PARAMS(...) = default; | ||||
#define GMOCK_INTERNAL_DEFN_COPY_AND_8_VALUE_PARAMS(...) = default; | ||||
#define GMOCK_INTERNAL_DEFN_COPY_AND_9_VALUE_PARAMS(...) = default; | ||||
#define GMOCK_INTERNAL_DEFN_COPY_AND_10_VALUE_PARAMS(...) = default; | ||||
// Declares the fields for storing the value parameters. | ||||
#define GMOCK_INTERNAL_DEFN_AND_0_VALUE_PARAMS() | ||||
#define GMOCK_INTERNAL_DEFN_AND_1_VALUE_PARAMS(p0) p0##_type p0; | ||||
#define GMOCK_INTERNAL_DEFN_AND_2_VALUE_PARAMS(p0, p1) p0##_type p0; \ | ||||
p1##_type p1; | ||||
#define GMOCK_INTERNAL_DEFN_AND_3_VALUE_PARAMS(p0, p1, p2) p0##_type p0; \ | ||||
p1##_type p1; p2##_type p2; | ||||
#define GMOCK_INTERNAL_DEFN_AND_4_VALUE_PARAMS(p0, p1, p2, p3) p0##_type p0; \ | ||||
p1##_type p1; p2##_type p2; p3##_type p3; | ||||
#define GMOCK_INTERNAL_DEFN_AND_5_VALUE_PARAMS(p0, p1, p2, p3, \ | ||||
p4) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; p4##_type p4; | ||||
#define GMOCK_INTERNAL_DEFN_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, \ | ||||
p5) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; p4##_type p4; \ | ||||
p5##_type p5; | ||||
#define GMOCK_INTERNAL_DEFN_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ | ||||
p6) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; p4##_type p4; \ | ||||
p5##_type p5; p6##_type p6; | ||||
#define GMOCK_INTERNAL_DEFN_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ | ||||
p7) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; p4##_type p4; \ | ||||
p5##_type p5; p6##_type p6; p7##_type p7; | ||||
#define GMOCK_INTERNAL_DEFN_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ | ||||
p7, p8) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; \ | ||||
p4##_type p4; p5##_type p5; p6##_type p6; p7##_type p7; p8##_type p8; | ||||
#define GMOCK_INTERNAL_DEFN_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ | ||||
p7, p8, p9) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; \ | ||||
p4##_type p4; p5##_type p5; p6##_type p6; p7##_type p7; p8##_type p8; \ | ||||
p9##_type p9; | ||||
// Lists the value parameters. | ||||
#define GMOCK_INTERNAL_LIST_AND_0_VALUE_PARAMS() | ||||
#define GMOCK_INTERNAL_LIST_AND_1_VALUE_PARAMS(p0) p0 | ||||
#define GMOCK_INTERNAL_LIST_AND_2_VALUE_PARAMS(p0, p1) p0, p1 | ||||
#define GMOCK_INTERNAL_LIST_AND_3_VALUE_PARAMS(p0, p1, p2) p0, p1, p2 | ||||
#define GMOCK_INTERNAL_LIST_AND_4_VALUE_PARAMS(p0, p1, p2, p3) p0, p1, p2, p3 | ||||
#define GMOCK_INTERNAL_LIST_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) p0, p1, \ | ||||
p2, p3, p4 | ||||
#define GMOCK_INTERNAL_LIST_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5) p0, \ | ||||
p1, p2, p3, p4, p5 | ||||
#define GMOCK_INTERNAL_LIST_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ | ||||
p6) p0, p1, p2, p3, p4, p5, p6 | ||||
#define GMOCK_INTERNAL_LIST_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ | ||||
p7) p0, p1, p2, p3, p4, p5, p6, p7 | ||||
#define GMOCK_INTERNAL_LIST_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ | ||||
p7, p8) p0, p1, p2, p3, p4, p5, p6, p7, p8 | ||||
#define GMOCK_INTERNAL_LIST_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ | ||||
p7, p8, p9) p0, p1, p2, p3, p4, p5, p6, p7, p8, p9 | ||||
// Lists the value parameter types. | ||||
#define GMOCK_INTERNAL_LIST_TYPE_AND_0_VALUE_PARAMS() | ||||
#define GMOCK_INTERNAL_LIST_TYPE_AND_1_VALUE_PARAMS(p0) , p0##_type | ||||
#define GMOCK_INTERNAL_LIST_TYPE_AND_2_VALUE_PARAMS(p0, p1) , p0##_type, \ | ||||
p1##_type | ||||
#define GMOCK_INTERNAL_LIST_TYPE_AND_3_VALUE_PARAMS(p0, p1, p2) , p0##_type, \ | ||||
p1##_type, p2##_type | ||||
#define GMOCK_INTERNAL_LIST_TYPE_AND_4_VALUE_PARAMS(p0, p1, p2, p3) , \ | ||||
p0##_type, p1##_type, p2##_type, p3##_type | ||||
#define GMOCK_INTERNAL_LIST_TYPE_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) , \ | ||||
p0##_type, p1##_type, p2##_type, p3##_type, p4##_type | ||||
#define GMOCK_INTERNAL_LIST_TYPE_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5) , \ | ||||
p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, p5##_type | ||||
#define GMOCK_INTERNAL_LIST_TYPE_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ | ||||
p6) , p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, p5##_type, \ | ||||
p6##_type | ||||
#define GMOCK_INTERNAL_LIST_TYPE_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ | ||||
p6, p7) , p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \ | ||||
p5##_type, p6##_type, p7##_type | ||||
#define GMOCK_INTERNAL_LIST_TYPE_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ | ||||
p6, p7, p8) , p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \ | ||||
p5##_type, p6##_type, p7##_type, p8##_type | ||||
#define GMOCK_INTERNAL_LIST_TYPE_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ | ||||
p6, p7, p8, p9) , p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \ | ||||
p5##_type, p6##_type, p7##_type, p8##_type, p9##_type | ||||
// Declares the value parameters. | ||||
#define GMOCK_INTERNAL_DECL_AND_0_VALUE_PARAMS() | ||||
#define GMOCK_INTERNAL_DECL_AND_1_VALUE_PARAMS(p0) p0##_type p0 | ||||
#define GMOCK_INTERNAL_DECL_AND_2_VALUE_PARAMS(p0, p1) p0##_type p0, \ | ||||
p1##_type p1 | ||||
#define GMOCK_INTERNAL_DECL_AND_3_VALUE_PARAMS(p0, p1, p2) p0##_type p0, \ | ||||
p1##_type p1, p2##_type p2 | ||||
#define GMOCK_INTERNAL_DECL_AND_4_VALUE_PARAMS(p0, p1, p2, p3) p0##_type p0, \ | ||||
p1##_type p1, p2##_type p2, p3##_type p3 | ||||
#define GMOCK_INTERNAL_DECL_AND_5_VALUE_PARAMS(p0, p1, p2, p3, \ | ||||
p4) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, p4##_type p4 | ||||
#define GMOCK_INTERNAL_DECL_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, \ | ||||
p5) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, p4##_type p4, \ | ||||
p5##_type p5 | ||||
#define GMOCK_INTERNAL_DECL_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ | ||||
p6) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, p4##_type p4, \ | ||||
p5##_type p5, p6##_type p6 | ||||
#define GMOCK_INTERNAL_DECL_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ | ||||
p7) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, p4##_type p4, \ | ||||
p5##_type p5, p6##_type p6, p7##_type p7 | ||||
#define GMOCK_INTERNAL_DECL_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ | ||||
p7, p8) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, \ | ||||
p4##_type p4, p5##_type p5, p6##_type p6, p7##_type p7, p8##_type p8 | ||||
#define GMOCK_INTERNAL_DECL_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ | ||||
p7, p8, p9) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, \ | ||||
p4##_type p4, p5##_type p5, p6##_type p6, p7##_type p7, p8##_type p8, \ | ||||
p9##_type p9 | ||||
// The suffix of the class template implementing the action template. | ||||
#define GMOCK_INTERNAL_COUNT_AND_0_VALUE_PARAMS() | ||||
#define GMOCK_INTERNAL_COUNT_AND_1_VALUE_PARAMS(p0) P | ||||
#define GMOCK_INTERNAL_COUNT_AND_2_VALUE_PARAMS(p0, p1) P2 | ||||
#define GMOCK_INTERNAL_COUNT_AND_3_VALUE_PARAMS(p0, p1, p2) P3 | ||||
#define GMOCK_INTERNAL_COUNT_AND_4_VALUE_PARAMS(p0, p1, p2, p3) P4 | ||||
#define GMOCK_INTERNAL_COUNT_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) P5 | ||||
#define GMOCK_INTERNAL_COUNT_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5) P6 | ||||
#define GMOCK_INTERNAL_COUNT_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6) P7 | ||||
#define GMOCK_INTERNAL_COUNT_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ | ||||
p7) P8 | ||||
#define GMOCK_INTERNAL_COUNT_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ | ||||
p7, p8) P9 | ||||
#define GMOCK_INTERNAL_COUNT_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ | ||||
p7, p8, p9) P10 | ||||
// The name of the class template implementing the action template. | ||||
#define GMOCK_ACTION_CLASS_(name, value_params)\ | ||||
GTEST_CONCAT_TOKEN_(name##Action, GMOCK_INTERNAL_COUNT_##value_params) | ||||
#define ACTION_TEMPLATE(name, template_params, value_params) \ | ||||
template <GMOCK_INTERNAL_DECL_##template_params \ | ||||
GMOCK_INTERNAL_DECL_TYPE_##value_params> \ | ||||
class GMOCK_ACTION_CLASS_(name, value_params) { \ | ||||
public: \ | ||||
explicit GMOCK_ACTION_CLASS_(name, value_params)( \ | ||||
GMOCK_INTERNAL_DECL_##value_params) \ | ||||
GMOCK_PP_IF(GMOCK_PP_IS_EMPTY(GMOCK_INTERNAL_COUNT_##value_params), \ | ||||
= default; , \ | ||||
: impl_(std::make_shared<gmock_Impl>( \ | ||||
GMOCK_INTERNAL_LIST_##value_params)) { }) \ | ||||
GMOCK_ACTION_CLASS_(name, value_params)( \ | ||||
const GMOCK_ACTION_CLASS_(name, value_params)&) noexcept \ | ||||
GMOCK_INTERNAL_DEFN_COPY_##value_params \ | ||||
GMOCK_ACTION_CLASS_(name, value_params)( \ | ||||
GMOCK_ACTION_CLASS_(name, value_params)&&) noexcept \ | ||||
GMOCK_INTERNAL_DEFN_COPY_##value_params \ | ||||
template <typename F> \ | ||||
operator ::testing::Action<F>() const { \ | ||||
return GMOCK_PP_IF( \ | ||||
GMOCK_PP_IS_EMPTY(GMOCK_INTERNAL_COUNT_##value_params), \ | ||||
(::testing::internal::MakeAction<F, gmock_Impl>()), \ | ||||
(::testing::internal::MakeAction<F>(impl_))); \ | ||||
} \ | ||||
private: \ | ||||
class gmock_Impl { \ | ||||
public: \ | ||||
explicit gmock_Impl GMOCK_INTERNAL_INIT_##value_params {} \ | ||||
template <typename function_type, typename return_type, \ | ||||
typename args_type, GMOCK_ACTION_TEMPLATE_ARGS_NAMES_> \ | ||||
return_type gmock_PerformImpl(GMOCK_ACTION_ARG_TYPES_AND_NAMES_) const; \ | ||||
GMOCK_INTERNAL_DEFN_##value_params \ | ||||
}; \ | ||||
GMOCK_PP_IF(GMOCK_PP_IS_EMPTY(GMOCK_INTERNAL_COUNT_##value_params), \ | ||||
, std::shared_ptr<const gmock_Impl> impl_;) \ | ||||
}; \ | ||||
template <GMOCK_INTERNAL_DECL_##template_params \ | ||||
GMOCK_INTERNAL_DECL_TYPE_##value_params> \ | ||||
GMOCK_ACTION_CLASS_(name, value_params)< \ | ||||
GMOCK_INTERNAL_LIST_##template_params \ | ||||
GMOCK_INTERNAL_LIST_TYPE_##value_params> name( \ | ||||
GMOCK_INTERNAL_DECL_##value_params) GTEST_MUST_USE_RESULT_; \ | ||||
template <GMOCK_INTERNAL_DECL_##template_params \ | ||||
GMOCK_INTERNAL_DECL_TYPE_##value_params> \ | ||||
inline GMOCK_ACTION_CLASS_(name, value_params)< \ | ||||
GMOCK_INTERNAL_LIST_##template_params \ | ||||
GMOCK_INTERNAL_LIST_TYPE_##value_params> name( \ | ||||
GMOCK_INTERNAL_DECL_##value_params) { \ | ||||
return GMOCK_ACTION_CLASS_(name, value_params)< \ | ||||
GMOCK_INTERNAL_LIST_##template_params \ | ||||
GMOCK_INTERNAL_LIST_TYPE_##value_params>( \ | ||||
GMOCK_INTERNAL_LIST_##value_params); \ | ||||
} \ | ||||
template <GMOCK_INTERNAL_DECL_##template_params \ | ||||
GMOCK_INTERNAL_DECL_TYPE_##value_params> \ | ||||
template <typename function_type, typename return_type, typename args_type, \ | ||||
GMOCK_ACTION_TEMPLATE_ARGS_NAMES_> \ | ||||
return_type GMOCK_ACTION_CLASS_(name, value_params)< \ | ||||
GMOCK_INTERNAL_LIST_##template_params \ | ||||
GMOCK_INTERNAL_LIST_TYPE_##value_params>::gmock_Impl::gmock_PerformImpl( \ | ||||
GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const | ||||
// Various overloads for Invoke(). | namespace testing { | |||
// The ACTION*() macros trigger warning C4100 (unreferenced formal | // The ACTION*() macros trigger warning C4100 (unreferenced formal | |||
// parameter) in MSVC with -W4. Unfortunately they cannot be fixed in | // parameter) in MSVC with -W4. Unfortunately they cannot be fixed in | |||
// the macro definition, as the warnings are generated when the macro | // the macro definition, as the warnings are generated when the macro | |||
// is expanded and macro expansion cannot contain #pragma. Therefore | // is expanded and macro expansion cannot contain #pragma. Therefore | |||
// we suppress them here. | // we suppress them here. | |||
#ifdef _MSC_VER | #ifdef _MSC_VER | |||
# pragma warning(push) | # pragma warning(push) | |||
# pragma warning(disable:4100) | # pragma warning(disable:4100) | |||
#endif | #endif | |||
// Action ReturnArg<k>() returns the k-th argument of the mock function. | namespace internal { | |||
ACTION_TEMPLATE(ReturnArg, | ||||
HAS_1_TEMPLATE_PARAMS(int, k), | ||||
AND_0_VALUE_PARAMS()) { | ||||
return ::std::get<k>(args); | ||||
} | ||||
// Action SaveArg<k>(pointer) saves the k-th (0-based) argument of the | // internal::InvokeArgument - a helper for InvokeArgument action. | |||
// mock function to *pointer. | // The basic overloads are provided here for generic functors. | |||
ACTION_TEMPLATE(SaveArg, | // Overloads for other custom-callables are provided in the | |||
HAS_1_TEMPLATE_PARAMS(int, k), | // internal/custom/gmock-generated-actions.h header. | |||
AND_1_VALUE_PARAMS(pointer)) { | template <typename F, typename... Args> | |||
*pointer = ::std::get<k>(args); | auto InvokeArgument(F f, Args... args) -> decltype(f(args...)) { | |||
return f(args...); | ||||
} | } | |||
// Action SaveArgPointee<k>(pointer) saves the value pointed to | template <std::size_t index, typename... Params> | |||
// by the k-th (0-based) argument of the mock function to *pointer. | struct InvokeArgumentAction { | |||
ACTION_TEMPLATE(SaveArgPointee, | template <typename... Args> | |||
HAS_1_TEMPLATE_PARAMS(int, k), | auto operator()(Args&&... args) const -> decltype(internal::InvokeArgument( | |||
AND_1_VALUE_PARAMS(pointer)) { | std::get<index>(std::forward_as_tuple(std::forward<Args>(args)...)), | |||
*pointer = *::std::get<k>(args); | std::declval<const Params&>()...)) { | |||
} | internal::FlatTuple<Args&&...> args_tuple(FlatTupleConstructTag{}, | |||
std::forward<Args>(args)...); | ||||
return params.Apply([&](const Params&... unpacked_params) { | ||||
auto&& callable = args_tuple.template Get<index>(); | ||||
return internal::InvokeArgument( | ||||
std::forward<decltype(callable)>(callable), unpacked_params...); | ||||
}); | ||||
} | ||||
// Action SetArgReferee<k>(value) assigns 'value' to the variable | internal::FlatTuple<Params...> params; | |||
// referenced by the k-th (0-based) argument of the mock function. | }; | |||
ACTION_TEMPLATE(SetArgReferee, | ||||
HAS_1_TEMPLATE_PARAMS(int, k), | ||||
AND_1_VALUE_PARAMS(value)) { | ||||
typedef typename ::std::tuple_element<k, args_type>::type argk_type; | ||||
// Ensures that argument #k is a reference. If you get a compiler | ||||
// error on the next line, you are using SetArgReferee<k>(value) in | ||||
// a mock function whose k-th (0-based) argument is not a reference. | ||||
GTEST_COMPILE_ASSERT_(std::is_reference<argk_type>::value, | ||||
SetArgReferee_must_be_used_with_a_reference_argument); | ||||
::std::get<k>(args) = value; | ||||
} | ||||
// Action SetArrayArgument<k>(first, last) copies the elements in | } // namespace internal | |||
// source range [first, last) to the array pointed to by the k-th | ||||
// (0-based) argument, which can be either a pointer or an | ||||
// iterator. The action does not take ownership of the elements in the | ||||
// source range. | ||||
ACTION_TEMPLATE(SetArrayArgument, | ||||
HAS_1_TEMPLATE_PARAMS(int, k), | ||||
AND_2_VALUE_PARAMS(first, last)) { | ||||
// Visual Studio deprecates ::std::copy, so we use our own copy in that case. | ||||
#ifdef _MSC_VER | ||||
internal::CopyElements(first, last, ::std::get<k>(args)); | ||||
#else | ||||
::std::copy(first, last, ::std::get<k>(args)); | ||||
#endif | ||||
} | ||||
// Action DeleteArg<k>() deletes the k-th (0-based) argument of the mock | // The InvokeArgument<N>(a1, a2, ..., a_k) action invokes the N-th | |||
// function. | // (0-based) argument, which must be a k-ary callable, of the mock | |||
ACTION_TEMPLATE(DeleteArg, | // function, with arguments a1, a2, ..., a_k. | |||
HAS_1_TEMPLATE_PARAMS(int, k), | // | |||
AND_0_VALUE_PARAMS()) { | // Notes: | |||
delete ::std::get<k>(args); | // | |||
// 1. The arguments are passed by value by default. If you need to | ||||
// pass an argument by reference, wrap it inside std::ref(). For | ||||
// example, | ||||
// | ||||
// InvokeArgument<1>(5, string("Hello"), std::ref(foo)) | ||||
// | ||||
// passes 5 and string("Hello") by value, and passes foo by | ||||
// reference. | ||||
// | ||||
// 2. If the callable takes an argument by reference but std::ref() is | ||||
// not used, it will receive the reference to a copy of the value, | ||||
// instead of the original value. For example, when the 0-th | ||||
// argument of the mock function takes a const string&, the action | ||||
// | ||||
// InvokeArgument<0>(string("Hello")) | ||||
// | ||||
// makes a copy of the temporary string("Hello") object and passes a | ||||
// reference of the copy, instead of the original temporary object, | ||||
// to the callable. This makes it easy for a user to define an | ||||
// InvokeArgument action from temporary values and have it performed | ||||
// later. | ||||
template <std::size_t index, typename... Params> | ||||
internal::InvokeArgumentAction<index, typename std::decay<Params>::type...> | ||||
InvokeArgument(Params&&... params) { | ||||
return {internal::FlatTuple<typename std::decay<Params>::type...>( | ||||
internal::FlatTupleConstructTag{}, std::forward<Params>(params)...)}; | ||||
} | } | |||
// This action returns the value pointed to by 'pointer'. | ||||
ACTION_P(ReturnPointee, pointer) { return *pointer; } | ||||
// Action Throw(exception) can be used in a mock function of any type | ||||
// to throw the given exception. Any copyable value can be thrown. | ||||
#if GTEST_HAS_EXCEPTIONS | ||||
// Suppresses the 'unreachable code' warning that VC generates in opt modes. | ||||
# ifdef _MSC_VER | ||||
# pragma warning(push) // Saves the current warning state. | ||||
# pragma warning(disable:4702) // Temporarily disables warning 4702. | ||||
# endif | ||||
ACTION_P(Throw, exception) { throw exception; } | ||||
# ifdef _MSC_VER | ||||
# pragma warning(pop) // Restores the warning state. | ||||
# endif | ||||
#endif // GTEST_HAS_EXCEPTIONS | ||||
#ifdef _MSC_VER | #ifdef _MSC_VER | |||
# pragma warning(pop) | # pragma warning(pop) | |||
#endif | #endif | |||
} // namespace testing | } // namespace testing | |||
#endif // GMOCK_INCLUDE_GMOCK_GMOCK_MORE_ACTIONS_H_ | #endif // GOOGLEMOCK_INCLUDE_GMOCK_GMOCK_MORE_ACTIONS_H_ | |||
End of changes. 14 change blocks. | ||||
97 lines changed or deleted | 508 lines changed or added |