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

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 "chxmapstringtoob.h"
  37. #include "hx_ut_debug.h"
  38. #include "./hxlist.h"
  39. #include "./kv_store.h"
  40. #include "./find_match.h"
  41. template<>
  42. class MapSpecificTests<CHXMapStringToOb>
  43. {
  44. public:
  45.     bool operator()();
  46. private:
  47.     bool TestIterator();
  48.     bool TestIterator2();
  49.     bool TestGetStartPosition();
  50.     bool TestGetNextAssoc();
  51.     bool TestSetCaseSensitive();
  52. };
  53. bool MapSpecificTests<CHXMapStringToOb>::operator() ()
  54. {
  55.     bool ret = (TestIterator() &&
  56. TestIterator2() &&
  57. TestGetStartPosition() &&
  58. TestGetNextAssoc() &&
  59. TestSetCaseSensitive());
  60.     DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapStringToOb> : %dn",
  61.        ret));
  62.     return ret;
  63. }
  64. bool MapSpecificTests<CHXMapStringToOb>::TestIterator()
  65. {
  66.     bool ret = true;
  67.     CHXMapStringToOb map;
  68.     KeyValueStore<CHXString, void*> store;
  69.     for (int i = 0; i < 10; i++)
  70. store.Create(i);
  71.     for (int j = 0; j < store.GetCount(); j++)
  72. map.SetAt(store.GetKey(j), store.GetValue(j));
  73.     CHXMapStringToOb::Iterator itr = map.Begin();
  74.     HLXList<int> matchList;
  75.     for (; ret && (itr != map.End()); ++itr)
  76.     {
  77. int index = 0;
  78. if (FindMatch<CHXString, void*>()(store, itr.get_key(), *itr, index))
  79. {
  80.     if (!matchList.Find(index))
  81. matchList.AddTail(index);
  82.     else
  83. ret = false;
  84. }
  85. else
  86.     ret = false;
  87.     }
  88.     if (ret)
  89. ret = (matchList.GetCount() == map.GetCount());
  90.     return ret;
  91. }
  92. bool MapSpecificTests<CHXMapStringToOb>::TestIterator2()
  93. {
  94.     // This test is the same as TestIterator() except that
  95.     // it uses the default constructor of the iterator.
  96.     bool ret = true;
  97.     CHXMapStringToOb map;
  98.     KeyValueStore<CHXString, void*> store;
  99.     for (int i = 0; i < 10; i++)
  100. store.Create(i);
  101.     for (int j = 0; j < store.GetCount(); j++)
  102. map.SetAt(store.GetKey(j), store.GetValue(j));
  103.     CHXMapStringToOb::Iterator itr;
  104.     HLXList<int> matchList;
  105.     for (itr = map.Begin(); ret && (itr != map.End()); ++itr)
  106.     {
  107. int index = 0;
  108. if (FindMatch<CHXString, void*>()(store, itr.get_key(), *itr, index))
  109. {
  110.     if (!matchList.Find(index))
  111. matchList.AddTail(index);
  112.     else
  113. ret = false;
  114. }
  115. else
  116.     ret = false;
  117.     }
  118.     if (ret)
  119. ret = (matchList.GetCount() == map.GetCount());
  120.     return ret;
  121. }
  122. bool MapSpecificTests<CHXMapStringToOb>::TestGetStartPosition()
  123. {
  124.     bool ret = false;
  125.     CHXMapStringToOb map;
  126.     POSITION pos = map.GetStartPosition();
  127.     if (!pos)
  128.     {
  129. KeyValueStore<CHXString, void*> store;
  130. store.Create(0);
  131. map.SetAt(store.GetKey(0), store.GetValue(0));
  132. pos = map.GetStartPosition();
  133. if (pos)
  134.     ret = true;
  135. else
  136. {
  137.     DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapStringToOb>::TestGetStartPosition() : pos NULL for a non-empty mapn"));
  138. }
  139.     }
  140.     else
  141.     {
  142. DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapStringToOb>::TestGetStartPosition() : pos not NULL for an empty mapn"));
  143.     }
  144.     return ret;
  145. }
  146. bool MapSpecificTests<CHXMapStringToOb>::TestGetNextAssoc()
  147. {
  148.     bool ret = true;
  149.     CHXMapStringToOb map;
  150.     KeyValueStore<CHXString, void*> store;
  151.     for (int i = 0; i < 10; i++)
  152. store.Create(i);
  153.     for (int j = 0; j < store.GetCount(); j++)
  154. map.SetAt(store.GetKey(j), store.GetValue(j));
  155.     POSITION pos = map.GetStartPosition();
  156.     HLXList<int> matchList;
  157.     while (ret && pos)
  158.     {
  159. CHXString key;
  160. const char* pKey;
  161. void* value = 0;
  162. int index = 0;
  163. POSITION tmpPos = pos;
  164. map.GetNextAssoc(tmpPos, key, value);
  165. map.GetNextAssoc(pos, pKey, value);
  166. if (tmpPos != pos)
  167. {
  168.     DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapStringToOb>::TestGetNextAssoc() : The two versions of GetNextAssoc() do not return the same positionn"));
  169.     ret = false;
  170. }
  171. else if (key != pKey)
  172. {
  173.     DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapStringToOb>::TestGetNextAssoc() : The two versions of GetNextAssoc() do not return the same keyn"));
  174.     ret = false;
  175. }
  176. if (!FindMatch<CHXString, void*>()(store, key, value, index))
  177. {
  178.     DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapStringToOb>::TestGetNextAssoc() : failed to find the key/value pairn"));
  179.     
  180.     ret = false;
  181. }
  182. if (matchList.Find(index))
  183. {
  184.     DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapStringToOb>::TestGetNextAssoc() : Item %d already visitedn", index));
  185.     ret = false;
  186. }
  187. else
  188.     matchList.AddTail(index);
  189.     }
  190.     if (ret && (matchList.GetCount() != map.GetCount()))
  191.     {
  192. DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapStringToOb>::TestGetNextAssoc() : items visited count doesn't match map item countn"));
  193. ret = false;
  194.     }
  195.     
  196.     return ret;
  197. }
  198. bool MapSpecificTests<CHXMapStringToOb>::TestSetCaseSensitive()
  199. {
  200.     bool ret = true;
  201.     CHXMapStringToOb map;
  202.     struct StrToObTestData 
  203.     {
  204. const char* m_pKey;
  205. bool m_success;
  206. int m_value;
  207.     };
  208.     struct StrToObTestData testData[] = {
  209.     {"aaron", true  , 0},
  210.     {"Aaron", false , 0},
  211.     {"Craig", false , 1},
  212.     {"craig", false , 1},
  213.     {"cRaig", true  , 1},
  214.     {"HeLiX", true  , 2},
  215.     {"HELIX", false , 2},
  216.     {"helix", false , 2},
  217.     {"heLIX", false , 2}
  218.     };
  219.     int testCount = sizeof(testData) / sizeof(struct StrToObTestData);
  220.     map.SetAt("aaron", (void*)0);
  221.     map.SetAt("cRaig", (void*)1);
  222.     map.SetAt("HeLiX", (void*)2);
  223.     
  224.     for (int i = 0; ret && (i < testCount); i++)
  225.     {
  226. void* value = 0;
  227. bool result = (map.Lookup(testData[i].m_pKey, value) == TRUE);
  228. if (result != testData[i].m_success)
  229. {
  230.     DPRINTF(D_ERROR, ("MapSpecificTests<CHXMapStringToOb>::TestSetCaseSensitive() : Test %d lookup got %d expected %dn",
  231.       i,
  232.       result,
  233.       testData[i].m_success));
  234.     ret = false;
  235. }
  236. else if (result && ((int)value != testData[i].m_value))
  237. {
  238.     DPRINTF(D_ERROR, ("MapSpecificTests<CHXMapStringToOb>::TestSetCaseSensitive() : Test %d value got %d expected %dn",
  239.       i,
  240.       (int)value,
  241.       testData[i].m_value));
  242.     ret = false;
  243. }
  244.     }
  245.     if (ret)
  246.     {
  247. map.RemoveAll();
  248. map.SetCaseSensitive(false);
  249. map.SetAt("aaron", (void*)0);
  250. map.SetAt("cRaig", (void*)1);
  251. map.SetAt("HeLiX", (void*)2);
  252. #ifdef DO_MAP_DUMP
  253.         map.Dump();
  254. #endif /* DO_MAP_DUMP */
  255. for (int j = 0; ret && (j < testCount); j++)
  256. {
  257.     void* value = 0;
  258.     bool result = (map.Lookup(testData[j].m_pKey, value) == TRUE);
  259.             if (!result)
  260.     {
  261. DPRINTF(D_ERROR, ("MapSpecificTests<CHXMapStringToOb>::TestSetCaseSensitive() : Test %d lookup failedn",
  262.   j));
  263. ret = false;
  264.     }
  265.     else if ((int)value != testData[j].m_value)
  266.     {
  267. DPRINTF(D_ERROR, ("MapSpecificTests<CHXMapStringToOb>::TestSetCaseSensitive() : Test %d value got %d expected %dn",
  268.   j,
  269.   (int)value,
  270.   testData[j].m_value));
  271. ret = false;
  272.     }
  273. }
  274.     }
  275.     return ret;
  276. }