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

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: 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..1fd381bd00ff56259208e543249fe08e6d155571
--- /dev/null
+++ b/components/rappor/bloom_filter_unittest.cc
@@ -0,0 +1,39 @@
+// Copyright (c) 2012 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, TestAddString) {
+ BloomFilter filter(2, 2);
+
+ ASSERT_EQ(2u, filter.bytes().size());
+ ASSERT_EQ(0u, filter.bytes()[0]);
+ ASSERT_EQ(0, filter.bytes()[1]);
Ilya Sherman 2014/01/10 11:00:32 Why is line 15 unsigned and line 16 signed?
Steven Holte 2014/01/14 00:47:54 Done.
+
+ filter.AddString("Foo");
+ ASSERT_EQ(2u, filter.bytes()[0]);
+ ASSERT_EQ(8u, filter.bytes()[1]);
+
+ filter.AddString("Bar");
+ ASSERT_EQ(3u, filter.bytes()[0]);
+ ASSERT_EQ(9u, filter.bytes()[1]);
+}
+
+TEST(BloomFilterTest, TestAddStrings) {
+ BloomFilter filter(2, 2);
+ std::vector<std::string> strs;
+ strs.push_back("Bar");
+ strs.push_back("Foo");
+ filter.AddStrings(strs);
+
+ ASSERT_EQ(2u, filter.bytes().size());
+ ASSERT_EQ(3u, filter.bytes()[0]);
+ ASSERT_EQ(9u, filter.bytes()[1]);
Ilya Sherman 2014/01/10 11:00:32 nit: Please use EXPECT_EQ rather than ASSERT_EQ, t
Steven Holte 2014/01/14 00:47:54 Done.
+}
Ilya Sherman 2014/01/10 11:00:32 Please add some more testing of potential edge-cas
Steven Holte 2014/01/15 04:53:44 Done.
+
+} // namespace rappor

Powered by Google App Engine
This is Rietveld 408576698