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

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 "chxmapstringtostring.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<CHXMapStringToString>
  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<CHXMapStringToString>::operator() ()
  54. {
  55.     bool ret = (TestIterator() &&
  56. TestIterator2() &&
  57. TestGetStartPosition() &&
  58. TestGetNextAssoc() &&
  59. TestSetCaseSensitive());
  60.     DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapStringToString> : %dn",
  61.        ret));
  62.     return ret;
  63. }
  64. bool MapSpecificTests<CHXMapStringToString>::TestIterator()
  65. {
  66.     bool ret = true;
  67.     CHXMapStringToString map;
  68.     KeyValueStore<CHXString, CHXString> 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.     CHXMapStringToString::Iterator itr = map.Begin();
  74.     HLXList<int> matchList;
  75.     for (; ret && (itr != map.End()); ++itr)
  76.     {
  77. int index = 0;
  78. if (FindMatch<CHXString, CHXString>()(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<CHXMapStringToString>::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.     CHXMapStringToString map;
  98.     KeyValueStore<CHXString, CHXString> 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.     CHXMapStringToString::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, CHXString>()(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<CHXMapStringToString>::TestGetStartPosition()
  123. {
  124.     bool ret = false;
  125.     CHXMapStringToString map;
  126.     POSITION pos = map.GetStartPosition();
  127.     if (!pos)
  128.     {
  129. KeyValueStore<CHXString, CHXString> 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<CHXMapStringToString>::TestGetStartPosition() : pos NULL for a non-empty mapn"));
  138. }
  139.     }
  140.     else
  141.     {
  142. DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapStringToString>::TestGetStartPosition() : pos not NULL for an empty mapn"));
  143.     }
  144.     return ret;
  145. }
  146. bool MapSpecificTests<CHXMapStringToString>::TestGetNextAssoc()
  147. {
  148.     bool ret = true;
  149.     CHXMapStringToString map;
  150.     KeyValueStore<CHXString, CHXString> 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. #ifdef DO_MAP_DUMP
  156.     map.Dump();
  157. #endif /* DO_MAP_DUMP */
  158.     POSITION pos = map.GetStartPosition();
  159.     HLXList<int> matchList;
  160.     while (ret && pos)
  161.     {
  162. CHXString key;
  163. CHXString value;
  164. int index = 0;
  165. map.GetNextAssoc(pos, key, value);
  166. if (!FindMatch<CHXString, CHXString>()(store, key, value, index))
  167. {
  168.     DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapStringToString>::TestGetNextAssoc() : failed to find the key/value pairn"));
  169.     
  170.     ret = false;
  171. }
  172. else if (matchList.Find(index))
  173. {
  174.     DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapStringToString>::TestGetNextAssoc() : Item %d already visitedn", index));
  175.     ret = false;
  176. }
  177. else
  178.     matchList.AddTail(index);
  179.     }
  180.     if (ret && (matchList.GetCount() != map.GetCount()))
  181.     {
  182. DPRINTF (D_ERROR, ("MapSpecificTests<CHXMapStringToString>::TestGetNextAssoc() : items visited count doesn't match map item countn"));
  183. ret = false;
  184.     }
  185.     
  186.     return ret;
  187. }
  188. struct StrToStrTestData 
  189. {
  190.     const char* m_pKey;
  191.     bool m_success;
  192.     const char* m_value;
  193. };
  194. static const StrToStrTestData testData[] = {
  195.     {"aabcd", true  , "efghijk"},
  196.     {"Aabcd", false , "efghijk"},
  197.     {"Abcde", false , "lmnopqr"},
  198.     {"abcde", false , "lmnopqr"},
  199.     {"aBcde", true  , "lmnopqr"},
  200.     {"HeLiX", true  , "Client"},
  201.     {"HELIX", false , "Client"},
  202.     {"helix", false , "Client"},
  203.     {"heLIX", false , "Client"}
  204. };
  205. bool MapSpecificTests<CHXMapStringToString>::TestSetCaseSensitive()
  206. {
  207.     bool ret = true;
  208.     CHXMapStringToString map;
  209.     
  210.     int testCount = sizeof(testData) / sizeof(struct StrToStrTestData);
  211.     map.SetAt("aabcd", "efghijk");
  212.     map.SetAt("aBcde", "lmnopqr");
  213.     map.SetAt("HeLiX", "Client");
  214.     
  215.     for (int i = 0; ret && (i < testCount); i++)
  216.     {
  217. CHXString value;
  218. bool result = (map.Lookup(testData[i].m_pKey, value) == TRUE);
  219. if (result != testData[i].m_success)
  220. {
  221.     DPRINTF(D_ERROR, ("MapSpecificTests<CHXMapStringToOb>::TestSetCaseSensitive() : Test %d lookup got %d expected %dn",
  222.       i,
  223.       result,
  224.       testData[i].m_success));
  225.     ret = false;
  226. }
  227. else if (result && (value != testData[i].m_value))
  228. {
  229.     DPRINTF(D_ERROR, ("MapSpecificTests<CHXMapStringToOb>::TestSetCaseSensitive() : Test %d value got '%s' expected '%s'n",
  230.       i,
  231.       (const char*)value,
  232.       (const char*)testData[i].m_value));
  233.     ret = false;
  234. }
  235.     }
  236.     if (ret)
  237.     {
  238. map.RemoveAll();
  239. map.SetCaseSensitive(false);
  240. map.SetAt("aabcd", "efghijk");
  241. map.SetAt("aBcde", "lmnopqr");
  242. map.SetAt("HeLiX", "Client");
  243. for (int j = 0; ret && (j < testCount); j++)
  244. {
  245.     CHXString value;
  246.     bool result = (map.Lookup(testData[j].m_pKey, value) == TRUE);
  247.     if (!result)
  248.     {
  249. DPRINTF(D_ERROR, ("MapSpecificTests<CHXMapStringToOb>::TestSetCaseSensitive() : Test %d lookup failedn",
  250.   j));
  251. ret = false;
  252.     }
  253.     else if (value != testData[j].m_value)
  254.     {
  255. DPRINTF(D_ERROR, ("MapSpecificTests<CHXMapStringToOb>::TestSetCaseSensitive() : Test %d value got '%s' expected '%s'n",
  256.   j,
  257.   (const char*)value,
  258.   (const char*)testData[j].m_value));
  259. ret = false;
  260.     }
  261. }
  262.     }
  263.     return ret;
  264. }