1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/hashes/hashes.cpp
3 // Purpose: wxHashTable, wxHashMap, wxHashSet unit test
4 // Author: Vadim Zeitlin, Mattia Barbon
5 // Modified: Mike Wetherell
8 // Copyright: (c) 2004 Vadim Zeitlin, Mattia Barbon, 2005 M. Wetherell
9 ///////////////////////////////////////////////////////////////////////////////
11 // ----------------------------------------------------------------------------
13 // ----------------------------------------------------------------------------
26 #include "wx/hashmap.h"
27 #include "wx/hashset.h"
29 #if defined wxLongLong_t && !defined wxLongLongIsLong && \
30 (!defined __VISUALC__ || __VISUALC__ > 1100) // doesn't work on VC5
34 // --------------------------------------------------------------------------
35 // helper class for typed/untyped wxHashTable
36 // --------------------------------------------------------------------------
40 Foo(int n_
) { n
= n_
; count
++; }
48 size_t Foo::count
= 0;
50 struct FooObject
: public wxObject
52 FooObject(int n_
) { n
= n_
; count
++; }
53 ~FooObject() { count
--; }
60 size_t FooObject::count
= 0;
62 // --------------------------------------------------------------------------
64 // --------------------------------------------------------------------------
66 class HashesTestCase
: public CppUnit::TestCase
72 CPPUNIT_TEST_SUITE( HashesTestCase
);
73 CPPUNIT_TEST( wxHashTableTest
);
74 CPPUNIT_TEST( wxUntypedHashTableDeleteContents
);
75 CPPUNIT_TEST( wxTypedHashTableTest
);
76 CPPUNIT_TEST( StringHashMapTest
);
77 CPPUNIT_TEST( PtrHashMapTest
);
78 CPPUNIT_TEST( LongHashMapTest
);
79 CPPUNIT_TEST( ULongHashMapTest
);
80 CPPUNIT_TEST( UIntHashMapTest
);
81 CPPUNIT_TEST( IntHashMapTest
);
82 CPPUNIT_TEST( ShortHashMapTest
);
83 CPPUNIT_TEST( UShortHashMapTest
);
85 CPPUNIT_TEST( LLongHashMapTest
);
86 CPPUNIT_TEST( ULLongHashMapTest
);
88 CPPUNIT_TEST( wxHashSetTest
);
89 CPPUNIT_TEST_SUITE_END();
91 void wxHashTableTest();
92 void wxUntypedHashTableDeleteContents();
93 void wxTypedHashTableTest();
94 void StringHashMapTest();
95 void PtrHashMapTest();
96 void LongHashMapTest();
97 void ULongHashMapTest();
98 void UIntHashMapTest();
99 void IntHashMapTest();
100 void ShortHashMapTest();
101 void UShortHashMapTest();
103 void LLongHashMapTest();
104 void ULLongHashMapTest();
106 void wxHashSetTest();
108 DECLARE_NO_COPY_CLASS(HashesTestCase
)
111 // register in the unnamed registry so that these tests are run by default
112 CPPUNIT_TEST_SUITE_REGISTRATION( HashesTestCase
);
114 // also include in it's own registry so that these tests can be run alone
115 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( HashesTestCase
, "HashesTestCase" );
117 void HashesTestCase::wxHashTableTest()
119 const int COUNT
= 100;
122 wxHashTable
hash(wxKEY_INTEGER
, 10), hash2(wxKEY_STRING
);
126 for ( i
= 0; i
< COUNT
; ++i
)
130 wxHashTable::compatibility_iterator it
= hash
.Next();
139 CPPUNIT_ASSERT( i
== COUNT
);
141 for ( i
= 99; i
>= 0; --i
)
142 CPPUNIT_ASSERT( hash
.Get(i
) == &o
+ i
);
144 for ( i
= 0; i
< COUNT
; ++i
)
145 hash
.Put(i
, &o
+ i
+ 20);
147 for ( i
= 99; i
>= 0; --i
)
148 CPPUNIT_ASSERT( hash
.Get(i
) == &o
+ i
);
150 for ( i
= 0; i
< COUNT
/2; ++i
)
151 CPPUNIT_ASSERT( hash
.Delete(i
) == &o
+ i
);
153 for ( i
= COUNT
/2; i
< COUNT
; ++i
)
154 CPPUNIT_ASSERT( hash
.Get(i
) == &o
+ i
);
156 for ( i
= 0; i
< COUNT
/2; ++i
)
157 CPPUNIT_ASSERT( hash
.Get(i
) == &o
+ i
+ 20);
159 for ( i
= 0; i
< COUNT
/2; ++i
)
160 CPPUNIT_ASSERT( hash
.Delete(i
) == &o
+ i
+ 20);
162 for ( i
= 0; i
< COUNT
/2; ++i
)
163 CPPUNIT_ASSERT( hash
.Get(i
) == NULL
);
165 hash2
.Put(wxT("foo"), &o
+ 1);
166 hash2
.Put(wxT("bar"), &o
+ 2);
167 hash2
.Put(wxT("baz"), &o
+ 3);
169 CPPUNIT_ASSERT(hash2
.Get(wxT("moo")) == NULL
);
170 CPPUNIT_ASSERT(hash2
.Get(wxT("bar")) == &o
+ 2);
172 hash2
.Put(wxT("bar"), &o
+ 0);
174 CPPUNIT_ASSERT(hash2
.Get(wxT("bar")) == &o
+ 2);
177 // and now some corner-case testing; 3 and 13 hash to the same bucket
179 wxHashTable
hash(wxKEY_INTEGER
, 10);
185 CPPUNIT_ASSERT(hash
.Get(3) == NULL
);
188 hash
.Put(13, &dummy
);
191 CPPUNIT_ASSERT(hash
.Get(3) == NULL
);
195 CPPUNIT_ASSERT(hash
.Get(13) == NULL
);
198 hash
.Put(13, &dummy
);
201 CPPUNIT_ASSERT(hash
.Get(13) == NULL
);
205 CPPUNIT_ASSERT(hash
.Get(3) == NULL
);
208 // test for key + value access (specifically that supplying either
209 // wrong key or wrong value returns NULL)
211 wxHashTable
hash(wxKEY_INTEGER
, 10);
214 hash
.Put(3, 7, &dummy
+ 7);
215 hash
.Put(4, 8, &dummy
+ 8);
217 CPPUNIT_ASSERT(hash
.Get(7) == NULL
);
218 CPPUNIT_ASSERT(hash
.Get(3, 7) == &dummy
+ 7);
219 CPPUNIT_ASSERT(hash
.Get(4) == NULL
);
220 CPPUNIT_ASSERT(hash
.Get(3) == NULL
);
221 CPPUNIT_ASSERT(hash
.Get(8) == NULL
);
222 CPPUNIT_ASSERT(hash
.Get(8, 4) == NULL
);
224 CPPUNIT_ASSERT(hash
.Delete(7) == NULL
);
225 CPPUNIT_ASSERT(hash
.Delete(3) == NULL
);
226 CPPUNIT_ASSERT(hash
.Delete(3, 7) == &dummy
+ 7);
231 void HashesTestCase::wxUntypedHashTableDeleteContents()
233 // need a nested scope for destruction
236 hash
.DeleteContents(true);
238 CPPUNIT_ASSERT( hash
.GetCount() == 0 );
239 CPPUNIT_ASSERT( FooObject::count
== 0 );
241 static const int hashTestData
[] =
243 0, 1, 17, -2, 2, 4, -4, 345, 3, 3, 2, 1,
247 for ( n
= 0; n
< WXSIZEOF(hashTestData
); n
++ )
249 hash
.Put(hashTestData
[n
], n
, new FooObject(n
));
252 CPPUNIT_ASSERT( hash
.GetCount() == WXSIZEOF(hashTestData
) );
253 CPPUNIT_ASSERT( FooObject::count
== WXSIZEOF(hashTestData
) );
255 // delete from hash without deleting object
256 FooObject
* foo
= (FooObject
*)hash
.Delete(0l);
258 CPPUNIT_ASSERT( FooObject::count
== WXSIZEOF(hashTestData
) );
260 CPPUNIT_ASSERT( FooObject::count
== WXSIZEOF(hashTestData
) - 1 );
264 CPPUNIT_ASSERT( FooObject::count
== 0 );
267 WX_DECLARE_HASH(Foo
, wxListFoos
, wxHashFoos
);
269 void HashesTestCase::wxTypedHashTableTest()
271 // need a nested scope for destruction
274 hash
.DeleteContents(true);
276 CPPUNIT_ASSERT( hash
.GetCount() == 0 );
277 CPPUNIT_ASSERT( Foo::count
== 0 );
279 static const int hashTestData
[] =
281 0, 1, 17, -2, 2, 4, -4, 345, 3, 3, 2, 1,
285 for ( n
= 0; n
< WXSIZEOF(hashTestData
); n
++ )
287 hash
.Put(hashTestData
[n
], n
, new Foo(n
));
290 CPPUNIT_ASSERT( hash
.GetCount() == WXSIZEOF(hashTestData
) );
291 CPPUNIT_ASSERT( Foo::count
== WXSIZEOF(hashTestData
) );
293 for ( n
= 0; n
< WXSIZEOF(hashTestData
); n
++ )
295 Foo
*foo
= hash
.Get(hashTestData
[n
], n
);
297 CPPUNIT_ASSERT( foo
!= NULL
);
298 CPPUNIT_ASSERT( foo
->n
== (int)n
);
301 // element not in hash
302 CPPUNIT_ASSERT( hash
.Get(1234) == NULL
);
303 CPPUNIT_ASSERT( hash
.Get(1, 0) == NULL
);
305 // delete from hash without deleting object
306 Foo
* foo
= hash
.Delete(0);
308 CPPUNIT_ASSERT( Foo::count
== WXSIZEOF(hashTestData
) );
310 CPPUNIT_ASSERT( Foo::count
== WXSIZEOF(hashTestData
) - 1 );
314 CPPUNIT_ASSERT( Foo::count
== 0 );
317 // test compilation of basic map types
318 WX_DECLARE_HASH_MAP( int*, int*, wxPointerHash
, wxPointerEqual
, myPtrHashMap
);
319 WX_DECLARE_HASH_MAP( long, long, wxIntegerHash
, wxIntegerEqual
, myLongHashMap
);
320 WX_DECLARE_HASH_MAP( unsigned long, unsigned, wxIntegerHash
, wxIntegerEqual
,
322 WX_DECLARE_HASH_MAP( unsigned int, unsigned, wxIntegerHash
, wxIntegerEqual
,
324 WX_DECLARE_HASH_MAP( int, unsigned, wxIntegerHash
, wxIntegerEqual
,
326 WX_DECLARE_HASH_MAP( short, unsigned, wxIntegerHash
, wxIntegerEqual
,
328 WX_DECLARE_HASH_MAP( unsigned short, unsigned, wxIntegerHash
, wxIntegerEqual
,
332 // WX_DECLARE_HASH_MAP( wxString, wxString, wxStringHash, wxStringEqual,
333 // myStringHashMap );
334 WX_DECLARE_STRING_HASH_MAP(wxString
, myStringHashMap
);
337 WX_DECLARE_HASH_MAP( wxLongLong_t
, wxLongLong_t
,
338 wxIntegerHash
, wxIntegerEqual
, myLLongHashMap
);
339 WX_DECLARE_HASH_MAP( wxULongLong_t
, wxULongLong_t
,
340 wxIntegerHash
, wxIntegerEqual
, myULLongHashMap
);
343 // Helpers to generate a key value pair for item 'i', out of a total of 'count'
344 void MakeKeyValuePair(size_t i
, size_t /*count*/, wxString
& key
, wxString
& val
)
348 val
= wxT("A") + key
+ wxT("C");
351 // for integral keys generate a range of keys that will use all the bits of
353 template <class IntT
, class KeyT
>
354 IntT
MakeKey(size_t i
, size_t count
)
357 max
<<= sizeof(KeyT
) * 8 - 2;
358 max
-= count
/ 4 + 1;
360 return max
/ count
* 4 * i
+ i
/ 3;
363 // make key/value pairs for integer types
364 template <class KeyT
, class ValueT
>
365 void MakeKeyValuePair(size_t i
, size_t count
, KeyT
& key
, ValueT
& value
)
367 key
= MakeKey
<KeyT
, KeyT
>(i
, count
);
368 value
= wx_truncate_cast(ValueT
, key
);
371 // make key/values paris for pointer types
372 template <class T
, class ValueT
>
373 void MakeKeyValuePair(size_t i
, size_t count
, T
*& key
, ValueT
& value
)
375 key
= (T
*)wxUIntToPtr(MakeKey
<wxUIntPtr
, T
*>(i
, count
));
376 value
= wx_truncate_cast(ValueT
, key
);
380 template <class HashMapT
>
383 typedef typename
HashMapT::value_type::second_type value_type
;
384 typedef typename
HashMapT::key_type key_type
;
385 typedef typename
HashMapT::iterator Itor
;
387 HashMapT
sh(0); // as small as possible
391 const size_t count
= 10000;
393 // init with some data
394 for( i
= 0; i
< count
; ++i
)
396 MakeKeyValuePair(i
, count
, buf
, value
);
400 // test that insertion worked
401 CPPUNIT_ASSERT( sh
.size() == count
);
403 for( i
= 0; i
< count
; ++i
)
405 MakeKeyValuePair(i
, count
, buf
, value
);
406 CPPUNIT_ASSERT( sh
[buf
] == value
);
409 // check that iterators work
411 for( i
= 0, it
= sh
.begin(); it
!= sh
.end(); ++it
, ++i
)
413 CPPUNIT_ASSERT( i
!= count
);
414 CPPUNIT_ASSERT( it
->second
== sh
[it
->first
] );
417 CPPUNIT_ASSERT( sh
.size() == i
);
419 // test copy ctor, assignment operator
420 HashMapT
h1( sh
), h2( 0 );
423 for( i
= 0, it
= sh
.begin(); it
!= sh
.end(); ++it
, ++i
)
425 CPPUNIT_ASSERT( h1
[it
->first
] == it
->second
);
426 CPPUNIT_ASSERT( h2
[it
->first
] == it
->second
);
430 for( i
= 0; i
< count
; ++i
)
432 MakeKeyValuePair(i
, count
, buf
, value
);
433 size_t sz
= sh
.size();
435 // test find() and erase(it)
439 CPPUNIT_ASSERT( it
!= sh
.end() );
443 CPPUNIT_ASSERT( sh
.find( buf
) == sh
.end() );
448 size_t c
= sh
.erase( buf
);
449 CPPUNIT_ASSERT( c
== 1 );
450 CPPUNIT_ASSERT( sh
.find( buf
) == sh
.end() );
453 // count should decrease
454 CPPUNIT_ASSERT( sh
.size() == sz
- 1 );
458 void HashesTestCase::StringHashMapTest() { HashMapTest
<myStringHashMap
>(); }
459 void HashesTestCase::PtrHashMapTest() { HashMapTest
<myPtrHashMap
>(); }
460 void HashesTestCase::LongHashMapTest() { HashMapTest
<myLongHashMap
>(); }
461 void HashesTestCase::ULongHashMapTest() { HashMapTest
<myUnsignedHashMap
>(); }
462 void HashesTestCase::UIntHashMapTest() { HashMapTest
<myTestHashMap1
>(); }
463 void HashesTestCase::IntHashMapTest() { HashMapTest
<myTestHashMap2
>(); }
464 void HashesTestCase::ShortHashMapTest() { HashMapTest
<myTestHashMap3
>(); }
465 void HashesTestCase::UShortHashMapTest() { HashMapTest
<myTestHashMap4
>(); }
468 void HashesTestCase::LLongHashMapTest() { HashMapTest
<myLLongHashMap
>(); }
469 void HashesTestCase::ULLongHashMapTest() { HashMapTest
<myULLongHashMap
>(); }
473 #if __VISUALC__ <= 1200
474 #pragma warning(disable:4284) // operator->() returns a non-UDT
476 #endif // __VISUALC__
478 // test compilation of basic set types
479 WX_DECLARE_HASH_SET( int*, wxPointerHash
, wxPointerEqual
, myPtrHashSet
);
480 WX_DECLARE_HASH_SET( long, wxIntegerHash
, wxIntegerEqual
, myLongHashSet
);
481 WX_DECLARE_HASH_SET( unsigned long, wxIntegerHash
, wxIntegerEqual
,
483 WX_DECLARE_HASH_SET( unsigned int, wxIntegerHash
, wxIntegerEqual
,
485 WX_DECLARE_HASH_SET( int, wxIntegerHash
, wxIntegerEqual
,
487 WX_DECLARE_HASH_SET( short, wxIntegerHash
, wxIntegerEqual
,
489 WX_DECLARE_HASH_SET( unsigned short, wxIntegerHash
, wxIntegerEqual
,
491 WX_DECLARE_HASH_SET( wxString
, wxStringHash
, wxStringEqual
,
503 unsigned long operator()(const MyStruct
& s
) const
504 { return m_dummy(s
.ptr
); }
505 MyHash
& operator=(const MyHash
&) { return *this; }
507 wxPointerHash m_dummy
;
513 bool operator()(const MyStruct
& s1
, const MyStruct
& s2
) const
514 { return s1
.ptr
== s2
.ptr
; }
515 MyEqual
& operator=(const MyEqual
&) { return *this; }
518 WX_DECLARE_HASH_SET( MyStruct
, MyHash
, MyEqual
, mySet
);
520 typedef myTestHashSet5 wxStringHashSet
;
522 void HashesTestCase::wxHashSetTest()
524 wxStringHashSet set1
;
526 set1
.insert( wxT("abc") );
528 CPPUNIT_ASSERT( set1
.size() == 1 );
530 set1
.insert( wxT("bbc") );
531 set1
.insert( wxT("cbc") );
533 CPPUNIT_ASSERT( set1
.size() == 3 );
535 set1
.insert( wxT("abc") );
537 CPPUNIT_ASSERT( set1
.size() == 3 );
543 tmp
.ptr
= &dummy
; tmp
.str
= wxT("ABC");
545 tmp
.ptr
= &dummy
+ 1;
547 tmp
.ptr
= &dummy
; tmp
.str
= wxT("CDE");
550 CPPUNIT_ASSERT( set2
.size() == 2 );
552 mySet::iterator it
= set2
.find( tmp
);
554 CPPUNIT_ASSERT( it
!= set2
.end() );
555 CPPUNIT_ASSERT( it
->ptr
== &dummy
);
556 CPPUNIT_ASSERT( it
->str
== wxT("ABC") );