2014-07-23 07:54:41 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-10-04 04:09:59 +04:00
|
|
|
/* 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
|
|
|
|
{
|
2014-07-23 07:54:41 +04:00
|
|
|
public:
|
|
|
|
explicit FilterChecker(uint32_t aHash) : mHash(aHash) { }
|
2012-10-04 04:09:59 +04:00
|
|
|
|
2014-07-23 07:54:41 +04:00
|
|
|
uint32_t hash() const { return mHash; }
|
2012-10-04 04:09:59 +04:00
|
|
|
|
2014-07-23 07:54:41 +04:00
|
|
|
private:
|
|
|
|
uint32_t mHash;
|
2012-10-04 04:09:59 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
int
|
|
|
|
main()
|
|
|
|
{
|
2014-07-23 07:54:41 +04:00
|
|
|
BloomFilter<12, FilterChecker>* filter = new BloomFilter<12, FilterChecker>();
|
2014-04-25 01:06:50 +04:00
|
|
|
MOZ_RELEASE_ASSERT(filter);
|
2012-10-04 04:09:59 +04:00
|
|
|
|
|
|
|
FilterChecker one(1);
|
|
|
|
FilterChecker two(0x20000);
|
|
|
|
FilterChecker many(0x10000);
|
|
|
|
FilterChecker multiple(0x20001);
|
|
|
|
|
|
|
|
filter->add(&one);
|
2014-04-25 01:06:50 +04:00
|
|
|
MOZ_RELEASE_ASSERT(filter->mightContain(&one),
|
2012-10-04 04:09:59 +04:00
|
|
|
"Filter should contain 'one'");
|
|
|
|
|
2014-04-25 01:06:50 +04:00
|
|
|
MOZ_RELEASE_ASSERT(!filter->mightContain(&multiple),
|
2012-10-04 04:09:59 +04:00
|
|
|
"Filter claims to contain 'multiple' when it should not");
|
|
|
|
|
2014-04-25 01:06:50 +04:00
|
|
|
MOZ_RELEASE_ASSERT(filter->mightContain(&many),
|
2012-10-04 04:09:59 +04:00
|
|
|
"Filter should contain 'many' (false positive)");
|
|
|
|
|
|
|
|
filter->add(&two);
|
2014-04-25 01:06:50 +04:00
|
|
|
MOZ_RELEASE_ASSERT(filter->mightContain(&multiple),
|
2012-10-04 04:09:59 +04:00
|
|
|
"Filter should contain 'multiple' (false positive)");
|
|
|
|
|
|
|
|
// Test basic removals
|
|
|
|
filter->remove(&two);
|
2014-04-25 01:06:50 +04:00
|
|
|
MOZ_RELEASE_ASSERT(!filter->mightContain(&multiple),
|
2012-10-04 04:09:59 +04:00
|
|
|
"Filter claims to contain 'multiple' when it should not after two "
|
|
|
|
"was removed");
|
|
|
|
|
|
|
|
// Test multiple addition/removal
|
|
|
|
const size_t FILTER_SIZE = 255;
|
2014-07-23 07:54:41 +04:00
|
|
|
for (size_t i = 0; i < FILTER_SIZE - 1; ++i) {
|
2012-10-04 04:09:59 +04:00
|
|
|
filter->add(&two);
|
2014-07-23 07:54:41 +04:00
|
|
|
}
|
2014-04-25 01:06:50 +04:00
|
|
|
MOZ_RELEASE_ASSERT(filter->mightContain(&multiple),
|
2012-10-04 04:09:59 +04:00
|
|
|
"Filter should contain 'multiple' after 'two' added lots of times "
|
|
|
|
"(false positive)");
|
|
|
|
|
2014-07-23 07:54:41 +04:00
|
|
|
for (size_t i = 0; i < FILTER_SIZE - 1; ++i) {
|
2012-10-04 04:09:59 +04:00
|
|
|
filter->remove(&two);
|
2014-07-23 07:54:41 +04:00
|
|
|
}
|
2014-04-25 01:06:50 +04:00
|
|
|
MOZ_RELEASE_ASSERT(!filter->mightContain(&multiple),
|
2012-10-04 04:09:59 +04:00
|
|
|
"Filter claims to contain 'multiple' when it should not after two "
|
|
|
|
"was removed lots of times");
|
|
|
|
|
|
|
|
// Test overflowing the filter buckets
|
2014-07-23 07:54:41 +04:00
|
|
|
for (size_t i = 0; i < FILTER_SIZE + 1; ++i) {
|
2012-10-04 04:09:59 +04:00
|
|
|
filter->add(&two);
|
2014-07-23 07:54:41 +04:00
|
|
|
}
|
2014-04-25 01:06:50 +04:00
|
|
|
MOZ_RELEASE_ASSERT(filter->mightContain(&multiple),
|
2012-10-04 04:09:59 +04:00
|
|
|
"Filter should contain 'multiple' after 'two' added lots more "
|
|
|
|
"times (false positive)");
|
|
|
|
|
2014-07-23 07:54:41 +04:00
|
|
|
for (size_t i = 0; i < FILTER_SIZE + 1; ++i) {
|
2012-10-04 04:09:59 +04:00
|
|
|
filter->remove(&two);
|
2014-07-23 07:54:41 +04:00
|
|
|
}
|
2014-04-25 01:06:50 +04:00
|
|
|
MOZ_RELEASE_ASSERT(filter->mightContain(&multiple),
|
2012-10-04 04:09:59 +04:00
|
|
|
"Filter claims to not contain 'multiple' even though we should "
|
|
|
|
"have run out of space in the buckets (false positive)");
|
2014-04-25 01:06:50 +04:00
|
|
|
MOZ_RELEASE_ASSERT(filter->mightContain(&two),
|
2012-10-04 04:09:59 +04:00
|
|
|
"Filter claims to not contain 'two' even though we should have "
|
|
|
|
"run out of space in the buckets (false positive)");
|
|
|
|
|
|
|
|
filter->remove(&one);
|
|
|
|
|
2014-04-25 01:06:50 +04:00
|
|
|
MOZ_RELEASE_ASSERT(!filter->mightContain(&one),
|
2012-10-04 04:09:59 +04:00
|
|
|
"Filter should not contain 'one', because we didn't overflow its "
|
|
|
|
"bucket");
|
|
|
|
|
|
|
|
filter->clear();
|
|
|
|
|
2014-04-25 01:06:50 +04:00
|
|
|
MOZ_RELEASE_ASSERT(!filter->mightContain(&multiple),
|
2012-10-04 04:09:59 +04:00
|
|
|
"clear() failed to work");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|