long2ptr_tests.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:6k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #include "./map_spec_tests.h"
  36. #include "chxmaplongtoobj.h"
  37. #include "hx_ut_debug.h"
  38. #include "./kv_store.h"
  39. #include "./hxlist.h"
  40. #include "./find_match.h"
  41. template<>
  42. class MapSpecificTests<CHXMapLongToObj>
  43. {
  44.  public:
  45.     bool operator()();
  46. private:
  47.     bool TestIterator();
  48.     bool TestIterator2();
  49.     bool TestGetStartPosition();
  50.     bool TestGetNextAssoc();
  51. };
  52. bool MapSpecificTests<CHXMapLongToObj>::operator() ()
  53. {
  54.     bool ret = (TestIterator() &&
  55. TestIterator2() &&
  56. TestGetStartPosition() &&
  57. TestGetNextAssoc());
  58.     DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapLongToObj> : %dn",
  59.        ret));
  60.     return ret;
  61. }
  62. bool MapSpecificTests<CHXMapLongToObj>::TestIterator()
  63. {
  64.     bool ret = true;
  65.     CHXMapLongToObj map;
  66.     KeyValueStore<LONG32, void*> store;
  67.     for (int i = 0; i < 10; i++)
  68. store.Create(i);
  69.     for (int j = 0; j < store.GetCount(); j++)
  70. map.SetAt(store.GetKey(j), store.GetValue(j));
  71.     CHXMapLongToObj::Iterator itr = map.Begin();
  72.     HLXList<int> matchList;
  73.     for (; ret && (itr != map.End()); ++itr)
  74.     {
  75. int index = 0;
  76. if (FindMatch<LONG32, void*>()(store, itr.get_key(), *itr, index))
  77. {
  78.     if (!matchList.Find(index))
  79. matchList.AddTail(index);
  80.     else
  81. ret = false;
  82. }
  83. else
  84.     ret = false;
  85.     }
  86.     if (ret)
  87. ret = (matchList.GetCount() == map.GetCount());
  88.     return ret;
  89. }
  90. bool MapSpecificTests<CHXMapLongToObj>::TestIterator2()
  91. {
  92.     // This test is the same as TestIterator() except that
  93.     // it uses the default constructor of the iterator.
  94.     bool ret = true;
  95.     CHXMapLongToObj map;
  96.     KeyValueStore<LONG32, void*> store;
  97.     for (int i = 0; i < 10; i++)
  98. store.Create(i);
  99.     for (int j = 0; j < store.GetCount(); j++)
  100. map.SetAt(store.GetKey(j), store.GetValue(j));
  101.     CHXMapLongToObj::Iterator itr;
  102.     HLXList<int> matchList;
  103.     for (itr  = map.Begin(); ret && (itr != map.End()); ++itr)
  104.     {
  105. int index = 0;
  106. if (FindMatch<LONG32, void*>()(store, itr.get_key(), *itr, index))
  107. {
  108.     if (!matchList.Find(index))
  109. matchList.AddTail(index);
  110.     else
  111. ret = false;
  112. }
  113. else
  114.     ret = false;
  115.     }
  116.     if (ret)
  117. ret = (matchList.GetCount() == map.GetCount());
  118.     return ret;
  119. }
  120. bool MapSpecificTests<CHXMapLongToObj>::TestGetStartPosition()
  121. {
  122.     bool ret = false;
  123.     CHXMapLongToObj map;
  124.     POSITION pos = map.GetStartPosition();
  125.     if (!pos)
  126.     {
  127. KeyValueStore<LONG32, void*> store;
  128. store.Create(0);
  129. map.SetAt(store.GetKey(0), store.GetValue(0));
  130. pos = map.GetStartPosition();
  131. if (pos)
  132.     ret = true;
  133. else
  134. {
  135.     DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapLongToObj>::TestGetStartPosition() : pos NULL for a non-empty mapn"));
  136. }
  137.     }
  138.     else
  139.     {
  140. DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapLongToObj>::TestGetStartPosition() : pos not NULL for an empty mapn"));
  141.     }
  142.     return ret;
  143. }
  144. bool MapSpecificTests<CHXMapLongToObj>::TestGetNextAssoc()
  145. {
  146.     bool ret = true;
  147.     CHXMapLongToObj map;
  148.     KeyValueStore<LONG32, void*> store;
  149.     for (int i = 0; i < 10; i++)
  150. store.Create(i);
  151.     for (int j = 0; j < store.GetCount(); j++)
  152. map.SetAt(store.GetKey(j), store.GetValue(j));
  153.     POSITION pos = map.GetStartPosition();
  154.     HLXList<int> matchList;
  155.     while (ret && pos)
  156.     {
  157. LONG32 key = 0;
  158. void* value = 0;
  159. int index = 0;
  160. map.GetNextAssoc(pos, key, value);
  161. if (!FindMatch<LONG32, void*>()(store, key, value, index))
  162. {
  163.     DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapLongToObj>::TestGetNextAssoc() : failed to find the key/value pairn"));
  164.     
  165.     ret = false;
  166. }
  167. else if (matchList.Find(index))
  168. {
  169.     DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapLongToObj>::TestGetNextAssoc() : Item %d already visitedn", index));
  170.     ret = false;
  171. }
  172. else
  173.     matchList.AddTail(index);
  174.     }
  175.     if (ret && (matchList.GetCount() != map.GetCount()))
  176.     {
  177. DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapLongToObj>::TestGetNextAssoc() : items visited count doesn't match map item countn"));
  178. ret = false;
  179.     }
  180.     
  181.     return ret;
  182. }