os/ossrv/utilitylibraries/libutils/tsrc/src/integration_test_scenario12.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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     RBuf8 src1;
    28     TBuf8<20>buf(_L8("descriptor"));
    29     src1.Create(buf);
    30     char *des1= new char[10];
    31     int ret,retval2,retval3,retval4,retval5,retval6;
    32     int size1=20;
    33     retval2=Rbuf8ToChar(src1,des1,size1);		
    34 
    35     char *src2=des1;
    36     RBuf16 des2;
    37     des2.CreateL(30);
    38     retval2=CharToRbuf16(src2,des2);
    39     printf("retval2 value is %d\n", retval2);
    40 
    41     RBuf16 src3;
    42     src3.Create(des2);
    43     string des3;
    44     retval3=Rbuf16ToString(src3,des3);
    45     printf("retval3 value is %d\n", retval3);
    46 
    47     string src4=des3;
    48     TBuf8 <30> des4;
    49     retval4 = StringToTbuf8(src4,des4);
    50     printf("retval4 value is %d\n", retval4);
    51     
    52     TBuf8<20>src5= des4;
    53     char * des5= new char [30]; 
    54     retval5= Tbuf8ToChar(src5,des5,size1);
    55     printf("retval5 value is %d\n", retval5);
    56     
    57     char* src6=des5;
    58     RBuf8 des6;
    59     des6.CreateL(30);
    60     retval6= CharToRbuf8(src6,des6);
    61     printf("retval6 value is %d\n", retval6);
    62     
    63     ret= strncmp((const char*)src1.Ptr(),(const char*)des6.Ptr(),10);
    64     if(ret == ESuccess)
    65     {
    66     printf("integration_test12 PASSED\n");
    67     }
    68     else
    69     {
    70     printf("integration_tes12 FAILED\n");
    71     assert_failed = true;
    72     }			
    73     delete[] des1;
    74     delete[] des5;
    75     src1.Close();
    76     des2.Close();
    77     src3.Close();
    78     des6.Close();
    79     }
    80     __UHEAP_MARKEND;
    81     testResultXml("integration_test_scenario12");
    82     return 0;
    83 }