Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Unified Diff: webrtc/base/optional_unittest.cc

Issue 1813763005: Updated structures and functions for setting the max bitrate limit to take rtc::Optional<int> Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Code review feedback Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/base/optional.h ('k') | webrtc/call.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/optional_unittest.cc
diff --git a/webrtc/base/optional_unittest.cc b/webrtc/base/optional_unittest.cc
index 8ddbebadb9a076f961c0e5c4bc5e6d205e6137a2..57099b68d415e5fdd95d293e372700783faf4a61 100644
--- a/webrtc/base/optional_unittest.cc
+++ b/webrtc/base/optional_unittest.cc
@@ -12,6 +12,7 @@
#include <string>
#include <utility>
#include <vector>
+#include <sstream>
#include "webrtc/base/gunit.h"
#include "webrtc/base/optional.h"
@@ -62,6 +63,7 @@ class Logger {
Log2("operator!=", a, b);
return a.origin_ != b.origin_;
}
+ friend std::ostream& operator<<(std::ostream& stream, const Logger& l);
void Foo() { Log("Foo()"); }
void Foo() const { Log("Foo() const"); }
static rtc::scoped_ptr<std::vector<std::string>> Setup() {
@@ -98,6 +100,19 @@ class Logger {
std::vector<std::string>* Logger::g_log = nullptr;
int Logger::g_next_id = 0;
+// Operator<< for Logger. EXPECT_EQ internally uses operator<< to format the
+// error message, which uses operator<< for Optional<T> which in turn depends
+// on operator<< for T.
+std::ostream& operator<<(std::ostream& stream, const Logger& logger) {
+ for (auto it = Logger::g_log->begin(); it != Logger::g_log->end(); ++it) {
+ if (it != Logger::g_log->begin()) {
+ stream << "; ";
+ }
+ stream << *it;
+ }
+ return stream;
+}
+
// Append all the other args to the vector pointed to by the first arg.
template <typename T>
void VectorAppend(std::vector<T>* v) {}
@@ -486,4 +501,18 @@ TEST(OptionalTest, TestSwap) {
*log);
}
+template <typename T>
+void ExpectWriteResult(const std::string& expected, rtc::Optional<T> value) {
+ std::ostringstream stream;
+ stream << value;
+ EXPECT_EQ(expected, stream.str());
+}
+
+TEST(OptionalTest, TestWriteToOstream) {
+ ExpectWriteResult("1", rtc::Optional<int>(1));
+ ExpectWriteResult("<not set>", rtc::Optional<int>());
+ ExpectWriteResult("", rtc::Optional<std::string>(std::string()));
+ ExpectWriteResult("<not set>", rtc::Optional<std::string>());
+}
+
} // namespace rtc
« no previous file with comments | « webrtc/base/optional.h ('k') | webrtc/call.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698