| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/rappor/rappor_service.h" | 5 #include "components/rappor/rappor_service.h" |
| 6 | 6 |
| 7 #include "base/base64.h" | 7 #include "base/base64.h" |
| 8 #include "base/metrics/metrics_hashes.h" |
| 8 #include "base/prefs/testing_pref_service.h" | 9 #include "base/prefs/testing_pref_service.h" |
| 9 #include "components/metrics/metrics_hashes.h" | |
| 10 #include "components/rappor/byte_vector_utils.h" | 10 #include "components/rappor/byte_vector_utils.h" |
| 11 #include "components/rappor/proto/rappor_metric.pb.h" | 11 #include "components/rappor/proto/rappor_metric.pb.h" |
| 12 #include "components/rappor/rappor_parameters.h" | 12 #include "components/rappor/rappor_parameters.h" |
| 13 #include "components/rappor/rappor_pref_names.h" | 13 #include "components/rappor/rappor_pref_names.h" |
| 14 #include "components/rappor/test_log_uploader.h" | 14 #include "components/rappor/test_log_uploader.h" |
| 15 #include "components/rappor/test_rappor_service.h" | 15 #include "components/rappor/test_rappor_service.h" |
| 16 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
| 17 | 17 |
| 18 namespace rappor { | 18 namespace rappor { |
| 19 | 19 |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 } | 115 } |
| 116 | 116 |
| 117 // Check that Sample objects record correctly. | 117 // Check that Sample objects record correctly. |
| 118 TEST(RapporServiceTest, RecordSample) { | 118 TEST(RapporServiceTest, RecordSample) { |
| 119 TestRapporService rappor_service; | 119 TestRapporService rappor_service; |
| 120 scoped_ptr<Sample> sample = | 120 scoped_ptr<Sample> sample = |
| 121 rappor_service.CreateSample(SAFEBROWSING_RAPPOR_TYPE); | 121 rappor_service.CreateSample(SAFEBROWSING_RAPPOR_TYPE); |
| 122 sample->SetStringField("Url", "example.com"); | 122 sample->SetStringField("Url", "example.com"); |
| 123 sample->SetFlagsField("Flags1", 0xbcd, 12); | 123 sample->SetFlagsField("Flags1", 0xbcd, 12); |
| 124 rappor_service.RecordSampleObj("ObjMetric", sample.Pass()); | 124 rappor_service.RecordSampleObj("ObjMetric", sample.Pass()); |
| 125 uint64_t url_hash = metrics::HashMetricName("ObjMetric.Url"); | 125 uint64_t url_hash = base::HashMetricName("ObjMetric.Url"); |
| 126 uint64_t flags_hash = metrics::HashMetricName("ObjMetric.Flags1"); | 126 uint64_t flags_hash = base::HashMetricName("ObjMetric.Flags1"); |
| 127 RapporReports reports; | 127 RapporReports reports; |
| 128 rappor_service.GetReports(&reports); | 128 rappor_service.GetReports(&reports); |
| 129 EXPECT_EQ(2, reports.report_size()); | 129 EXPECT_EQ(2, reports.report_size()); |
| 130 size_t url_index = reports.report(0).name_hash() == url_hash ? 0 : 1; | 130 size_t url_index = reports.report(0).name_hash() == url_hash ? 0 : 1; |
| 131 size_t flags_index = url_index == 0 ? 1 : 0; | 131 size_t flags_index = url_index == 0 ? 1 : 0; |
| 132 EXPECT_EQ(url_hash, reports.report(url_index).name_hash()); | 132 EXPECT_EQ(url_hash, reports.report(url_index).name_hash()); |
| 133 EXPECT_EQ(1u, reports.report(url_index).bits().size()); | 133 EXPECT_EQ(1u, reports.report(url_index).bits().size()); |
| 134 EXPECT_EQ(flags_hash, reports.report(flags_index).name_hash()); | 134 EXPECT_EQ(flags_hash, reports.report(flags_index).name_hash()); |
| 135 EXPECT_EQ(2u, reports.report(flags_index).bits().size()); | 135 EXPECT_EQ(2u, reports.report(flags_index).bits().size()); |
| 136 } | 136 } |
| 137 | 137 |
| 138 } // namespace rappor | 138 } // namespace rappor |
| OLD | NEW |