utilitylibraries/libutils/tsrc/src/integration_test_scenario2.cpp
changeset 31 ce057bb09d0b
child 45 4b03adbd26ca
equal deleted inserted replaced
30:e20de85af2ee 31:ce057bb09d0b
       
     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     string src1("@#$%^^&");
       
    28     TPtr8 des1((unsigned char *)"",30);
       
    29     int retval1, retval2,retval3,retval4,retval5,retval6;
       
    30     int ret;
       
    31     retval1 = StringToTptr8(src1, des1);
       
    32     printf("retval1 value is %d\n", retval1);
       
    33 
       
    34     TPtr8 src2 = des1;
       
    35     char *des2= new char[30];
       
    36     int size1=30;
       
    37     retval2= Tptr8ToChar(src2,des2,size1);
       
    38     printf("retval2 value is %d\n", retval2);
       
    39 
       
    40     char* src3 = des2;
       
    41     TBuf8 <30> des3;
       
    42     retval3 = CharToTbuf8 (src3, des3);
       
    43     printf("retval3 value is %d\n", retval3);
       
    44     
       
    45     TBuf8<30>src4= des3;
       
    46     wchar_t * des4= new wchar_t [30]; 
       
    47     int size2=30;
       
    48     retval4= Tbuf8ToWchar(src4,des4,size2);
       
    49     printf("retval4 value is %d\n", retval4);
       
    50 
       
    51     wchar_t* src5 = des4;
       
    52     TPtr8 des5((unsigned char *)" ",50);
       
    53     char * cPtr= new char[50];
       
    54     retval5 = WcharpToTptr8(src5,cPtr,des5);
       
    55     printf("retval5 value is %d\n", retval5);
       
    56 
       
    57     string des6("");
       
    58     TPtr8  src6 = des5;
       
    59     retval6 = Tptr8ToString(src6, des6);
       
    60     printf("retval6 value is %d\n", retval6);
       
    61     
       
    62     ret= strncmp((char *)src1.c_str(),(char *)des6.c_str(),11);
       
    63     if(ret == ESuccess)
       
    64     {
       
    65     printf("integration_test2 passed\n");
       
    66     }
       
    67     else
       
    68     {
       
    69     printf("integration_test2 failed\n");
       
    70     assert_failed = true;
       
    71     }	
       
    72     delete[] des2;
       
    73     delete[] des4;
       
    74     delete[] cPtr;
       
    75     }
       
    76     __UHEAP_MARKEND;
       
    77     testResultXml("integration_test_scenario2");
       
    78     return 0;
       
    79 }