OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2015 The WebRTC Project Authors. All rights reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #include <sstream> | 11 #include <sstream> |
12 #include <string> | 12 #include <string> |
13 #include <utility> | 13 #include <utility> |
14 #include <vector> | 14 #include <vector> |
| 15 #include <sstream> |
15 | 16 |
16 #include "webrtc/base/gunit.h" | 17 #include "webrtc/base/gunit.h" |
17 #include "webrtc/base/optional.h" | 18 #include "webrtc/base/optional.h" |
18 | 19 |
19 namespace rtc { | 20 namespace rtc { |
20 | 21 |
21 namespace { | 22 namespace { |
22 | 23 |
23 // Class whose instances logs various method calls (constructor, destructor, | 24 // Class whose instances logs various method calls (constructor, destructor, |
24 // etc.). Each instance has a unique ID (a simple global sequence number) and | 25 // etc.). Each instance has a unique ID (a simple global sequence number) and |
(...skipping 30 matching lines...) Expand all Loading... |
55 Log2("swap", a, b); | 56 Log2("swap", a, b); |
56 } | 57 } |
57 friend bool operator==(const Logger& a, const Logger& b) { | 58 friend bool operator==(const Logger& a, const Logger& b) { |
58 Log2("operator==", a, b); | 59 Log2("operator==", a, b); |
59 return a.origin_ == b.origin_; | 60 return a.origin_ == b.origin_; |
60 } | 61 } |
61 friend bool operator!=(const Logger& a, const Logger& b) { | 62 friend bool operator!=(const Logger& a, const Logger& b) { |
62 Log2("operator!=", a, b); | 63 Log2("operator!=", a, b); |
63 return a.origin_ != b.origin_; | 64 return a.origin_ != b.origin_; |
64 } | 65 } |
| 66 friend std::ostream& operator<<(std::ostream& stream, const Logger& l); |
65 void Foo() { Log("Foo()"); } | 67 void Foo() { Log("Foo()"); } |
66 void Foo() const { Log("Foo() const"); } | 68 void Foo() const { Log("Foo() const"); } |
67 static rtc::scoped_ptr<std::vector<std::string>> Setup() { | 69 static rtc::scoped_ptr<std::vector<std::string>> Setup() { |
68 rtc::scoped_ptr<std::vector<std::string>> s(new std::vector<std::string>); | 70 rtc::scoped_ptr<std::vector<std::string>> s(new std::vector<std::string>); |
69 g_log = s.get(); | 71 g_log = s.get(); |
70 g_next_id = 0; | 72 g_next_id = 0; |
71 return s; | 73 return s; |
72 } | 74 } |
73 | 75 |
74 private: | 76 private: |
(...skipping 16 matching lines...) Expand all Loading... |
91 std::ostringstream oss; | 93 std::ostringstream oss; |
92 oss << msg << ' ' << a.id_ << ':' << a.origin_ << ", " << b.id_ << ':' | 94 oss << msg << ' ' << a.id_ << ':' << a.origin_ << ", " << b.id_ << ':' |
93 << b.origin_; | 95 << b.origin_; |
94 g_log->push_back(oss.str()); | 96 g_log->push_back(oss.str()); |
95 } | 97 } |
96 }; | 98 }; |
97 | 99 |
98 std::vector<std::string>* Logger::g_log = nullptr; | 100 std::vector<std::string>* Logger::g_log = nullptr; |
99 int Logger::g_next_id = 0; | 101 int Logger::g_next_id = 0; |
100 | 102 |
| 103 // Operator<< for Logger. EXPECT_EQ internally uses operator<< to format the |
| 104 // error message, which uses operator<< for Optional<T> which in turn depends |
| 105 // on operator<< for T. |
| 106 std::ostream& operator<<(std::ostream& stream, const Logger& logger) { |
| 107 for (auto it = Logger::g_log->begin(); it != Logger::g_log->end(); ++it) { |
| 108 if (it != Logger::g_log->begin()) { |
| 109 stream << "; "; |
| 110 } |
| 111 stream << *it; |
| 112 } |
| 113 return stream; |
| 114 } |
| 115 |
101 // Append all the other args to the vector pointed to by the first arg. | 116 // Append all the other args to the vector pointed to by the first arg. |
102 template <typename T> | 117 template <typename T> |
103 void VectorAppend(std::vector<T>* v) {} | 118 void VectorAppend(std::vector<T>* v) {} |
104 template <typename T, typename... Ts> | 119 template <typename T, typename... Ts> |
105 void VectorAppend(std::vector<T>* v, const T& e, Ts... es) { | 120 void VectorAppend(std::vector<T>* v, const T& e, Ts... es) { |
106 v->push_back(e); | 121 v->push_back(e); |
107 VectorAppend(v, es...); | 122 VectorAppend(v, es...); |
108 } | 123 } |
109 | 124 |
110 // Create a vector of strings. Because we're not allowed to use | 125 // Create a vector of strings. Because we're not allowed to use |
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
479 "3:42. copy constructor (from 1:42)", | 494 "3:42. copy constructor (from 1:42)", |
480 "4:17. copy constructor (from 0:17)", "5:5. default constructor", | 495 "4:17. copy constructor (from 0:17)", "5:5. default constructor", |
481 "6:6. default constructor", "7:7. default constructor", "---", | 496 "6:6. default constructor", "7:7. default constructor", "---", |
482 "swap 2:42, 3:17", "swap 4:5, 5:17", "swap 6:7, 7:6", "---", | 497 "swap 2:42, 3:17", "swap 4:5, 5:17", "swap 6:7, 7:6", "---", |
483 "7:6. destructor", "6:7. destructor", "5:17. destructor", | 498 "7:6. destructor", "6:7. destructor", "5:17. destructor", |
484 "4:5. destructor", "3:17. destructor", "2:42. destructor", | 499 "4:5. destructor", "3:17. destructor", "2:42. destructor", |
485 "1:42. destructor", "0:17. destructor"), | 500 "1:42. destructor", "0:17. destructor"), |
486 *log); | 501 *log); |
487 } | 502 } |
488 | 503 |
| 504 template <typename T> |
| 505 void ExpectWriteResult(const std::string& expected, rtc::Optional<T> value) { |
| 506 std::ostringstream stream; |
| 507 stream << value; |
| 508 EXPECT_EQ(expected, stream.str()); |
| 509 } |
| 510 |
| 511 TEST(OptionalTest, TestWriteToOstream) { |
| 512 ExpectWriteResult("1", rtc::Optional<int>(1)); |
| 513 ExpectWriteResult("<not set>", rtc::Optional<int>()); |
| 514 ExpectWriteResult("", rtc::Optional<std::string>(std::string())); |
| 515 ExpectWriteResult("<not set>", rtc::Optional<std::string>()); |
| 516 } |
| 517 |
489 } // namespace rtc | 518 } // namespace rtc |
OLD | NEW |