ptr_array_test.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:13k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: ptr_array_test.cpp,v 1.3.46.3 2004/07/09 01:45:54 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #include "./ptr_array_test.h"
  50. #include "hx_ut_debug.h"
  51. #include "ut_param_util.h"
  52. #include "./param_util.h"
  53. HLXPtrArrayTest::HLXPtrArrayTest()
  54. {}
  55. const char* HLXPtrArrayTest::DefaultCommandLine() const
  56. {
  57.     return "tptrarray tptrarray.in";
  58. }
  59.     
  60. void HLXPtrArrayTest::GetCommandInfo(UTVector<HLXUnitTestCmdInfo*>& cmds)
  61. {
  62.     cmds.Resize(16);
  63.     cmds[0] = new HLXUnitTestCmdInfoDisp<HLXPtrArrayTest>(this, 
  64.     "IsEmpty",
  65.     &HLXPtrArrayTest::HandleIsEmptyCmd,
  66.     2);
  67.     cmds[1] = new HLXUnitTestCmdInfoDisp<HLXPtrArrayTest>(this, 
  68.     "GetSize",
  69.     &HLXPtrArrayTest::HandleGetSizeCmd,
  70.     2);
  71.     cmds[2] = new HLXUnitTestCmdInfoDisp<HLXPtrArrayTest>(this, 
  72.     "GetUpperBound",
  73.     &HLXPtrArrayTest::HandleGetUpperBoundCmd,
  74.     2);
  75.     cmds[3] = new HLXUnitTestCmdInfoDisp<HLXPtrArrayTest>(this, 
  76.     "SetSize",
  77.     &HLXPtrArrayTest::HandleSetSizeCmd,
  78.     3);
  79.     cmds[4] = new HLXUnitTestCmdInfoDisp<HLXPtrArrayTest>(this, 
  80.     "FreeExtra",
  81.     &HLXPtrArrayTest::HandleFreeExtraCmd,
  82.     1);
  83.     cmds[5] = new HLXUnitTestCmdInfoDisp<HLXPtrArrayTest>(this, 
  84.     "RemoveAll",
  85.     &HLXPtrArrayTest::HandleRemoveAllCmd,
  86.     1);
  87.     cmds[6] = new HLXUnitTestCmdInfoDisp<HLXPtrArrayTest>(this, 
  88.     "GetAt",
  89.     &HLXPtrArrayTest::HandleGetAtCmd,
  90.     3);
  91.     cmds[7] = new HLXUnitTestCmdInfoDisp<HLXPtrArrayTest>(this, 
  92.     "SetAt",
  93.     &HLXPtrArrayTest::HandleSetAtCmd,
  94.     3);
  95.     cmds[8] = new HLXUnitTestCmdInfoDisp<HLXPtrArrayTest>(this, 
  96.     "ElementAt",
  97.     &HLXPtrArrayTest::HandleElementAtCmd,
  98.     3);
  99.     cmds[9] = new HLXUnitTestCmdInfoDisp<HLXPtrArrayTest>(this, 
  100.     "SetAtGrow",
  101.     &HLXPtrArrayTest::HandleSetAtGrowCmd,
  102.     3);
  103.     cmds[10] = new HLXUnitTestCmdInfoDisp<HLXPtrArrayTest>(this, 
  104.     "Add",
  105.     &HLXPtrArrayTest::HandleAddCmd,
  106.     2);
  107.     cmds[11] = new HLXUnitTestCmdInfoDisp<HLXPtrArrayTest>(this, 
  108.     "ArrayOp",
  109.     &HLXPtrArrayTest::HandleArrayOpCmd,
  110.     3);
  111.     cmds[12] = new HLXUnitTestCmdInfoDisp<HLXPtrArrayTest>(this, 
  112.     "InsertAt",
  113.     &HLXPtrArrayTest::HandleInsertAtCmd,
  114.     4);
  115.     cmds[13] = new HLXUnitTestCmdInfoDisp<HLXPtrArrayTest>(this, 
  116.     "RemoveAt",
  117.     &HLXPtrArrayTest::HandleRemoveAtCmd,
  118.     3);
  119.     cmds[14] = new HLXUnitTestCmdInfoDisp<HLXPtrArrayTest>(this, 
  120.     "InsertArrayAt",
  121.     &HLXPtrArrayTest::HandleInsertArrayAtCmd,
  122.     3);
  123.     cmds[15] = new HLXUnitTestCmdInfoDisp<HLXPtrArrayTest>(this, 
  124.     "IsNull",
  125.     &HLXPtrArrayTest::HandleIsNullCmd,
  126.     3);
  127. }
  128. HLXCmdBasedTest* HLXPtrArrayTest::Clone() const
  129. {
  130.     return new HLXPtrArrayTest();
  131. }
  132. bool HLXPtrArrayTest::HandleIsEmptyCmd(const UTVector<UTString>& info)
  133. {
  134.     bool ret = false;
  135.     bool expected = false;
  136.     if (!UTParamUtil::GetBool(info[1], expected))
  137.     {
  138. DPRINTF(D_ERROR, ("HLXPtrArrayTest::HandleIsEmptyCmd : failed to convert parametern"));
  139.     }
  140.     else if ((m_array.IsEmpty() == TRUE) != expected)
  141.     {
  142. DPRINTF(D_ERROR, ("HLXPtrArrayTest::HandleIsEmptyCmd : got %d expected %dn",
  143.   m_array.IsEmpty(),
  144.   expected));
  145.     }
  146.     else
  147. ret = true;
  148.     return ret;
  149. }
  150. bool HLXPtrArrayTest::HandleGetSizeCmd(const UTVector<UTString>& info)
  151. {
  152.     bool ret = false;
  153.     
  154.     int expected = 0;
  155.     if (!UTParamUtil::GetInt(info[1], expected))
  156.     {
  157. DPRINTF (D_ERROR, ("HLXPtrArrayTest::HandleGetSizeCmd() : failed parameter conversionn"));
  158.     }
  159.     else if (expected != m_array.GetSize())
  160.     {
  161. DPRINTF (D_ERROR, ("HLXPtrArrayTest::HandleGetSizeCmd() : got %d expected %dn",
  162.    m_array.GetSize(),
  163.    expected));
  164.     }
  165.     else
  166. ret = true;
  167.     return ret;
  168. }
  169. bool HLXPtrArrayTest::HandleGetUpperBoundCmd(const UTVector<UTString>& info)
  170. {
  171.     bool ret = false;
  172.     int expected = 0;
  173.     if (!UTParamUtil::GetInt(info[1], expected))
  174.     {
  175. DPRINTF (D_ERROR, ("HLXPtrArrayTest::HandleGetUpperBoundCmd() : failed parameter conversionn"));
  176.     }
  177.     else if (expected != m_array.GetUpperBound())
  178.     {
  179. DPRINTF (D_ERROR, ("HLXPtrArrayTest::HandleGetUpperBoundCmd() : got %d expected%dn",
  180.    m_array.GetUpperBound(),
  181.    expected));
  182.     }
  183.     else
  184. ret = true;
  185.     return ret;
  186. }
  187. bool HLXPtrArrayTest::HandleSetSizeCmd(const UTVector<UTString>& info)
  188. {
  189.     bool ret = false;
  190.     
  191.     int newSize = 0;
  192.     int growSize = 0;
  193.     if (!UTParamUtil::GetInt(info[1], newSize) ||
  194. !UTParamUtil::GetInt(info[2], growSize))
  195.     {
  196. DPRINTF (D_ERROR, ("HLXPtrArrayTest::HandleSetSizeCmd : failed to convert parametersn"));
  197.     }
  198.     else 
  199.     {
  200. m_array.SetSize(newSize, growSize);
  201. ret = true;
  202.     }
  203.     return ret;
  204. }
  205. bool HLXPtrArrayTest::HandleFreeExtraCmd(const UTVector<UTString>& /*info*/)
  206. {
  207.     m_array.FreeExtra();
  208.     return true;
  209. }
  210. bool HLXPtrArrayTest::HandleRemoveAllCmd(const UTVector<UTString>& /*info*/)
  211. {
  212.     m_array.RemoveAll();
  213.     return true;
  214. }
  215. bool HLXPtrArrayTest::HandleGetAtCmd(const UTVector<UTString>& info)
  216. {
  217.     bool ret = false;
  218.     int index = 0;
  219.     int expected = 0;
  220.     if (!UTParamUtil::GetInt(info[1], index) ||
  221. !UTParamUtil::GetInt(info[2], expected))
  222.     {
  223. DPRINTF (D_ERROR, ("HLXPtrArrayTest::HandleGetAtCmd : failed to convert parametersn"));
  224.     }
  225.     else if (!m_array.GetAt(index))
  226.     {
  227. DPRINTF (D_ERROR, ("HLXPtrArrayTest::HandleGetAtCmd : index %d does not contain a valuen", 
  228.    index));
  229.     }
  230.     else
  231.     {
  232. int result = *((int*)m_array.GetAt(index));
  233. if (result != expected)
  234. {
  235.     DPRINTF (D_ERROR, ("HLXPtrArrayTest::HandleGetAtCmd : got %d expected %dn",
  236.        result, 
  237.        expected));
  238. }
  239. else
  240.     ret = true;
  241.     }
  242.     return ret;
  243. }
  244. bool HLXPtrArrayTest::HandleSetAtCmd(const UTVector<UTString>& info)
  245. {
  246.     bool ret = false;
  247.     int index = 0;
  248.     int value = 0;
  249.     if (!UTParamUtil::GetInt(info[1], index) ||
  250. !UTParamUtil::GetInt(info[2], value))
  251.     {
  252. DPRINTF (D_ERROR, ("HLXPtrArrayTest::HandleSetAtCmd : failed to convert parametersn"));
  253.     }
  254.     else 
  255.     {
  256. m_array.SetAt(index, new int(value));
  257. ret = true;
  258.     }
  259.     return ret;
  260. }
  261. bool HLXPtrArrayTest::HandleElementAtCmd(const UTVector<UTString>& info)
  262. {
  263.     bool ret = false;
  264.     int index = 0;
  265.     int expected = 0;
  266.     if (!UTParamUtil::GetInt(info[1], index) ||
  267. !UTParamUtil::GetInt(info[2], expected))
  268.     {
  269. DPRINTF (D_ERROR, ("HLXPtrArrayTest::HandleElementAtCmd : failed to convert parametersn"));
  270.     }
  271.     else 
  272.     {
  273. int result = *((int*)m_array.ElementAt(index));
  274. if (result != expected)
  275. {
  276.     DPRINTF (D_ERROR, ("HLXPtrArrayTest::HandleElementAtCmd : got %d expected %dn",
  277.        result, 
  278.        expected));
  279. }
  280. else
  281.     ret = true;
  282.     }
  283.     return ret;
  284. }
  285. bool HLXPtrArrayTest::HandleSetAtGrowCmd(const UTVector<UTString>& info)
  286. {
  287.     bool ret = false;
  288.     int index = 0;
  289.     int value = 0;
  290.     if (!UTParamUtil::GetInt(info[1], index) ||
  291. !UTParamUtil::GetInt(info[2], value))
  292.     {
  293. DPRINTF (D_ERROR, ("HLXPtrArrayTest::HandleSetAtGrowCmd : failed to convert parametersn"));
  294.     }
  295.     else 
  296.     {
  297. m_array.SetAtGrow(index, new int(value));
  298. ret = true;
  299.     }
  300.     return ret;
  301. }
  302. bool HLXPtrArrayTest::HandleAddCmd(const UTVector<UTString>& info)
  303. {
  304.     bool ret = false;
  305.     int value = 0;
  306.     if (!UTParamUtil::GetInt(info[1], value))
  307.     {
  308. DPRINTF(D_ERROR,("HLXPtrArrayTest::HandleAddCmd : failed parameter conversionn"));
  309.     }
  310.     else
  311.     {
  312. m_array.Add(new int(value));
  313. ret = true;
  314.     }
  315.     return ret;
  316. }
  317. bool HLXPtrArrayTest::HandleArrayOpCmd(const UTVector<UTString>& info)
  318. {
  319.     bool ret = false;
  320.     int index = 0;
  321.     int expected = 0;
  322.     if (!UTParamUtil::GetInt(info[1], index) ||
  323. !UTParamUtil::GetInt(info[2], expected))
  324.     {
  325. DPRINTF (D_ERROR, ("HLXPtrArrayTest::HandleArrayOpCmd : failed to convert parametersn"));
  326.     }
  327.     else 
  328.     {
  329. int result = *((int*)m_array[index]);
  330. if (result != expected)
  331. {
  332.     DPRINTF (D_ERROR, ("HLXPtrArrayTest::HandleArrayOpCmd : got %d expected %dn",
  333.        result, 
  334.        expected));
  335. }
  336. else
  337.     ret = true;
  338.     }
  339.     return ret;
  340. }
  341. bool HLXPtrArrayTest::HandleInsertAtCmd(const UTVector<UTString>& info)
  342. {
  343.     bool ret = false;
  344.         
  345.     int index = 0;
  346.     int value = 0;
  347.     int count = 0;
  348.     if (!UTParamUtil::GetInt(info[1], index) ||
  349. !UTParamUtil::GetInt(info[2], value) ||
  350. !UTParamUtil::GetInt(info[3], count))
  351.     {
  352. DPRINTF (D_ERROR, ("HLXPtrArrayTest::HandleInsertAtCmd : failed to convert parametersn"));
  353.     }
  354.     else 
  355.     {
  356. m_array.InsertAt(index, new int(value), count);
  357. ret = true;
  358.     }
  359.     return ret;
  360. }
  361. bool HLXPtrArrayTest::HandleRemoveAtCmd(const UTVector<UTString>& info)
  362. {
  363.     bool ret = false;
  364.     int index = 0;
  365.     int count = 0;
  366.     if (!UTParamUtil::GetInt(info[1], index) ||
  367. !UTParamUtil::GetInt(info[2], count))
  368.     {
  369. DPRINTF (D_ERROR, ("HLXPtrArrayTest::HandleRemoveAtCmd : failed to convert parametersn"));
  370.     }
  371.     else 
  372.     {
  373. m_array.RemoveAt(index, count);
  374. ret = true;
  375.     }
  376.     return ret;
  377. }
  378. bool HLXPtrArrayTest::HandleInsertArrayAtCmd(const UTVector<UTString>& info)
  379. {
  380.     bool ret = false;
  381.     int index = 0;
  382.     CHXPtrArray array;
  383.     
  384.     if (!UTParamUtil::GetInt(info[1], index) ||
  385. !GetArray(info[2], array))
  386.     {
  387. DPRINTF (D_ERROR, ("HLXPtrArrayTest::HandlInsertArrayAtCmd : failed to convert parametersn"));
  388.     }
  389.     else
  390.     {
  391. m_array.InsertAt(index, &array);
  392. ret = true;
  393.     }
  394.     return ret;
  395. }
  396. bool HLXPtrArrayTest::HandleIsNullCmd(const UTVector<UTString>& info)
  397. {
  398.     bool ret = false;
  399.     
  400.     int index = 0;
  401.     bool expected = false;
  402.     if (!UTParamUtil::GetInt(info[1], index) ||
  403. !UTParamUtil::GetBool(info[2], expected))
  404.     {
  405. DPRINTF (D_ERROR, ("HLXPtrArrayTest::HandleIsNullCmd : failed to convert parametersn"));
  406.     }
  407.     else
  408.     {
  409. bool result = (m_array.GetAt(index) == 0);
  410. if (result != expected)
  411. {
  412.     DPRINTF (D_ERROR, ("HLXPtrArrayTest::HandleIsNullCmd : got %d expected %dn",
  413.        result,
  414.        expected));
  415. }
  416. else
  417.     ret = true;
  418.     }
  419.     return ret;
  420. }