utilitylibraries/libutils/tsrc/src/integration_test_scenario1.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 str1("Integration test");
       
    28     TPtrC8 buf1;
       
    29     int retval1 = 0, retval2 = 0,retval3 = 0,retval4,retval5,retval6;
       
    30     int ret =0 ;
       
    31     retval1 = StringToTptrc8(str1, buf1);
       
    32     printf("retval1 value is %d\n", retval1);
       
    33 
       
    34     TPtrC8 src1 = buf1;
       
    35     char *des1= new char[20];
       
    36     int size1=20;
       
    37     retval2= Tptrc8ToCharp(src1,des1,size1);
       
    38     printf("retval2 value is %d\n", retval2);
       
    39     
       
    40     char* src2 = des1;
       
    41     TBuf8 <20> des2;
       
    42     retval3 = CharToTbuf8 (src2, des2);
       
    43     printf("retval3 value is %d\n", retval3);
       
    44     
       
    45     TBuf8<20>src3= des2;
       
    46     wchar_t * des3= new wchar_t [20]; 
       
    47     int size2=20;
       
    48     retval4= Tbuf8ToWchar(src3,des3,size2);
       
    49     printf("retval4 value is %d\n", retval4);
       
    50     
       
    51     wchar_t* src4 = des3;
       
    52     TPtrC8 des4;
       
    53     char *size = new char[2*wcslen(src4)];
       
    54     retval5 = WcharpToTptrc8(src4, size ,des4);
       
    55     printf("retval5 value is %d\n", retval5);
       
    56     
       
    57     string str2;
       
    58     TPtrC8  src5 = des4;
       
    59     retval6 = Tptrc8ToString(src5, str2);
       
    60     printf("retval6 value is %d\n", retval6);
       
    61     
       
    62     ret= strncmp((char *)str1.c_str(),(char *)str2.c_str(),11);
       
    63     if(ret == ESuccess)
       
    64     {
       
    65     printf("integration_test1 passed\n");
       
    66     }
       
    67     else
       
    68     {
       
    69     printf("integration_test1 failed\n");
       
    70     assert_failed = true;
       
    71     }
       
    72     delete[] des1;
       
    73     delete[] des3;
       
    74     delete[] size;		
       
    75     }
       
    76     __UHEAP_MARKEND;
       
    77     testResultXml("integration_test_scenario1");
       
    78     return 0;
       
    79 }