blob: 64b483f9a2e1524523713663e9c583a999152017 [file] [log] [blame]
/*
* Copyright (C) 2011 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <gtest/gtest.h>
#include "sky/engine/wtf/HashMap.h"
#include "sky/engine/wtf/OwnPtr.h"
#include "sky/engine/wtf/PassOwnPtr.h"
#include "sky/engine/wtf/PassRefPtr.h"
#include "sky/engine/wtf/RefCounted.h"
namespace {
typedef WTF::HashMap<int, int> IntHashMap;
TEST(HashMapTest, IteratorComparison)
{
IntHashMap map;
map.add(1, 2);
EXPECT_TRUE(map.begin() != map.end());
EXPECT_FALSE(map.begin() == map.end());
IntHashMap::const_iterator begin = map.begin();
EXPECT_TRUE(begin == map.begin());
EXPECT_TRUE(map.begin() == begin);
EXPECT_TRUE(begin != map.end());
EXPECT_TRUE(map.end() != begin);
EXPECT_FALSE(begin != map.begin());
EXPECT_FALSE(map.begin() != begin);
EXPECT_FALSE(begin == map.end());
EXPECT_FALSE(map.end() == begin);
}
struct TestDoubleHashTraits : HashTraits<double> {
static const unsigned minimumTableSize = 8;
};
typedef HashMap<double, int64_t, DefaultHash<double>::Hash, TestDoubleHashTraits> DoubleHashMap;
static int bucketForKey(double key)
{
return DefaultHash<double>::Hash::hash(key) & (TestDoubleHashTraits::minimumTableSize - 1);
}
TEST(HashMapTest, DoubleHashCollisions)
{
// The "clobber" key here is one that ends up stealing the bucket that the -0 key
// originally wants to be in. This makes the 0 and -0 keys collide and the test then
// fails unless the FloatHash::equals() implementation can distinguish them.
const double clobberKey = 6;
const double zeroKey = 0;
const double negativeZeroKey = -zeroKey;
DoubleHashMap map;
map.add(clobberKey, 1);
map.add(zeroKey, 2);
map.add(negativeZeroKey, 3);
EXPECT_EQ(bucketForKey(clobberKey), bucketForKey(negativeZeroKey));
EXPECT_EQ(1, map.get(clobberKey));
EXPECT_EQ(2, map.get(zeroKey));
EXPECT_EQ(3, map.get(negativeZeroKey));
}
class DestructCounter {
public:
explicit DestructCounter(int i, int* destructNumber)
: m_i(i)
, m_destructNumber(destructNumber)
{ }
~DestructCounter() { ++(*m_destructNumber); }
int get() const { return m_i; }
private:
int m_i;
int* m_destructNumber;
};
typedef WTF::HashMap<int, OwnPtr<DestructCounter> > OwnPtrHashMap;
TEST(HashMapTest, OwnPtrAsValue)
{
int destructNumber = 0;
OwnPtrHashMap map;
map.add(1, adoptPtr(new DestructCounter(1, &destructNumber)));
map.add(2, adoptPtr(new DestructCounter(2, &destructNumber)));
DestructCounter* counter1 = map.get(1);
EXPECT_EQ(1, counter1->get());
DestructCounter* counter2 = map.get(2);
EXPECT_EQ(2, counter2->get());
EXPECT_EQ(0, destructNumber);
for (OwnPtrHashMap::iterator iter = map.begin(); iter != map.end(); ++iter) {
OwnPtr<DestructCounter>& ownCounter = iter->value;
EXPECT_EQ(iter->key, ownCounter->get());
}
ASSERT_EQ(0, destructNumber);
OwnPtr<DestructCounter> ownCounter1 = map.take(1);
EXPECT_EQ(ownCounter1.get(), counter1);
EXPECT_FALSE(map.contains(1));
EXPECT_EQ(0, destructNumber);
map.remove(2);
EXPECT_FALSE(map.contains(2));
EXPECT_EQ(0UL, map.size());
EXPECT_EQ(1, destructNumber);
ownCounter1.clear();
EXPECT_EQ(2, destructNumber);
}
class DummyRefCounted: public WTF::RefCounted<DummyRefCounted> {
public:
DummyRefCounted(bool& isDeleted) : m_isDeleted(isDeleted) { m_isDeleted = false; }
~DummyRefCounted()
{
ASSERT(!m_isDeleted);
m_isDeleted = true;
}
void ref()
{
ASSERT(!m_isDeleted);
WTF::RefCounted<DummyRefCounted>::ref();
++m_refInvokesCount;
}
void deref()
{
ASSERT(!m_isDeleted);
WTF::RefCounted<DummyRefCounted>::deref();
}
static int m_refInvokesCount;
private:
bool& m_isDeleted;
};
int DummyRefCounted::m_refInvokesCount = 0;
TEST(HashMapTest, RefPtrAsKey)
{
bool isDeleted = false;
DummyRefCounted::m_refInvokesCount = 0;
RefPtr<DummyRefCounted> ptr = adoptRef(new DummyRefCounted(isDeleted));
EXPECT_EQ(0, DummyRefCounted::m_refInvokesCount);
HashMap<RefPtr<DummyRefCounted>, int> map;
map.add(ptr, 1);
// Referenced only once (to store a copy in the container).
EXPECT_EQ(1, DummyRefCounted::m_refInvokesCount);
EXPECT_EQ(1, map.get(ptr));
DummyRefCounted* rawPtr = ptr.get();
EXPECT_TRUE(map.contains(rawPtr));
EXPECT_NE(map.end(), map.find(rawPtr));
EXPECT_TRUE(map.contains(ptr));
EXPECT_NE(map.end(), map.find(ptr));
EXPECT_EQ(1, DummyRefCounted::m_refInvokesCount);
ptr.clear();
EXPECT_FALSE(isDeleted);
map.remove(rawPtr);
EXPECT_EQ(1, DummyRefCounted::m_refInvokesCount);
EXPECT_TRUE(isDeleted);
EXPECT_TRUE(map.isEmpty());
}
TEST(HashMaptest, RemoveAdd)
{
DummyRefCounted::m_refInvokesCount = 0;
bool isDeleted = false;
typedef HashMap<int, RefPtr<DummyRefCounted>> Map;
Map map;
RefPtr<DummyRefCounted> ptr = adoptRef(new DummyRefCounted(isDeleted));
EXPECT_EQ(0, DummyRefCounted::m_refInvokesCount);
map.add(1, ptr);
// Referenced only once (to store a copy in the container).
EXPECT_EQ(1, DummyRefCounted::m_refInvokesCount);
EXPECT_EQ(ptr, map.get(1));
ptr.clear();
EXPECT_FALSE(isDeleted);
map.remove(1);
EXPECT_EQ(1, DummyRefCounted::m_refInvokesCount);
EXPECT_TRUE(isDeleted);
EXPECT_TRUE(map.isEmpty());
// Add and remove until the deleted slot is reused.
for (int i = 1; i < 100; i++) {
bool isDeleted2 = false;
RefPtr<DummyRefCounted> ptr2 = adoptRef(new DummyRefCounted(isDeleted2));
map.add(i, ptr2);
EXPECT_FALSE(isDeleted2);
ptr2.clear();
EXPECT_FALSE(isDeleted2);
map.remove(i);
EXPECT_TRUE(isDeleted2);
}
}
class SimpleClass {
public:
explicit SimpleClass(int v) : m_v(v) { }
int v() { return m_v; }
private:
int m_v;
};
typedef HashMap<int, OwnPtr<SimpleClass> > IntSimpleMap;
TEST(HashMapTest, AddResult)
{
IntSimpleMap map;
IntSimpleMap::AddResult result = map.add(1, nullptr);
EXPECT_TRUE(result.isNewEntry);
EXPECT_EQ(1, result.storedValue->key);
EXPECT_EQ(0, result.storedValue->value.get());
SimpleClass* simple1 = new SimpleClass(1);
result.storedValue->value = adoptPtr(simple1);
EXPECT_EQ(simple1, map.get(1));
IntSimpleMap::AddResult result2 = map.add(1, adoptPtr(new SimpleClass(2)));
EXPECT_FALSE(result2.isNewEntry);
EXPECT_EQ(1, map.get(1)->v());
}
} // namespace