utilitylibraries/libutils/tsrc/src/integration_test_scenario1.cpp
changeset 0 e4d67989cc36
child 22 ddc455616bd6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/utilitylibraries/libutils/tsrc/src/integration_test_scenario1.cpp	Tue Feb 02 02:01:42 2010 +0200
@@ -0,0 +1,72 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
+
+#include <stdio.h>
+#include<e32std.h>
+#include "libutils.h"
+#include"std_log_result.h"
+#define LOG_FILENAME_LINE __FILE__, __LINE__
+void main()
+{
+    __UHEAP_MARK;
+    {
+    string str1("Integration test");
+    TPtrC8 buf1;
+    int retval1 = 0, retval2 = 0,retval3 = 0,retval4,retval5,retval6;
+    int ret =0 ;
+    retval1 = StringToTptrc8(str1, buf1);
+
+    TPtrC8 src1 = buf1;
+    char *des1= new char[20];
+    int size1=20;
+    retval2= Tptrc8ToCharp(src1,des1,size1);
+
+    char* src2 = des1;
+    TBuf8 <20> des2;
+    retval3 = CharToTbuf8 (src2, des2);
+
+    TBuf8<20>src3= des2;
+    wchar_t * des3= new wchar_t [20]; 
+    int size2=20;
+    retval4= Tbuf8ToWchar(src3,des3,size2);
+
+    wchar_t* src4 = des3;
+    TPtrC8 des4;
+    char *size = new char[2*wcslen(src4)];
+    retval5 = WcharpToTptrc8(src4, size ,des4);
+
+    string str2;
+    TPtrC8  src5 = des4;
+    retval6 = Tptrc8ToString(src5, str2);
+
+    ret= strncmp((char *)str1.c_str(),(char *)str2.c_str(),11);
+    if(ret == ESuccess)
+    {
+    printf("integration_test1 passed\n");
+    }
+    else
+    {
+    printf("integration_test1 failed\n");
+    assert_failed = true;
+    }
+    delete[] des1;
+    delete[] des3;
+    delete[] size;		
+    }
+    __UHEAP_MARKEND;
+    testResultXml("integration_test_scenario1");
+}