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: char* src1="integration_test6"; sl@0: RBuf8 des1; sl@0: int ret,retval1,retval2,retval3,retval4,retval5,retval6; sl@0: int size1=39; sl@0: des1.CreateL(30); sl@0: retval1= CharToRbuf8(src1,des1); sl@0: printf("retval1 value is %d\n", retval1); sl@0: sl@0: RBuf8 src2; sl@0: src2.Create(des1); sl@0: string des2; sl@0: retval2= Rbuf8ToString(src2,des2); sl@0: printf("retval2 value is %d\n", retval2); sl@0: sl@0: string src3=des2; sl@0: HBufC8 *des3= HBufC8::NewMaxL(20); sl@0: retval3= StringToHbufc8(src3,des3); sl@0: printf("retval3 value is %d\n", retval3); sl@0: sl@0: HBufC8 *src4=des3; sl@0: string des4; sl@0: retval4= Hbufc8ToString(src4,des4); sl@0: printf("retval4 value is %d\n", retval4); sl@0: sl@0: string src5=des4; sl@0: TBuf16<20> des5; sl@0: retval5= StringToTbuf16(src5,des5); sl@0: printf("retval5 value is %d\n", retval5); sl@0: sl@0: TBuf16<20> src6=des5; sl@0: char *des6= new char[39]; sl@0: retval6= Tbuf16ToChar(src6,des6,size1); sl@0: printf("retval6 value is %d\n", retval6); sl@0: sl@0: ret= strncmp((char*)src1,(char*)des6,17); sl@0: if(ret == ESuccess) sl@0: { sl@0: printf("integration_test6 PASSED\n"); sl@0: } sl@0: else sl@0: { sl@0: printf("integration_test6 FAILED\n"); sl@0: assert_failed = true; sl@0: } sl@0: delete des3; sl@0: delete[]des6; sl@0: des1.Close(); sl@0: src2.Close(); sl@0: } sl@0: __UHEAP_MARKEND; sl@0: testResultXml("integration_test_scenario6"); sl@0: return 0; sl@0: }