Index: components/rappor/rappor_service_unittest.cc |
diff --git a/components/rappor/rappor_service_unittest.cc b/components/rappor/rappor_service_unittest.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a4962585aa0042ba70fdaa9bb1ae36c1b744de3d |
--- /dev/null |
+++ b/components/rappor/rappor_service_unittest.cc |
@@ -0,0 +1,38 @@ |
+// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "components/rappor/rappor_service.h" |
+ |
+#include <string> |
+ |
+#include "components/rappor/rappor_recorder.h" |
+#include "testing/gtest/include/gtest/gtest.h" |
+ |
+namespace rappor { |
+ |
+class RapporServiceTest : public testing::Test { |
+ public: |
+ RapporMetricsProto* GetProto(RapporService* log) { |
+ return &(log->rappor_metrics_proto_); |
+ } |
+ void RecordRapporMetrics(RapporService* log) { log->RecordRapporMetrics(); } |
+}; |
+ |
+TEST_F(RapporServiceTest, RapporMetrics) { |
+ RapporService log; |
+ std::vector<std::string> samples; |
+ samples.push_back("foo"); |
+ RAPPOR_SAMPLES("MyRappor", samples); |
+ |
+ RecordRapporMetrics(&log); |
+ |
+ RapporMetricsProto* proto = GetProto(&log); |
+ EXPECT_EQ(1, proto->rappor_size()); |
+ |
+ const RapporMetricsProto::RapporMetricProto& rappor_proto = proto->rappor(0); |
+ EXPECT_TRUE(rappor_proto.name_hash()); |
+ EXPECT_EQ(16u, rappor_proto.bits().size()); |
+} |
+ |
+} // namespace rappor |