os/ossrv/utilitylibraries/libutils/tsrc/src/integration_test_scenario3.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     char * src1="test";
    26     HBufC8 *des1= HBufC8::NewMaxL(20);
    27     int ret,retval1,retval2,retval3,retval4,retval5,retval6;
    28     int /*size1=20,*/size2=20,size3=20; 	
    29     __UHEAP_MARK;
    30     {
    31     retval1= CharToHbufc8(src1,des1);
    32     printf("retval1 value is %d\n", retval1);
    33 
    34     string des2("test");
    35     HBufC8 *src2= des1;
    36     retval2= Hbufc8ToString(src2,des2);
    37     printf("retval2 value is %d\n", retval2);
    38 
    39     string src3=des2;
    40     TPtr8 des3((unsigned char *)" ",20);
    41     retval3 = StringToTptr8(src3, des3);
    42     printf("retval3 value is %d\n", retval3);
    43 
    44     TPtr8 src4 = des3;
    45     wchar_t *des4= new wchar_t[42];
    46     retval4= Tptr8ToWcharp(src4,des4,size2);
    47     printf("retval4 value is %d\n", retval4);
    48 
    49     wchar_t* src5=des4;
    50     TPtr8 des5((unsigned char*)" ",42);
    51     char * cPtr= new char[30]; 	
    52     retval5=WcharpToTptr8(src5,cPtr,des5);
    53     printf("retval5 value is %d\n", retval5);
    54 
    55     TPtr8 src6 = des5;
    56     char *des6= new char[42];
    57     retval6= Tptr8ToChar(src6,des6,size3);
    58     printf("retval6 value is %d\n", retval6);
    59 
    60     ret= strncmp((char*)src1,(char*)des6,4);
    61     if(ret == ESuccess)
    62     {
    63     printf("integration_test3 passed\n");
    64     }
    65     else
    66     {
    67     printf("integration_test3 failed\n");
    68     assert_failed = true;
    69     }	
    70     delete[] des4;
    71     des4=NULL;
    72     delete[] des6;
    73     des6=NULL;
    74     delete[] cPtr;
    75     delete des1;
    76     }
    77     __UHEAP_MARKEND;
    78     testResultXml("integration_test_scenario3");
    79     return 0;
    80 }