blob: 55a91392353076d49f7f896dd477c8e03e2b4ad9 [file] [log] [blame]
[email protected]302bdc132008-08-25 13:42:071// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "base/tuple.h"
[email protected]40350b12010-03-30 17:29:276
7#include "base/compiler_specific.h"
[email protected]302bdc132008-08-25 13:42:078#include "testing/gtest/include/gtest/gtest.h"
9
brettwd5ca2bc2015-05-29 22:15:4710namespace base {
11
[email protected]302bdc132008-08-25 13:42:0712namespace {
13
14void DoAdd(int a, int b, int c, int* res) {
15 *res = a + b + c;
16}
17
18struct Addy {
19 Addy() { }
20 void DoAdd(int a, int b, int c, int d, int* res) {
21 *res = a + b + c + d;
22 }
23};
24
[email protected]8a2820a2008-10-09 21:58:0525struct Addz {
26 Addz() { }
27 void DoAdd(int a, int b, int c, int d, int e, int* res) {
28 *res = a + b + c + d + e;
29 }
30};
31
[email protected]302bdc132008-08-25 13:42:0732} // namespace
33
34TEST(TupleTest, Basic) {
brettwd5ca2bc2015-05-29 22:15:4735 base::Tuple<> t0 = base::MakeTuple();
pkasting99867ef2014-10-16 23:49:2436 ALLOW_UNUSED_LOCAL(t0);
brettwd5ca2bc2015-05-29 22:15:4737 base::Tuple<int> t1(1);
38 base::Tuple<int, const char*> t2 =
39 base::MakeTuple(1, static_cast<const char*>("wee"));
40 base::Tuple<int, int, int> t3(1, 2, 3);
41 base::Tuple<int, int, int, int*> t4(1, 2, 3, &get<0>(t1));
42 base::Tuple<int, int, int, int, int*> t5(1, 2, 3, 4, &get<0>(t4));
43 base::Tuple<int, int, int, int, int, int*> t6(1, 2, 3, 4, 5, &get<0>(t4));
[email protected]302bdc132008-08-25 13:42:0744
Avi Drissman95c2a1b72014-12-22 18:01:3245 EXPECT_EQ(1, get<0>(t1));
46 EXPECT_EQ(1, get<0>(t2));
47 EXPECT_EQ(1, get<0>(t3));
48 EXPECT_EQ(2, get<1>(t3));
49 EXPECT_EQ(3, get<2>(t3));
50 EXPECT_EQ(1, get<0>(t4));
51 EXPECT_EQ(2, get<1>(t4));
52 EXPECT_EQ(3, get<2>(t4));
53 EXPECT_EQ(1, get<0>(t5));
54 EXPECT_EQ(2, get<1>(t5));
55 EXPECT_EQ(3, get<2>(t5));
56 EXPECT_EQ(4, get<3>(t5));
57 EXPECT_EQ(1, get<0>(t6));
58 EXPECT_EQ(2, get<1>(t6));
59 EXPECT_EQ(3, get<2>(t6));
60 EXPECT_EQ(4, get<3>(t6));
61 EXPECT_EQ(5, get<4>(t6));
[email protected]302bdc132008-08-25 13:42:0762
Avi Drissman95c2a1b72014-12-22 18:01:3263 EXPECT_EQ(1, get<0>(t1));
[email protected]302bdc132008-08-25 13:42:0764 DispatchToFunction(&DoAdd, t4);
Avi Drissman95c2a1b72014-12-22 18:01:3265 EXPECT_EQ(6, get<0>(t1));
[email protected]302bdc132008-08-25 13:42:0766
67 int res = 0;
brettwd5ca2bc2015-05-29 22:15:4768 DispatchToFunction(&DoAdd, base::MakeTuple(9, 8, 7, &res));
[email protected]302bdc132008-08-25 13:42:0769 EXPECT_EQ(24, res);
70
71 Addy addy;
Avi Drissman95c2a1b72014-12-22 18:01:3272 EXPECT_EQ(1, get<0>(t4));
[email protected]302bdc132008-08-25 13:42:0773 DispatchToMethod(&addy, &Addy::DoAdd, t5);
Avi Drissman95c2a1b72014-12-22 18:01:3274 EXPECT_EQ(10, get<0>(t4));
[email protected]8a2820a2008-10-09 21:58:0575
76 Addz addz;
Avi Drissman95c2a1b72014-12-22 18:01:3277 EXPECT_EQ(10, get<0>(t4));
[email protected]8a2820a2008-10-09 21:58:0578 DispatchToMethod(&addz, &Addz::DoAdd, t6);
Avi Drissman95c2a1b72014-12-22 18:01:3279 EXPECT_EQ(15, get<0>(t4));
[email protected]302bdc132008-08-25 13:42:0780}
81
82namespace {
83
84struct CopyLogger {
85 CopyLogger() { ++TimesConstructed; }
86 CopyLogger(const CopyLogger& tocopy) { ++TimesConstructed; ++TimesCopied; }
87 ~CopyLogger() { }
88
89 static int TimesCopied;
90 static int TimesConstructed;
91};
92
93void SomeLoggerMethRef(const CopyLogger& logy, const CopyLogger* ptr, bool* b) {
94 *b = &logy == ptr;
95}
96
97void SomeLoggerMethCopy(CopyLogger logy, const CopyLogger* ptr, bool* b) {
98 *b = &logy == ptr;
99}
100
101int CopyLogger::TimesCopied = 0;
102int CopyLogger::TimesConstructed = 0;
103
104} // namespace
105
106TEST(TupleTest, Copying) {
107 CopyLogger logger;
108 EXPECT_EQ(0, CopyLogger::TimesCopied);
109 EXPECT_EQ(1, CopyLogger::TimesConstructed);
110
111 bool res = false;
112
113 // Creating the tuple should copy the class to store internally in the tuple.
brettwd5ca2bc2015-05-29 22:15:47114 base::Tuple<CopyLogger, CopyLogger*, bool*> tuple(logger, &logger, &res);
Avi Drissman95c2a1b72014-12-22 18:01:32115 get<1>(tuple) = &get<0>(tuple);
[email protected]302bdc132008-08-25 13:42:07116 EXPECT_EQ(2, CopyLogger::TimesConstructed);
117 EXPECT_EQ(1, CopyLogger::TimesCopied);
118
119 // Our internal Logger and the one passed to the function should be the same.
120 res = false;
121 DispatchToFunction(&SomeLoggerMethRef, tuple);
122 EXPECT_TRUE(res);
123 EXPECT_EQ(2, CopyLogger::TimesConstructed);
124 EXPECT_EQ(1, CopyLogger::TimesCopied);
125
126 // Now they should be different, since the function call will make a copy.
127 res = false;
128 DispatchToFunction(&SomeLoggerMethCopy, tuple);
129 EXPECT_FALSE(res);
130 EXPECT_EQ(3, CopyLogger::TimesConstructed);
131 EXPECT_EQ(2, CopyLogger::TimesCopied);
132}
brettwd5ca2bc2015-05-29 22:15:47133
134} // namespace base