/*********************************************************************************** test_hash_map.cpp * Copyright (c) 1997 * Mark of the Unicorn, Inc. * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee, * provided that the above copyright notice appear in all copies and * that both that copyright notice and this permission notice appear * in supporting documentation. Mark of the Unicorn makes no * representations about the suitability of this software for any * purpose. It is provided "as is" without express or implied warranty. ***********************************************************************************/ #include "Tests.h" #if defined( EH_HASHED_CONTAINERS_IMPLEMENTED ) #include "TestClass.h" #include "LeakCheck.h" # include #include "test_construct.h" #include "test_assign_op.h" #include "test_push_back.h" #include "test_insert.h" #include "test_push_front.h" #include "ThrowCompare.h" #include "test_hash_resize.h" /* template struct pair; template struct __hashtable_node >; template class hash_map; template class hash_multimap; */ typedef EH_STD::__hash_multimap__ TestMultiMap; inline multimap_tag container_category(const TestMultiMap&) { return multimap_tag(); } void test_hash_multimap() { # if !(defined (_MSC_VER) && (_MSC_VER < 1100)) TestMultiMap testMultiMap, testMultiMap2; const size_t hash_mapSize = random_number(random_base); while ( testMultiMap.size() < hash_mapSize ) { TestMultiMap::value_type x; testMultiMap.insert( x ); testMultiMap2.insert( TestMultiMap::value_type() ); } # if defined( EH_HASH_CONTAINERS_SUPPORT_RESIZE ) WeakCheck( testMultiMap, test_hash_resize() ); // TestMultiMap == TestMultiMap: no such operator! - ptr // StrongCheck( testMultiMap, test_insert_noresize(testMultiMap) ); # endif WeakCheck( testMultiMap, test_insert_value(testMultiMap) ); size_t insCnt = random_number(random_base); TestMultiMap::value_type *insFirst = new TestMultiMap::value_type[1+insCnt]; WeakCheck( testMultiMap, insert_range_tester(testMultiMap, insFirst, insFirst+insCnt) ); ConstCheck( 0, test_construct_pointer_range(insFirst, insFirst+insCnt) ); delete[] insFirst; WeakCheck( testMultiMap, insert_range_tester(testMultiMap, testMultiMap2.begin(), testMultiMap2.end() ) ); ConstCheck( 0, test_default_construct() ); # if EH_HASH_CONTAINERS_SUPPORT_ITERATOR_CONSTRUCTION ConstCheck( 0, test_construct_iter_range_n( testMultiMap2 ) ); # endif ConstCheck( testMultiMap, test_copy_construct() ); WeakCheck( testMultiMap, test_assign_op( testMultiMap2 ) ); # endif } typedef EH_STD::__hash_map__ TestMap; inline map_tag container_category(const TestMap&) { return map_tag(); } void test_hash_map() { # if !(defined (_MSC_VER) && (_MSC_VER < 1100)) TestMap testMap, testMap2; const size_t hash_mapSize = random_number(random_base); while ( testMap.size() < hash_mapSize ) { TestMap::value_type x; testMap.insert( x ); testMap2.insert( TestMap::value_type() ); } #if defined( EH_HASH_CONTAINERS_SUPPORT_RESIZE ) WeakCheck( testMap, test_hash_resize() ); // TestMultiMap == TestMultiMap: no such operator! - ptr // StrongCheck( testMap, test_insert_noresize(testMap) ); #endif WeakCheck( testMap, test_insert_value(testMap) ); size_t insCnt = random_number(random_base); TestMap::value_type *insFirst = new TestMap::value_type[1+insCnt]; WeakCheck( testMap, insert_range_tester(testMap, insFirst, insFirst+insCnt) ); ConstCheck( 0, test_construct_pointer_range(insFirst, insFirst+insCnt) ); delete[] insFirst; WeakCheck( testMap, insert_range_tester(testMap, testMap2.begin(), testMap2.end() ) ); ConstCheck( 0, test_default_construct() ); # if EH_HASH_CONTAINERS_SUPPORT_ITERATOR_CONSTRUCTION ConstCheck( 0, test_construct_iter_range_n( testMap2 ) ); # endif ConstCheck( testMap, test_copy_construct() ); WeakCheck( testMap, test_assign_op( testMap2 ) ); # endif } #endif // EH_HASHED_CONTAINERS_IMPLEMENTED