Skip to content

Commit

Permalink
Move TestBloomFilter out of XPCOM and into mfbt/tests, now that it ex…
Browse files Browse the repository at this point in the history
…ists. No bug, r=testingonlychange

--HG--
extra : rebase_source : 85a2a56bcc02bf122ee7fd21d16dffd534d1c98d
  • Loading branch information
jswalden committed Oct 4, 2012
1 parent 6c828f9 commit a9b67c2
Show file tree
Hide file tree
Showing 5 changed files with 105 additions and 122 deletions.
1 change: 1 addition & 0 deletions mfbt/BloomFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#ifndef mozilla_BloomFilter_h_
#define mozilla_BloomFilter_h_

#include "mozilla/Assertions.h"
#include "mozilla/Likely.h"
#include "mozilla/StandardInteger.h"
#include "mozilla/Util.h"
Expand Down
3 changes: 2 additions & 1 deletion mfbt/tests/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ include $(DEPTH)/config/autoconf.mk
STL_FLAGS =

CPP_UNIT_TESTS = \
TestBloomFilter.cpp \
TestCheckedInt.cpp \
TestTypeTraits.cpp \
TestSHA1.cpp \
TestTypeTraits.cpp \
TestWeakPtr.cpp \
$(NULL)

Expand Down
102 changes: 102 additions & 0 deletions mfbt/tests/TestBloomFilter.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "mozilla/Assertions.h"
#include "mozilla/BloomFilter.h"

#include <stddef.h>
#include <stdio.h>

using mozilla::BloomFilter;

class FilterChecker
{
public:
FilterChecker(uint32_t hash) : mHash(hash) { }

uint32_t hash() const { return mHash; }

private:
uint32_t mHash;
};

int
main()
{
BloomFilter<12, FilterChecker> *filter = new BloomFilter<12, FilterChecker>();
MOZ_ASSERT(filter);

FilterChecker one(1);
FilterChecker two(0x20000);
FilterChecker many(0x10000);
FilterChecker multiple(0x20001);

filter->add(&one);
MOZ_ASSERT(filter->mightContain(&one),
"Filter should contain 'one'");

MOZ_ASSERT(!filter->mightContain(&multiple),
"Filter claims to contain 'multiple' when it should not");

MOZ_ASSERT(filter->mightContain(&many),
"Filter should contain 'many' (false positive)");

filter->add(&two);
MOZ_ASSERT(filter->mightContain(&multiple),
"Filter should contain 'multiple' (false positive)");

// Test basic removals
filter->remove(&two);
MOZ_ASSERT(!filter->mightContain(&multiple),
"Filter claims to contain 'multiple' when it should not after two "
"was removed");

// Test multiple addition/removal
const size_t FILTER_SIZE = 255;
for (size_t i = 0; i < FILTER_SIZE - 1; ++i)
filter->add(&two);

MOZ_ASSERT(filter->mightContain(&multiple),
"Filter should contain 'multiple' after 'two' added lots of times "
"(false positive)");

for (size_t i = 0; i < FILTER_SIZE - 1; ++i)
filter->remove(&two);

MOZ_ASSERT(!filter->mightContain(&multiple),
"Filter claims to contain 'multiple' when it should not after two "
"was removed lots of times");

// Test overflowing the filter buckets
for (size_t i = 0; i < FILTER_SIZE + 1; ++i)
filter->add(&two);

MOZ_ASSERT(filter->mightContain(&multiple),
"Filter should contain 'multiple' after 'two' added lots more "
"times (false positive)");

for (size_t i = 0; i < FILTER_SIZE + 1; ++i)
filter->remove(&two);

MOZ_ASSERT(filter->mightContain(&multiple),
"Filter claims to not contain 'multiple' even though we should "
"have run out of space in the buckets (false positive)");
MOZ_ASSERT(filter->mightContain(&two),
"Filter claims to not contain 'two' even though we should have "
"run out of space in the buckets (false positive)");

filter->remove(&one);

MOZ_ASSERT(!filter->mightContain(&one),
"Filter should not contain 'one', because we didn't overflow its "
"bucket");

filter->clear();

MOZ_ASSERT(!filter->mightContain(&multiple),
"clear() failed to work");

return 0;
}
1 change: 0 additions & 1 deletion xpcom/tests/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ CPP_UNIT_TESTS = \
ShowSSEConfig.cpp \
TestAutoPtr.cpp \
TestAutoRef.cpp \
TestBloomFilter.cpp \
TestCOMArray.cpp \
TestCOMPtr.cpp \
TestCOMPtrEq.cpp \
Expand Down
120 changes: 0 additions & 120 deletions xpcom/tests/TestBloomFilter.cpp

This file was deleted.

0 comments on commit a9b67c2

Please sign in to comment.