Skip to content

Commit 63713e1

Browse files
Abseil Teamderekmauro
Abseil Team
authored andcommitted
Googletest export
Fix the ACTION* macros to allow for more than 10 arguments in the action. Only the first 10 will be passed as individual arguments as `argN`, but the rest can be accessed from the `args` tuple. PiperOrigin-RevId: 311542098
1 parent 011959a commit 63713e1

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed

googlemock/include/gmock/gmock-actions.h

+5-3
Original file line numberDiff line numberDiff line change
@@ -1335,15 +1335,17 @@ class ActionHelper {
13351335
public:
13361336
template <typename... Ts>
13371337
static Result Perform(Impl* impl, const std::tuple<Ts...>& args) {
1338-
return Apply(impl, args, MakeIndexSequence<sizeof...(Ts)>{},
1339-
MakeIndexSequence<10 - sizeof...(Ts)>{});
1338+
static constexpr size_t kMaxArgs = sizeof...(Ts) <= 10 ? sizeof...(Ts) : 10;
1339+
return Apply(impl, args, MakeIndexSequence<kMaxArgs>{},
1340+
MakeIndexSequence<10 - kMaxArgs>{});
13401341
}
13411342

13421343
private:
13431344
template <typename... Ts, std::size_t... tuple_ids, std::size_t... rest_ids>
13441345
static Result Apply(Impl* impl, const std::tuple<Ts...>& args,
13451346
IndexSequence<tuple_ids...>, IndexSequence<rest_ids...>) {
1346-
return impl->template gmock_PerformImpl<Ts...>(
1347+
return impl->template gmock_PerformImpl<
1348+
typename std::tuple_element<tuple_ids, std::tuple<Ts...>>::type...>(
13471349
args, std::get<tuple_ids>(args)...,
13481350
((void)rest_ids, ExcessiveArg())...);
13491351
}

googlemock/test/gmock-actions_test.cc

+20
Original file line numberDiff line numberDiff line change
@@ -1550,6 +1550,26 @@ TEST(MoveOnlyArgumentsTest, ReturningActions) {
15501550
EXPECT_EQ(x, 3);
15511551
}
15521552

1553+
ACTION(ReturnArity) {
1554+
return std::tuple_size<args_type>::value;
1555+
}
1556+
1557+
TEST(ActionMacro, LargeArity) {
1558+
EXPECT_EQ(
1559+
1, testing::Action<int(int)>(ReturnArity()).Perform(std::make_tuple(0)));
1560+
EXPECT_EQ(
1561+
10,
1562+
testing::Action<int(int, int, int, int, int, int, int, int, int, int)>(
1563+
ReturnArity())
1564+
.Perform(std::make_tuple(0, 1, 2, 3, 4, 5, 6, 7, 8, 9)));
1565+
EXPECT_EQ(
1566+
20,
1567+
testing::Action<int(int, int, int, int, int, int, int, int, int, int, int,
1568+
int, int, int, int, int, int, int, int, int)>(
1569+
ReturnArity())
1570+
.Perform(std::make_tuple(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
1571+
14, 15, 16, 17, 18, 19)));
1572+
}
15531573

15541574
} // Unnamed namespace
15551575

0 commit comments

Comments
 (0)