utilitylibraries/libutils/tsrc/src/integration_test_scenario24.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 03 May 2010 14:06:43 +0300
changeset 22 ddc455616bd6
parent 0 e4d67989cc36
child 45 4b03adbd26ca
child 57 2efc27d87e1c
permissions -rw-r--r--
Revision: 201018 Kit: 201018

/*
* 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];
    RBuf8 rbuf;
    int size=10;
    _LIT8(Ktext_rbuf,"hello hi");
    rbuf.CreateL(Ktext_rbuf,size);
    wchar_t* myWchar = new wchar_t[10];
    retval[0] = Rbuf8ToWchar(rbuf,myWchar,size);

    TBufC8<30> buf;
    TPtrC8 myTptr8 = buf.Des();
    char* temp = new char[15];
    retval[0] = WcharpToTptrc8(myWchar,temp,myTptr8);

    wstring myWstring(L"gdfgdsgghdfssfsafdsf");
    retval[1] = Tptrc8ToWstring(myTptr8,myWstring);

    TBufC<30> tbuf;
    TPtrC16 myTptr16 = tbuf.Des();
    retval[2] = WstringToTptrc16(myWstring,myTptr16);

    char* myChar = new char[40];     
    int size_new = 40;
    retval[3] = Tptrc16ToCharp(myTptr16,myChar,size_new);

    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);
    
    for(int i=1; i<=5; i++)
        {
        if (retval[i]!= 0)
                printf("Conversion failed for retval\n",retval[i]);
        }

    if(!wcscmp(myWchar,Wstr_fin))
    {
    printf("\n\nintegration_test_scenario24 case passed");
    }
    else
    {
    printf("\n\nintegration_test_scenario24 case failed");
    assert_failed = true;
    }
    rbuf.Close();
    delete[] myWchar;
    delete[] temp;
    delete[] myChar;
    delete[] Wstr_fin;	
    }
    __UHEAP_MARKEND;
    testResultXml("integration_test_scenario24");
    return 0;
}