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

Unified Diff: components/rappor/bloom_filter_unittest.cc

Issue 49753002: RAPPOR implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cohorts Created 6 years, 11 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
Index: components/rappor/bloom_filter_unittest.cc
diff --git a/components/rappor/bloom_filter_unittest.cc b/components/rappor/bloom_filter_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..f035516f21dec1c19a51dee2773784d2794d5331
--- /dev/null
+++ b/components/rappor/bloom_filter_unittest.cc
@@ -0,0 +1,62 @@
+// Copyright 2014 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/bloom_filter.h"
+
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace rappor {
+
+TEST(BloomFilterTest, TestTinyFilter) {
+ BloomFilter filter(1u, 4u, 0u);
+
+ // Size is 1 and it's initially empty
+ EXPECT_EQ(1u, filter.bytes().size());
+ EXPECT_EQ(0x00, filter.bytes()[0]);
+
+ // "Test" has a self-collision, and only sets 3 bits.
+ filter.AddString("Test");
+ EXPECT_EQ(0x70, filter.bytes()[0]);
+
+ // Adding the same value shouldn't change anything.
+ filter.AddString("Test");
+ EXPECT_EQ(0x70, filter.bytes()[0]);
+
+ BloomFilter filter2(1u, 4u, 0u);
+ EXPECT_EQ(0x00, filter2.bytes()[0]);
+ filter2.AddString("Foo");
+ EXPECT_EQ(0x3C, filter2.bytes()[0]);
+
+ // Adding a colliding string should just set new bits.
+ filter.AddString("Foo");
+ EXPECT_EQ(0x7C, filter.bytes()[0]);
+}
+
+TEST(BloomFilterTest, TestHugeFilter) {
+ BloomFilter filter(500u, 1u, 0u);
+
+ // Size is 500 and it's initially empty
+ EXPECT_EQ(500u, filter.bytes().size());
+ EXPECT_EQ(0, CountBits(filter.bytes()));
+
+ filter.AddString("Bar");
+ EXPECT_EQ(1, CountBits(filter.bytes()));
+
+ // Adding the same value shouldn't change anything.
+ filter.AddString("Bar");
+ EXPECT_EQ(1, CountBits(filter.bytes()));
+}
+
+TEST(BloomFilterTest, TestAddStrings) {
+ BloomFilter filter(1u, 4u, 0u);
+ std::vector<std::string> strs;
+ strs.push_back("Test");
+ strs.push_back("Foo");
+ filter.AddStrings(strs);
+
+ EXPECT_EQ(1u, filter.bytes().size());
+ EXPECT_EQ(0x7C, filter.bytes()[0]);
+}
+
+} // namespace rappor

Powered by Google App Engine
This is Rietveld 408576698