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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: dllaccess_test.cpp,v 1.4.36.3 2004/07/09 01:44:00 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 "./dllaccess_test.h"
  50. #include "hx_ut_debug.h"
  51. #include "ut_param_util.h"
  52. #include "hxresult.h"
  53. typedef HX_RESULT (*IntFunc)(int& intVal);
  54. DLLAccessTest::DLLAccessTest() :
  55.     m_pDllAccess(0)
  56. {}
  57. const char* DLLAccessTest::DefaultCommandLine() const
  58. {
  59.     return "tdllaccess tdllaccess.in";
  60. }
  61.     
  62. void DLLAccessTest::GetCommandInfo(UTVector<HLXUnitTestCmdInfo*>& cmds)
  63. {
  64.     cmds.Resize(13);
  65.     cmds[0] = new HLXUnitTestCmdInfoDisp<DLLAccessTest>(this, 
  66.     "DLLAccess()",
  67.     &DLLAccessTest::HandleConstructor1Cmd,
  68.     1);
  69.     cmds[1] = new HLXUnitTestCmdInfoDisp<DLLAccessTest>(this, 
  70.     "DLLAccess(dllName,nLibType)",
  71.     &DLLAccessTest::HandleConstructor2Cmd,
  72.     3);
  73.     cmds[2] = new HLXUnitTestCmdInfoDisp<DLLAccessTest>(this, 
  74.     "Open",
  75.     &DLLAccessTest::HandleOpenCmd,
  76.     4);
  77.     cmds[3] = new HLXUnitTestCmdInfoDisp<DLLAccessTest>(this, 
  78.     "Close",
  79.     &DLLAccessTest::HandleCloseCmd,
  80.     2);
  81.     cmds[4] = new HLXUnitTestCmdInfoDisp<DLLAccessTest>(this, 
  82.     "GetSymbol",
  83.     &DLLAccessTest::HandleGetSymbolCmd,
  84.     3);
  85.     cmds[5] = new HLXUnitTestCmdInfoDisp<DLLAccessTest>(this, 
  86.     "GetError",
  87.     &DLLAccessTest::HandleGetErrorCmd,
  88.     2);
  89.     cmds[6] = new HLXUnitTestCmdInfoDisp<DLLAccessTest>(this, 
  90.     "GetErrorString",
  91.     &DLLAccessTest::HandleGetErrorStringCmd,
  92.     2);
  93.     cmds[7] = new HLXUnitTestCmdInfoDisp<DLLAccessTest>(this, 
  94.     "GetDLLName",
  95.     &DLLAccessTest::HandleGetDLLNameCmd,
  96.     3);
  97.     cmds[8] = new HLXUnitTestCmdInfoDisp<DLLAccessTest>(this, 
  98.     "GetVersion",
  99.     &DLLAccessTest::HandleGetVersionCmd,
  100.     3);
  101.     cmds[9] = new HLXUnitTestCmdInfoDisp<DLLAccessTest>(this, 
  102.     "CreateName1",
  103.     &DLLAccessTest::HandleCreateName1Cmd,
  104.     4);
  105.     cmds[10] = new HLXUnitTestCmdInfoDisp<DLLAccessTest>(this, 
  106.     "CreateName2",
  107.     &DLLAccessTest::HandleCreateName2Cmd,
  108.     6);
  109.     cmds[11] = new HLXUnitTestCmdInfoDisp<DLLAccessTest>(this, 
  110.     "IsOpen",
  111.     &DLLAccessTest::HandleIsOpenCmd,
  112.     2);
  113.     cmds[12] = new HLXUnitTestCmdInfoDisp<DLLAccessTest>(this, 
  114.     "CallIntFunc",
  115.     &DLLAccessTest::HandleCallIntFuncCmd,
  116.     3);
  117. }
  118. HLXCmdBasedTest* DLLAccessTest::Clone() const
  119. {
  120.     return new DLLAccessTest();
  121. }
  122. bool DLLAccessTest::HandleConstructor1Cmd(const UTVector<UTString>& info)
  123. {
  124.     delete m_pDllAccess;
  125.     m_pDllAccess = new DLLAccess();
  126.     return (m_pDllAccess != 0);
  127. }
  128. bool DLLAccessTest::HandleConstructor2Cmd(const UTVector<UTString>& info)
  129. {
  130.     delete m_pDllAccess;
  131.     m_pDllAccess = 0;
  132.     unsigned int libType = 0;
  133.     if (!UTParamUtil::GetUInt(info[2], libType))
  134.     {
  135. DPRINTF(D_ERROR, ("DLLAccessTest::HandleConstructor2Cmd() : Failed to convert parametersn"));
  136.     }
  137.     else
  138.     {
  139. m_pDllAccess = new DLLAccess((const char*)info[1], (UINT16)libType);
  140.     }
  141.     return (m_pDllAccess != 0);
  142. }
  143. bool DLLAccessTest::HandleOpenCmd(const UTVector<UTString>& info)
  144. {
  145.     bool ret = false;
  146.     unsigned int libType = 0;
  147.     int expected = -1;
  148.     if (!m_pDllAccess)
  149.     {
  150. DPRINTF(D_ERROR, ("DLLAccessTest::HandleOpenCmd() : No DLLAccess objectn"));
  151.     }
  152.     else if (!UTParamUtil::GetUInt(info[2], libType) ||
  153.      !UTParamUtil::GetInt(info[3], expected))
  154.     {
  155. DPRINTF(D_ERROR, ("DLLAccessTest::HandleOpenCmd() : Failed to convert parametersn"));
  156.     }
  157.     else
  158.     {
  159. int result = m_pDllAccess->open(info[1], (UINT16)libType);
  160. if (result != expected)
  161. {
  162.     DPRINTF(D_ERROR,("DLLAccessTest::HandleOpenCmd() : Got %d, expected %dn",
  163.      result,
  164.      expected));
  165. }
  166. else
  167.     ret = true;
  168.     }
  169.     return ret;
  170. }
  171. bool DLLAccessTest::HandleCloseCmd(const UTVector<UTString>& info)
  172. {
  173.     bool ret = false;
  174.     int expected = -1;
  175.     if (!m_pDllAccess)
  176.     {
  177. DPRINTF(D_ERROR, ("DLLAccessTest::HandleCloseCmd() : No DLLAccess objectn"));
  178.     }
  179.     else if (!UTParamUtil::GetInt(info[1], expected))
  180.     {
  181. DPRINTF(D_ERROR, ("DLLAccessTest::HandleCloseCmd() : Failed to convert parametersn"));
  182.     }
  183.     else
  184.     {
  185. int result = m_pDllAccess->close();
  186. if (result != expected)
  187. {
  188.     DPRINTF(D_ERROR, ("DLLAccessTest::HandleCloseCmd() : Got %d, expected %dn",
  189.       result,
  190.       expected));
  191. }
  192. else
  193.     ret = true;
  194.     }
  195.     return ret;
  196. }
  197. bool DLLAccessTest::HandleGetSymbolCmd(const UTVector<UTString>& info)
  198. {
  199.     bool ret = false;
  200.     
  201.     bool expected = false;
  202.     if (!m_pDllAccess)
  203.     {
  204. DPRINTF(D_ERROR, ("DLLAccessTest::HandleGetSymbolCmd() : No DLLAccess objectn"));
  205.     }
  206.     else if (!UTParamUtil::GetBool(info[2], expected))
  207.     {
  208. DPRINTF(D_ERROR, ("DLLAccessTest::HandleGetSymbolCmd() : Failed to convert parametersn"));
  209.     }
  210.     else
  211.     {
  212. bool result = (m_pDllAccess->getSymbol(info[1]) != 0);
  213. if (result != expected)
  214. {
  215.     DPRINTF(D_ERROR, ("DLLAccessTest::HandleGetSymbolCmd() : Got %d, expected %dn",
  216.       result,
  217.       expected));
  218. }
  219. else
  220.     ret = true;
  221.     }
  222.     return ret;
  223. }
  224. bool DLLAccessTest::HandleGetErrorCmd(const UTVector<UTString>& info)
  225. {
  226.     bool ret = false;
  227.     int expected = -1;
  228.     if (!m_pDllAccess)
  229.     {
  230. DPRINTF(D_ERROR, ("DLLAccessTest::HandleGetErrorCmd() : No DLLAccess objectn"));
  231.     }
  232.     else if (!UTParamUtil::GetInt(info[1], expected))
  233.     {
  234. DPRINTF(D_ERROR, ("DLLAccessTest::HandleGetErrorCmd() : Failed to convert parametersn"));
  235.     }
  236.     else
  237.     {
  238. int result = m_pDllAccess->getError();
  239. if (result != expected)
  240. {
  241.     DPRINTF(D_ERROR, ("DLLAccessTest::HandleGetErrorCmd() : Got %d, expected %dn",
  242.       result,
  243.       expected));
  244. }
  245. else
  246.     ret = true;
  247.     }
  248.     return ret;
  249. }
  250. bool DLLAccessTest::HandleGetErrorStringCmd(const UTVector<UTString>& info)
  251. {
  252.     bool ret = false;
  253.     if (!m_pDllAccess)
  254.     {
  255. DPRINTF(D_ERROR, ("DLLAccessTest::HandleGetErrorCmd() : No DLLAccess objectn"));
  256.     }
  257.     else if (info[1] != m_pDllAccess->getErrorString())
  258.     {
  259. DPRINTF(D_ERROR, ("DLLAccessTest::HandleGetErrorCmd() : Got '%s', expected '%s'n",
  260.   m_pDllAccess->getErrorString(),
  261.   (const char*)info[1]));
  262.     }
  263.     else
  264. ret = true;
  265.     return ret;
  266. }
  267. bool DLLAccessTest::HandleGetDLLNameCmd(const UTVector<UTString>& info)
  268. {
  269.     bool ret = false;
  270.     bool expected = false;
  271.     if (!m_pDllAccess)
  272.     {
  273. DPRINTF(D_ERROR, ("DLLAccessTest::HandleGetDLLNameCmd() : No DLLAccess objectn"));
  274.     }
  275.     else if (!UTParamUtil::GetBool(info[1], expected))
  276.     {
  277. DPRINTF(D_ERROR, ("DLLAccessTest::HandleGetDLLNameCmd() : Failed to convert parametersn"));
  278.     }
  279.     else 
  280.     {
  281. const char* pDllName = m_pDllAccess->getDLLName();
  282. bool result = (pDllName != 0);
  283. if (result != expected)
  284. {
  285.     DPRINTF(D_ERROR, ("DLLAccessTest::HandleGetDLLNameCmd() : Got %d, expected %dn",
  286.       result,
  287.       expected));
  288. }
  289. else if (pDllName && (info[2] != pDllName))
  290. {
  291.     DPRINTF(D_ERROR, ("DLLAccessTest::HandleGetDLLNameCmd() : Got '%s', expected '%s'n",
  292.       pDllName,
  293.       (const char*)info[2]));
  294. }
  295. else
  296.     ret = true;
  297.     }
  298.     return ret;
  299. }
  300. bool DLLAccessTest::HandleGetVersionCmd(const UTVector<UTString>& info)
  301. {
  302.     bool ret = false;
  303.     bool expected = false;
  304.     if (!m_pDllAccess)
  305.     {
  306. DPRINTF(D_ERROR, ("DLLAccessTest::HandleGetDLLNameCmd() : No DLLAccess objectn"));
  307.     }
  308.     else if (!UTParamUtil::GetBool(info[1], expected))
  309.     {
  310. DPRINTF(D_ERROR, ("DLLAccessTest::HandleGetVersionCmd() : Failed to convert parametersn"));
  311.     }
  312.     else 
  313.     {
  314. const char* pVersion = m_pDllAccess->getVersion();
  315. bool result = (pVersion != 0);
  316. if (result != expected)
  317. {
  318.     DPRINTF(D_ERROR, ("DLLAccessTest::HandleGetVersionCmd() : Got %d, expected %dn",
  319.       result,
  320.       expected));
  321. }
  322. else if (pVersion && (info[2] != pVersion))
  323. {
  324.     DPRINTF(D_ERROR, ("DLLAccessTest::HandleGetVersionCmd() : Got '%s', expected '%s'n",
  325.       pVersion,
  326.       (const char*)info[1]));
  327. }
  328. else
  329.     ret = true;
  330.     }
  331.     return ret;
  332. }
  333. bool DLLAccessTest::HandleCreateName1Cmd(const UTVector<UTString>& info)
  334. {
  335.     bool ret = false;
  336.     if (!m_pDllAccess)
  337.     {
  338. DPRINTF(D_ERROR, ("DLLAccessTest::HandleCreateName1Cmd() : No DLLAccess objectn"));
  339.     }
  340.     else
  341.     {
  342. char buf[100]; /* Flawfinder: ignore */
  343. UINT32 bufLen = sizeof(buf);
  344. m_pDllAccess->CreateName((const char*)info[1], (const char*)info[2],
  345.  buf, bufLen);
  346. if (info[3] != buf)
  347. {
  348.     DPRINTF(D_ERROR, ("DLLAccessTest::HandleCreateName1Cmd() : Got '%s', expected '%s'n",
  349.       buf,
  350.       (const char*)info[3]));
  351. }
  352. else
  353.     ret = true;
  354.     }
  355.     return ret;
  356. }
  357. bool DLLAccessTest::HandleCreateName2Cmd(const UTVector<UTString>& info)
  358. {
  359.     bool ret = false;
  360.     unsigned int major = 0;
  361.     unsigned int minor = 0;
  362.     if (!m_pDllAccess)
  363.     {
  364. DPRINTF(D_ERROR, ("DLLAccessTest::HandleCreateName2Cmd() : No DLLAccess objectn"));
  365.     }
  366.     else if (!UTParamUtil::GetUInt(info[3], major) ||
  367.      !UTParamUtil::GetUInt(info[4], minor))
  368.     {
  369. DPRINTF(D_ERROR, ("DLLAccessTest::HandleCreateName2Cmd() : Failed to convert parametersn"));
  370.     }
  371.     else
  372.     {
  373. char buf[100]; /* Flawfinder: ignore */
  374. UINT32 bufLen = sizeof(buf);
  375. m_pDllAccess->CreateName((const char*)info[1], (const char*)info[2],
  376.  buf, bufLen,
  377.  major, minor);
  378. if (info[5] != buf)
  379. {
  380.     DPRINTF(D_ERROR, ("DLLAccessTest::HandleCreateName2Cmd() : Got '%s', expected '%s'n",
  381.       buf,
  382.       (const char*)info[5]));
  383. }
  384. else
  385.     ret = true;
  386.     }
  387.     return ret;
  388. }
  389. bool DLLAccessTest::HandleIsOpenCmd(const UTVector<UTString>& info)
  390. {
  391.     bool ret = false;
  392.     bool expected = false;
  393.     if (!m_pDllAccess)
  394.     {
  395. DPRINTF(D_ERROR, ("DLLAccessTest::HandleIsOpenCmd() : No DLLAccess objectn"));
  396.     }
  397.     else if (!UTParamUtil::GetBool(info[1], expected))
  398.     {
  399. DPRINTF(D_ERROR, ("DLLAccessTest::HandleIsOpenCmd() : Failed to convert parametersn"));
  400.     }
  401.     else if (expected != (m_pDllAccess->isOpen() == TRUE))
  402.     {
  403. DPRINTF(D_ERROR, ("DLLAccessTest::HandleIsOpenCmd() : Got %d expected %dn",
  404.   m_pDllAccess->isOpen(),
  405.   expected));
  406.     }
  407.     else
  408. ret = true;
  409.     return ret;
  410. }
  411. bool DLLAccessTest::HandleCallIntFuncCmd(const UTVector<UTString>& info)
  412. {
  413.     bool ret = false;
  414.     int expected = -1;
  415.     if (!m_pDllAccess)
  416.     {
  417. DPRINTF(D_ERROR, ("DLLAccessTest::HandleIsOpenCmd() : No DLLAccess objectn"));
  418.     }
  419.     else if (!UTParamUtil::GetInt(info[2], expected))
  420.     {
  421. DPRINTF(D_ERROR, ("DLLAccessTest::HandleIsOpenCmd() : Failed to convert parametersn"));
  422.     }
  423.     else
  424.     {
  425. IntFunc pIntFunc = (IntFunc)m_pDllAccess->getSymbol(info[1]);
  426. if (!pIntFunc)
  427. {
  428.     DPRINTF(D_ERROR, ("DLLAccessTest::HandleIsOpenCmd() : Failed to get symbol '%s'n",
  429.       (const char*)info[1]));
  430. }
  431. else
  432. {
  433.     int result = -1;
  434.     pIntFunc(result);
  435.     
  436.     if (result != expected)
  437.     {
  438. DPRINTF(D_ERROR, ("DLLAccessTest::HandleIsOpenCmd() : Got %d, expected %dn",
  439.   result,
  440.   expected));
  441.     }
  442.     else
  443. ret = true;
  444. }
  445.     }
  446.     return ret;
  447. }