os/ossrv/compressionlibs/ziplib/test/tef/ulibz/src/ulibz.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2007-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 * Name        : ulibz.h
    16 * 
    17 *
    18 */
    19 
    20 
    21 
    22 
    23 #ifndef __ULIBZ_H__
    24 #define __ULIBZ_H__
    25 
    26 #include <test/testexecutestepbase.h>
    27 #include <stdlib.h>
    28 #include <string.h>
    29 #include <zlib.h>
    30 
    31 
    32 _LIT(KDIRBASE,"C:\\Libz");
    33 _LIT(KDIRPATH, "C:\\Libz\\Test1\\");
    34 _LIT(KGZFILE, "C:\\Libz\\Test1\\bye.gz");
    35 
    36 
    37 //literals for libz operations
    38 _LIT(KLibzcomp_decomp, "libzcomp_decomp");
    39 _LIT(KLibzdefl_Infl, "libzdefl_Infl");
    40 _LIT(KLibzgzio, "libzgzio");
    41 _LIT(KLibzversion, "libzversion");
    42 
    43 class CTestlibz : public CTestStep
    44 	{
    45 public:
    46 	~CTestlibz(); 
    47 	CTestlibz(const TDesC& aStepName);
    48 	TVerdict doTestStepL();
    49 	TVerdict doTestStepPreambleL();
    50 	TVerdict doTestStepPostambleL();
    51 private:
    52 	//libz Test cases
    53 	TInt libzcomp_decomp();
    54     TInt libzdefl_Infl();
    55 	TInt libzdeflate(Byte*, uLong);
    56 	TInt libzinflate(Byte*, uLong, Byte*, uLong);	
    57 	TInt libzgzio();
    58 	TInt libzversion();
    59 	RFs iRfs;
    60 	RFile iRfile;
    61 	};
    62 #endif // __ULIBZ_H__
    63