sdpparse_test.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:16k
- /* ***** BEGIN LICENSE BLOCK *****
- * Version: RCSL 1.0/RPSL 1.0
- *
- * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved.
- *
- * The contents of this file, and the files included with this file, are
- * subject to the current version of the RealNetworks Public Source License
- * Version 1.0 (the "RPSL") available at
- * http://www.helixcommunity.org/content/rpsl unless you have licensed
- * the file under the RealNetworks Community Source License Version 1.0
- * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl,
- * in which case the RCSL will apply. You may also obtain the license terms
- * directly from RealNetworks. You may not use this file except in
- * compliance with the RPSL or, if you have a valid RCSL with RealNetworks
- * applicable to this file, the RCSL. Please see the applicable RPSL or
- * RCSL for the rights, obligations and limitations governing use of the
- * contents of the file.
- *
- * This file is part of the Helix DNA Technology. RealNetworks is the
- * developer of the Original Code and owns the copyrights in the portions
- * it created.
- *
- * This file, and the files included with this file, is distributed and made
- * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
- * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES,
- * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
- *
- * Technology Compatibility Kit Test Suite(s) Location:
- * http://www.helixcommunity.org/content/tck
- *
- * Contributor(s):
- *
- * ***** END LICENSE BLOCK ***** */
- #include "./sdpparse_test.h"
- #include "hx_ut_debug.h"
- #include "ut_param_util.h"
- #include "chxminiccf.h"
- SDPMediaDescParserTest::SDPMediaDescParserTest() :
- m_pContext(0),
- m_pParser(0),
- m_nValues(0),
- m_ppValues(0)
- {
- m_pContext = new CHXMiniCCF();
-
- if (m_pContext)
- {
- m_pContext->AddRef();
- m_pContext->QueryInterface(IID_IHXCommonClassFactory,
- (void**)&m_pCCF);
- }
- }
- SDPMediaDescParserTest::~SDPMediaDescParserTest()
- {
- DestroyValues();
- delete m_pParser;
- m_pParser = 0;
- HX_RELEASE(m_pCCF);
- HX_RELEASE(m_pContext);
- }
- const char* SDPMediaDescParserTest::DefaultCommandLine() const
- {
- return "tsdpparse tsdpparse.in";
- }
-
- void SDPMediaDescParserTest::GetCommandInfo(UTVector<HLXUnitTestCmdInfo*>& cmds)
- {
- int index = 0;
- cmds.Resize(index + 1);
- cmds[index++] =
- new HLXUnitTestCmdInfoDisp<SDPMediaDescParserTest>(this,
- "Init",
- &SDPMediaDescParserTest::HandleInitCmd,
- 2);
- cmds.Resize(index + 1);
- cmds[index++] =
- new HLXUnitTestCmdInfoDisp<SDPMediaDescParserTest>(this,
- "Parse",
- &SDPMediaDescParserTest::HandleParseCmd,
- 4);
-
- cmds.Resize(index + 1);
- cmds[index++] =
- new HLXUnitTestCmdInfoDisp<SDPMediaDescParserTest>(this,
- "IntCount",
- &SDPMediaDescParserTest::HandleIntCountCmd,
- 3);
- cmds.Resize(index + 1);
- cmds[index++] =
- new HLXUnitTestCmdInfoDisp<SDPMediaDescParserTest>(this,
- "StringCount",
- &SDPMediaDescParserTest::HandleStringCountCmd,
- 3);
- cmds.Resize(index + 1);
- cmds[index++] =
- new HLXUnitTestCmdInfoDisp<SDPMediaDescParserTest>(this,
- "BufferCount",
- &SDPMediaDescParserTest::HandleBufferCountCmd,
- 3);
- cmds.Resize(index + 1);
- cmds[index++] =
- new HLXUnitTestCmdInfoDisp<SDPMediaDescParserTest>(this,
- "GetInt",
- &SDPMediaDescParserTest::HandleGetIntCmd,
- 4);
- cmds.Resize(index + 1);
- cmds[index++] =
- new HLXUnitTestCmdInfoDisp<SDPMediaDescParserTest>(this,
- "GetString",
- &SDPMediaDescParserTest::HandleGetStringCmd,
- 4);
- cmds.Resize(index + 1);
- cmds[index++] =
- new HLXUnitTestCmdInfoDisp<SDPMediaDescParserTest>(this,
- "GetBuffer",
- &SDPMediaDescParserTest::HandleGetBufferCmd,
- 4);
- }
- HLXCmdBasedTest* SDPMediaDescParserTest::Clone() const
- {
- return new SDPMediaDescParserTest();
- }
- bool SDPMediaDescParserTest::HandleInitCmd(const UTVector<UTString>& info)
- {
- bool ret = false;
- ULONG32 ulVersion = 0;
- delete m_pParser;
- m_pParser = 0;
- if (!UTParamUtil::GetULong(info[1], ulVersion))
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleInitCmd : failed to convert parametern"));
- }
- else
- {
- m_pParser = new SDPMediaDescParser(ulVersion);
- HX_RESULT res = m_pParser->Init(m_pContext);
- if (HXR_OK != res)
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleInitCmd : failed to init parser %08xn", res));
- }
- else
- {
- ret = true;
- }
- }
- return ret;
- }
- bool SDPMediaDescParserTest::HandleParseCmd(const UTVector<UTString>& info)
- {
- bool ret = false;
- IHXBuffer* pBuf = 0;
- HX_RESULT expectedRes;
- unsigned int expectedNum;
- //DPRINTF (D_ERROR, ("--------n"));
- if (!GetHXResult(info[1], expectedRes) ||
- !UTParamUtil::GetUInt(info[2], expectedNum))
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleParseCmd : failed to convert parametern"));
- }
- else if (m_pCCF &&
- (HXR_OK == m_pCCF->CreateInstance(CLSID_IHXBuffer,
- (void**)&pBuf)) &&
- (HXR_OK == pBuf->Set((const unsigned char*)(const char*)info[3],
- info[3].length())))
- {
- DestroyValues();
- HX_RESULT res = m_pParser->Parse(pBuf, m_nValues, m_ppValues);
- if (res != expectedRes)
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleParseCmd : Parse result expected %08x, got %08xn",
- expectedRes, res));
- }
- else if (m_nValues != expectedNum)
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleParseCmd : m_nValues expected %u, got %un",
- expectedNum, m_nValues));
- }
- else
- {
- ret = true;
- }
- }
- HX_RELEASE(pBuf);
- return ret;
- }
- bool SDPMediaDescParserTest::GetHXResult(const char* pStr,
- HX_RESULT& res) const
- {
- bool ret = false;
- res = 0;
- if ((pStr[0] == '0') &&
- (pStr[1] == 'x'))
- {
- pStr += 2;
- if (*pStr)
- {
- int i = 0;
- ret = true;
- for(; ret && *pStr; *pStr++, i++)
- {
- res <<= 4;
- if ((*pStr >= '0') && (*pStr <= '9'))
- {
- res += *pStr - '0';
- }
- else if ((*pStr >= 'a') && (*pStr <= 'f'))
- {
- res += (*pStr - 'a') + 10;
- }
- else if ((*pStr >= 'A') && (*pStr <= 'F'))
- {
- res += (*pStr - 'A') + 10;
- }
- else
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::GetHXResult : invalid character '%c'n", *pStr));
- ret = false;
- }
- }
- if (ret && (i != 8))
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::GetHXResult : wrong number of hex digitsn"));
- ret = false;
- }
- }
- }
- else
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::GetHXResult : invalid hex stringn"));
- }
- return ret;
- }
- bool SDPMediaDescParserTest::HandleIntCountCmd(const UTVector<UTString>& info)
- {
- bool ret = false;
- unsigned int valueIndex = 0;
- unsigned int expectedCount = 0;
-
- //DPRINTF (D_ERROR, ("========n"));
- if (!UTParamUtil::GetUInt(info[1], valueIndex) ||
- !UTParamUtil::GetUInt(info[2], expectedCount))
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleIntCountCmd : failed to convert parametern"));
- }
- else if (valueIndex >= m_nValues)
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleIntCountCmd : invalid value indexn"));
- }
- else
- {
- IHXValues* pHdr = m_ppValues[valueIndex];
- unsigned int ulCount = 0;
- const char* pName = 0;
- ULONG32 ulValue = 0;
- HX_RESULT res = pHdr->GetFirstPropertyULONG32(pName, ulValue);
- while (HXR_OK == res)
- {
- // DPRINTF (D_ERROR, ("Int %s -> %lun", pName, ulValue));
- ulCount++;
- res = pHdr->GetNextPropertyULONG32(pName, ulValue);
- }
- if (ulCount != expectedCount)
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleIntCountCmd : expected %lu, got %lun",
- expectedCount, ulCount));
- }
- else
- {
- ret = true;
- }
- }
- return ret;
- }
- bool SDPMediaDescParserTest::HandleStringCountCmd(const UTVector<UTString>& info)
- {
- bool ret = false;
- unsigned int valueIndex = 0;
- unsigned int expectedCount = 0;
-
- //DPRINTF (D_ERROR, ("=*=*=*=*n"));
- if (!UTParamUtil::GetUInt(info[1], valueIndex) ||
- !UTParamUtil::GetUInt(info[2], expectedCount))
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleStringCountCmd : failed to convert parametern"));
- }
- else if (valueIndex >= m_nValues)
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleStringCountCmd : invalid value indexn"));
- }
- else
- {
- IHXValues* pHdr = m_ppValues[valueIndex];
- unsigned int ulCount = 0;
- const char* pName = 0;
- IHXBuffer* pValue = 0;
- HX_RESULT res = pHdr->GetFirstPropertyCString(pName, pValue);
- while (HXR_OK == res)
- {
- //DPRINTF (D_ERROR, ("String %s -> '%s'n",
- // pName,
- // pValue->GetBuffer()));
- ulCount++;
- HX_RELEASE(pValue);
- res = pHdr->GetNextPropertyCString(pName, pValue);
- }
- HX_RELEASE(pValue);
- if (ulCount != expectedCount)
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleStringCountCmd : expected %lu, got %lun",
- expectedCount, ulCount));
- }
- else
- {
- ret = true;
- }
- }
- return ret;
- }
- bool SDPMediaDescParserTest::HandleBufferCountCmd(const UTVector<UTString>& info)
- {
- bool ret = false;
- unsigned int valueIndex = 0;
- unsigned int expectedCount = 0;
-
- //DPRINTF (D_ERROR, ("-=#=-=#=-n"));
- if (!UTParamUtil::GetUInt(info[1], valueIndex) ||
- !UTParamUtil::GetUInt(info[2], expectedCount))
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleBufferCountCmd : failed to convert parametern"));
- }
- else if (valueIndex >= m_nValues)
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleBufferCountCmd : invalid value indexn"));
- }
- else
- {
- IHXValues* pHdr = m_ppValues[valueIndex];
- unsigned int ulCount = 0;
- const char* pName = 0;
- IHXBuffer* pValue = 0;
- HX_RESULT res = pHdr->GetFirstPropertyBuffer(pName, pValue);
- while (HXR_OK == res)
- {
- //PrintBuffer(pName, pValue);
- ulCount++;
- HX_RELEASE(pValue);
- res = pHdr->GetNextPropertyBuffer(pName, pValue);
- }
- HX_RELEASE(pValue);
- if (ulCount != expectedCount)
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleBufferCountCmd : expected %lu, got %lun",
- expectedCount, ulCount));
- }
- else
- {
- ret = true;
- }
- }
- return ret;
- }
- bool SDPMediaDescParserTest::HandleGetIntCmd(const UTVector<UTString>& info)
- {
- bool ret = false;
- unsigned int valueIndex = 0;
- unsigned int expectedValue = 0;
- if (!UTParamUtil::GetUInt(info[1], valueIndex) ||
- !UTParamUtil::GetUInt(info[3], expectedValue))
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleGetIntCmd : failed to convert parametern"));
- }
- else if (valueIndex >= m_nValues)
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleGetIntCmd : invalid value indexn"));
- }
- else
- {
- IHXValues* pHdr = m_ppValues[valueIndex];
- ULONG32 ulValue = 0;
- HX_RESULT res = pHdr->GetPropertyULONG32(info[2], ulValue);
- if (HXR_OK != res)
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleGetIntCmd : get failedn"));
- }
- else if (ulValue != expectedValue)
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleGetIntCmd : expected %lu, got %lun",
- expectedValue, ulValue));
- }
- else
- {
- ret = true;
- }
- }
- return ret;
- }
- bool SDPMediaDescParserTest::HandleGetStringCmd(const UTVector<UTString>& info)
- {
- bool ret = false;
- unsigned int valueIndex = 0;
- if (!UTParamUtil::GetUInt(info[1], valueIndex))
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleGetStringCmd : failed to convert parametern"));
- }
- else if (valueIndex >= m_nValues)
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleGetStringCmd : invalid value indexn"));
- }
- else
- {
- IHXValues* pHdr = m_ppValues[valueIndex];
- IHXBuffer* pValue = 0;
- HX_RESULT res = pHdr->GetPropertyCString(info[2], pValue);
- if (HXR_OK != res)
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleGetStringCmd : get failedn"));
- }
- else if (strcmp((const char*)pValue->GetBuffer(), info[3]))
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleGetStringCmd : expected '%s', got '%s'n",
- (const char*)info[3],
- (const char*)pValue->GetBuffer()));
- }
- else
- {
- ret = true;
- }
- HX_RELEASE(pValue);
- }
- return ret;
- }
- bool SDPMediaDescParserTest::HandleGetBufferCmd(const UTVector<UTString>& info)
- {
- bool ret = false;
- unsigned int valueIndex = 0;
- IHXBuffer* pExpected = 0;
- if (!UTParamUtil::GetUInt(info[1], valueIndex) ||
- !GetBuffer(info[3], pExpected))
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleGetBufferCmd : failed to convert parametern"));
- }
- else if (valueIndex >= m_nValues)
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleGetBufferCmd : invalid value indexn"));
- }
- else
- {
- IHXValues* pHdr = m_ppValues[valueIndex];
- IHXBuffer* pValue = 0;
- HX_RESULT res = pHdr->GetPropertyBuffer(info[2], pValue);
- if (HXR_OK != res)
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleGetBufferCmd : get failedn"));
- }
- else if (pValue->GetSize() != pExpected->GetSize())
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleGetBufferCmd : size expected %lu, got %lun",
- pExpected->GetSize(),
- pValue->GetSize()));
- }
- else if (memcmp(pValue->GetBuffer(), pExpected->GetBuffer(),
- pValue->GetSize()))
- {
- DPRINTF(D_ERROR, ("SDPMediaDescParserTest::HandleGetBufferCmd : buffers don't matchn"));
- }
- else
- {
- ret = true;
- }
- HX_RELEASE(pValue);
- }
- HX_RELEASE(pExpected);
- return ret;
- }
- static int Char2Num(char ch)
- {
- int ret = -1;
- if ((ch >= '0') && (ch <= '9'))
- ret = ch - '0';
- else if ((ch >= 'a') && (ch <= 'f'))
- ret = ch - 'a' + 10;
- else if ((ch >= 'A') && (ch <= 'F'))
- ret = ch - 'A' + 10;
- return ret;
- }
- bool SDPMediaDescParserTest::GetBuffer(const char* pStr,
- IHXBuffer*& pValue) const
- {
- bool ret = false;
- int length = strlen(pStr);
- if (m_pCCF && (length > 0) && ((length & 0x1) == 0) &&
- (HXR_OK == m_pCCF->CreateInstance(CLSID_IHXBuffer, (void**)&pValue))&&
- (HXR_OK == pValue->SetSize(length / 2)))
- {
- ret = true;
- unsigned char* pDest = pValue->GetBuffer();
- while(ret && *pStr)
- {
- int high = Char2Num(*pStr++);
- int low = Char2Num(*pStr++);
- if ((high == -1) || (low == -1))
- {
- ret = false;
- }
- else
- {
- *pDest++ = (unsigned char)((high << 4) | low);
- }
- }
- }
- if (!ret)
- {
- HX_RELEASE(pValue);
- }
- return ret;
- }
- void SDPMediaDescParserTest::PrintBuffer(const char* pLabel,
- IHXBuffer* pBuf) const
- {
- IHXBuffer* pStrBuf = 0;
- if (m_pCCF &&
- (HXR_OK == m_pCCF->CreateInstance(CLSID_IHXBuffer, (void**)&pStrBuf))&&
- (HXR_OK == pStrBuf->SetSize(pBuf->GetSize() * 2 + 1)))
- {
- static const char z_hexChars[] = "0123456789abcdef";
-
- UINT8* pSrc = pBuf->GetBuffer();
- char* pDest = (char*)pStrBuf->GetBuffer();
-
- for (ULONG32 i = 0; i < pBuf->GetSize(); i++)
- {
- *pDest++ = z_hexChars[*pSrc >> 4];
- *pDest++ = z_hexChars[*pSrc++ & 0xf];
- }
- *pDest = ' ';
- DPRINTF (D_ERROR, ("%s '%s'n",
- pLabel, (const char*)pStrBuf->GetBuffer()));
- }
- HX_RELEASE(pStrBuf);
- }
- void SDPMediaDescParserTest::DestroyValues()
- {
- if (m_ppValues)
- {
- for (UINT16 i = 0; i < m_nValues; i++)
- {
- HX_RELEASE(m_ppValues[i]);
- }
- }
- m_nValues = 0;
- delete [] m_ppValues;
- m_ppValues = 0;
- }