sl@0: /* sl@0: * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: #include sl@0: #include sl@0: #include "libutils.h" sl@0: #include"std_log_result.h" sl@0: #define LOG_FILENAME_LINE __FILE__, __LINE__ sl@0: int main() sl@0: { sl@0: __UHEAP_MARK; sl@0: { sl@0: TPtr8 src1((unsigned char*)"openc_test",15,30); sl@0: char *des1= new char[20]; sl@0: int ret,retval1,retval2,retval3,retval4,retval5,retval6,size1=20,size2=80; sl@0: retval1= Tptr8ToChar(src1,des1,size1); sl@0: printf("retval1 value is %d\n", retval1); sl@0: sl@0: char *src2= des1; sl@0: RBuf8 des2; sl@0: des2.CreateL(30); sl@0: retval2= CharToRbuf8(src2,des2); sl@0: printf("retval2 value is %d\n", retval2); sl@0: sl@0: RBuf8 src3; sl@0: src3.CreateL(des2,10); sl@0: string des3; sl@0: retval3= Rbuf8ToString(src3,des3); sl@0: printf("retval3 value is %d\n", retval3); sl@0: sl@0: string src4=des3; sl@0: wchar_t temp[30]; sl@0: TPtr16 des4((unsigned short *)temp,30); sl@0: wchar_t *aPtr= new wchar_t[30]; sl@0: retval4= StringToTptr16(src4,aPtr,des4); sl@0: printf("retval4 value is %d\n", retval4); sl@0: sl@0: TPtr16 src5=des4; sl@0: char *des5= new char[50]; sl@0: retval5= Tptr16ToCharp(src5,des5,size2); sl@0: printf("retval5 value is %d\n", retval5); sl@0: sl@0: char *src6= des5; sl@0: TPtr8 des6((unsigned char*)" ",20); sl@0: retval6= CharpToTptr8(src6,des6); sl@0: printf("retval6 value is %d\n", retval6); sl@0: sl@0: ret= strncmp((const char *)src1.Ptr(),(const char *) des6.Ptr(),10); sl@0: if(ret==ESuccess) sl@0: { sl@0: printf("integration_test10 PASSED\n"); sl@0: } sl@0: else sl@0: { sl@0: printf("integration_tes10 FAILED\n"); sl@0: assert_failed = true; sl@0: } sl@0: delete[] des1; sl@0: delete[] des5; sl@0: delete[] aPtr; sl@0: src3.Close(); sl@0: des2.Close(); sl@0: } sl@0: __UHEAP_MARKEND; sl@0: testResultXml("integration_test_scenario10"); sl@0: return 0; sl@0: }