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

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 "hxguidmap.h"
  37. #include "chxmapguidtoobj.h"
  38. #include "hx_ut_debug.h"
  39. #include "./hxlist.h"
  40. #include "./kv_store.h"
  41. #include "./find_match.h"
  42. template<>
  43. class MapSpecificTests<CHXMapGUIDToObj>
  44. {
  45.  public:
  46.     bool operator()();
  47. private:
  48.     bool TestIterator();
  49.     bool TestIterator2();
  50.     bool TestGetStartPosition();
  51.     bool TestGetNextAssoc();
  52. };
  53. bool MapSpecificTests<CHXMapGUIDToObj>::operator() ()
  54. {
  55.     bool ret = (TestIterator() &&
  56. TestIterator2() &&
  57. TestGetStartPosition() &&
  58. TestGetNextAssoc());
  59.     DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapGUIDToObj> : %dn",
  60.        ret));
  61.     return ret;
  62. }
  63. bool MapSpecificTests<CHXMapGUIDToObj>::TestIterator()
  64. {
  65.     bool ret = true;
  66.     CHXMapGUIDToObj map;
  67.     KeyValueStore<GUID, void*> store;
  68.     for (int i = 0; i < 10; i++)
  69. store.Create(i);
  70.     for (int j = 0; j < store.GetCount(); j++)
  71. map.SetAt(store.GetKey(j), store.GetValue(j));
  72.     CHXMapGUIDToObj::Iterator itr = map.Begin(); 
  73.     HLXList<int> matchList;
  74.     for (; ret && (itr != map.End()); ++itr)
  75.     {
  76. int index = 0;
  77. if (!FindMatch<GUID, void*>()(store, *itr.get_key(), *itr, index))
  78. {
  79.     DPRINTF (D_ERROR,
  80.      ("MapSpecificTests<CHXMapGUIDToObj>::TestIterator() : Failed to find key/value pairn"));
  81.     ret = false;
  82. }
  83. else if (matchList.Find(index))
  84. {
  85.     DPRINTF (D_ERROR,
  86.      ("MapSpecificTests<CHXMapGUIDToObj>::TestIterator() : Index already in match listn"));
  87.     ret = false;
  88. }
  89. else
  90. {
  91.     matchList.AddTail(index);
  92. }
  93.     }
  94.     if (ret && (matchList.GetCount() != map.GetCount()))
  95.     {
  96. DPRINTF (D_ERROR,
  97.  ("MapSpecificTests<CHXMapGUIDToObj>::TestIterator() : match list count does not match map countn"));
  98. ret = false;
  99.     }
  100.     return ret;
  101. }
  102. bool MapSpecificTests<CHXMapGUIDToObj>::TestIterator2()
  103. {
  104.     // This test is the same as TestIterator() except that
  105.     // it uses the default constructor of the iterator.
  106.     bool ret = true;
  107.     CHXMapGUIDToObj map;
  108.     KeyValueStore<GUID, void*> store;
  109.     for (int i = 0; i < 10; i++)
  110. store.Create(i);
  111.     for (int j = 0; j < store.GetCount(); j++)
  112. map.SetAt(store.GetKey(j), store.GetValue(j));
  113.     CHXMapGUIDToObj::Iterator itr; 
  114.     HLXList<int> matchList;
  115.     for (itr = map.Begin(); ret && (itr != map.End()); ++itr)
  116.     {
  117. int index = 0;
  118. if (!FindMatch<GUID, void*>()(store, *itr.get_key(), *itr, index))
  119. {
  120.     DPRINTF (D_ERROR,
  121.      ("MapSpecificTests<CHXMapGUIDToObj>::TestIterator2() : Failed to find key/value pairn"));
  122.     ret = false;
  123. }
  124. else if (matchList.Find(index))
  125. {
  126.     DPRINTF (D_ERROR,
  127.      ("MapSpecificTests<CHXMapGUIDToObj>::TestIterator2() : Index already in match listn"));
  128.     ret = false;
  129. }
  130. else
  131. {
  132.     matchList.AddTail(index);
  133. }
  134.     }
  135.     if (ret && (matchList.GetCount() != map.GetCount()))
  136.     {
  137. DPRINTF (D_ERROR,
  138.  ("MapSpecificTests<CHXMapGUIDToObj>::TestIterator2() : match list count does not match map countn"));
  139. ret = false;
  140.     }
  141.     return ret;
  142. }
  143. bool MapSpecificTests<CHXMapGUIDToObj>::TestGetStartPosition()
  144. {
  145.     bool ret = false;
  146.     CHXMapGUIDToObj map;
  147.     POSITION pos = map.GetStartPosition();
  148.     if (!pos)
  149.     {
  150. KeyValueStore<GUID, void*> store;
  151. store.Create(0);
  152. map.SetAt(store.GetKey(0), store.GetValue(0));
  153. pos = map.GetStartPosition();
  154. if (pos)
  155.     ret = true;
  156. else
  157. {
  158.     DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapGUIDToObj>::TestGetStartPosition() : pos NULL for a non-empty mapn"));
  159. }
  160.     }
  161.     else
  162.     {
  163. DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapGUIDToObj>::TestGetStartPosition() : pos not NULL for an empty mapn"));
  164.     }
  165.     return ret;
  166. }
  167. bool MapSpecificTests<CHXMapGUIDToObj>::TestGetNextAssoc()
  168. {
  169.     bool ret = true;
  170.     CHXMapGUIDToObj map;
  171.     KeyValueStore<GUID, void*> store;
  172.     for (int i = 0; i < 10; i++)
  173. store.Create(i);
  174.     for (int j = 0; j < store.GetCount(); j++)
  175. map.SetAt(store.GetKey(j), store.GetValue(j));
  176. #ifdef DO_MAP_DUMP
  177.     map.Dump();
  178. #endif /* DO_MAP_DUMP */
  179.     POSITION pos = map.GetStartPosition();
  180.     HLXList<int> matchList;
  181.     while (ret && pos)
  182.     {
  183. GUID* pKey;
  184. void* value = 0;
  185. int index = 0;
  186. map.GetNextAssoc(pos, pKey, value);
  187. if (!FindMatch<GUID, void*>()(store, *pKey, value, index))
  188. {
  189.     DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapGUIDToObj>::TestGetNextAssoc() : failed to find the key/value pairn"));
  190.     
  191.     ret = false;
  192. }
  193. else if (matchList.Find(index))
  194. {
  195.     DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapGUIDToObj>::TestGetNextAssoc() : Item %d already visitedn", index));
  196.     ret = false;
  197. }
  198. else
  199.     matchList.AddTail(index);
  200.     }
  201.     if (ret && (matchList.GetCount() != map.GetCount()))
  202.     {
  203. DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapGUIDToObj>::TestGetNextAssoc() : items visited count doesn't match map item countn"));
  204. ret = false;
  205.     }
  206.     
  207.     
  208.     return ret;
  209. }