utilitylibraries/libutils/tsrc/src/integration_test_scenario26.cpp
changeset 31 ce057bb09d0b
child 45 4b03adbd26ca
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/utilitylibraries/libutils/tsrc/src/integration_test_scenario26.cpp	Fri Jun 04 16:20:51 2010 +0100
@@ -0,0 +1,79 @@
+/*
+* 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__
+int main()
+{
+    __UHEAP_MARK;
+    {
+    int retval[10];
+    _LIT8(KTxt, "HelloHello");
+    HBufC8* buffer = HBufC8::NewL(10);
+    *buffer = KTxt;
+    wstring myWstring(L"gfsdfdufhuhfhfsfsfsdf");
+    retval[0] = Hbufc8ToWstring(buffer,myWstring);
+
+    TPtrC8 myTptr8(KTxt);
+    char* temp = new char[30];
+    retval[2] = WstringToTptrc8(myWstring,temp,myTptr8);
+
+    char* myChar = new char[40];
+    int size = 40;
+    retval[3] = Tptrc8ToCharp(myTptr8,myChar,size);
+
+    TBufC8<30> buf8;
+    TPtr8 myTptr = buf8.Des();  
+    retval[4] = CharpToTptr8(myChar,myTptr);
+
+    wchar_t* Wstr_fin = new wchar_t[36];
+    int size_char=36;
+    retval[5] = Tptr8ToWcharp(myTptr,Wstr_fin,size_char);
+
+    _LIT8(text_fin, "fgdsgfgdsg");
+    HBufC8* finBuffer = HBufC8::NewL(10);
+    *finBuffer = text_fin;
+    retval[6] = WcharToHbufc8(Wstr_fin,finBuffer);
+    
+    for(int i=1; i<=6; i++)
+        {
+        if (retval[i]!= 0)
+                printf("Conversion failed for retval\n",retval[i]);
+        }
+
+    if(!buffer->Compare(finBuffer->Des()))
+    {
+    printf("\n\nintegration_test_scenario26 case passed");
+    }
+    else
+    {
+    printf("\n\nintegration_test_scenario26 case failed");
+    assert_failed = true;
+    }
+    delete buffer;
+    delete[] temp;
+    delete[] myChar;
+    delete[] Wstr_fin;
+    delete 	finBuffer;
+    }
+    __UHEAP_MARKEND;
+    testResultXml("integration_test_scenario26");
+    return 0;
+}