1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/utilitylibraries/libutils/tsrc/src/integration_test_scenario13.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,74 @@
1.4 +/*
1.5 +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +#include <stdio.h>
1.22 +#include<e32std.h>
1.23 +#include "libutils.h"
1.24 +#include"std_log_result.h"
1.25 +#define LOG_FILENAME_LINE __FILE__, __LINE__
1.26 +int main()
1.27 +{
1.28 + __UHEAP_MARK;
1.29 + {
1.30 + _LIT8(Kname,"testing");
1.31 + HBufC8 *src1=HBufC8::NewL(20);
1.32 + *src1=Kname;
1.33 + char *des1 = new char[30];
1.34 + int size1=30,retval1,retval2,retval3,retval4,ret;
1.35 + retval1= Hbufc8ToChar(src1,des1,size1);
1.36 + printf("retval1 value is %d\n", retval1);
1.37 +
1.38 + char *src2=des1;
1.39 + TPtrC16 des2((unsigned short *)"",20);
1.40 + wchar_t *aPtr=new wchar_t[20];
1.41 + retval2=CharpToTptrc16(src2,aPtr,des2);
1.42 + printf("retval2 value is %d\n", retval2);
1.43 +
1.44 + TPtrC16 src3= des2;
1.45 + char *des3= new char[20];
1.46 + retval3= Tptrc16ToCharp(src3,des3,size1);
1.47 + printf("retval3 value is %d\n", retval3);
1.48 +
1.49 + char *src4=des3;
1.50 + HBufC16 *des4=HBufC16::NewMaxL(20);
1.51 + retval4= CharToHbufc16(src4,des4);
1.52 + printf("retval4 value is %d\n", retval4);
1.53 +
1.54 + char *temp = new char [des4->Length()];
1.55 + wcstombs(temp, (const wchar_t *)des4->Ptr() , 7);
1.56 + temp[7] = '\0';
1.57 + ret=strcmp(temp, "testing");
1.58 + if(ret == 0)
1.59 + {
1.60 + printf("integration_test13 PASSED\n");
1.61 + }
1.62 + else
1.63 + {
1.64 + printf("integration_tes13 FAILED\n");
1.65 + assert_failed = true;
1.66 + }
1.67 + delete[] des1;
1.68 + delete[] aPtr;
1.69 + delete[] temp;
1.70 + delete[] des3;
1.71 + delete src1;
1.72 + delete des4;
1.73 + }
1.74 + __UHEAP_MARKEND;
1.75 + testResultXml("integration_test_scenario13");
1.76 + return 0;
1.77 +}