os/ossrv/utilitylibraries/libutils/tsrc/src/integration_test_scenario26.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 /*
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:
    15 *
    16 */
    17 
    18 #include <stdio.h>
    19 #include<e32std.h>
    20 #include "libutils.h"
    21 #include"std_log_result.h"
    22 #define LOG_FILENAME_LINE __FILE__, __LINE__
    23 int main()
    24 {
    25     __UHEAP_MARK;
    26     {
    27     int retval[10];
    28     _LIT8(KTxt, "HelloHello");
    29     HBufC8* buffer = HBufC8::NewL(10);
    30     *buffer = KTxt;
    31     wstring myWstring(L"gfsdfdufhuhfhfsfsfsdf");
    32     retval[0] = Hbufc8ToWstring(buffer,myWstring);
    33 
    34     TPtrC8 myTptr8(KTxt);
    35     char* temp = new char[30];
    36     retval[2] = WstringToTptrc8(myWstring,temp,myTptr8);
    37 
    38     char* myChar = new char[40];
    39     int size = 40;
    40     retval[3] = Tptrc8ToCharp(myTptr8,myChar,size);
    41 
    42     TBufC8<30> buf8;
    43     TPtr8 myTptr = buf8.Des();  
    44     retval[4] = CharpToTptr8(myChar,myTptr);
    45 
    46     wchar_t* Wstr_fin = new wchar_t[36];
    47     int size_char=36;
    48     retval[5] = Tptr8ToWcharp(myTptr,Wstr_fin,size_char);
    49 
    50     _LIT8(text_fin, "fgdsgfgdsg");
    51     HBufC8* finBuffer = HBufC8::NewL(10);
    52     *finBuffer = text_fin;
    53     retval[6] = WcharToHbufc8(Wstr_fin,finBuffer);
    54     
    55     for(int i=1; i<=6; i++)
    56         {
    57         if (retval[i]!= 0)
    58                 printf("Conversion failed for retval\n",retval[i]);
    59         }
    60 
    61     if(!buffer->Compare(finBuffer->Des()))
    62     {
    63     printf("\n\nintegration_test_scenario26 case passed");
    64     }
    65     else
    66     {
    67     printf("\n\nintegration_test_scenario26 case failed");
    68     assert_failed = true;
    69     }
    70     delete buffer;
    71     delete[] temp;
    72     delete[] myChar;
    73     delete[] Wstr_fin;
    74     delete 	finBuffer;
    75     }
    76     __UHEAP_MARKEND;
    77     testResultXml("integration_test_scenario26");
    78     return 0;
    79 }