1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/compressionlibs/ziplib/test/tef/ulibz/src/ulibz.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,90 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Name : ulibz.cpp
1.18 +//
1.19 +//
1.20 +
1.21 +
1.22 +
1.23 +#include "ulibz.h"
1.24 +
1.25 +CTestlibz::~CTestlibz()
1.26 + {
1.27 +
1.28 + }
1.29 +
1.30 +CTestlibz::CTestlibz(const TDesC& aStepName)
1.31 + {
1.32 + // MANDATORY Call to base class method to set up the human readable name for logging.
1.33 + SetTestStepName(aStepName);
1.34 + }
1.35 +
1.36 +TVerdict CTestlibz::doTestStepPreambleL()
1.37 + {
1.38 + SetTestStepResult(EPass);
1.39 + return TestStepResult();
1.40 + }
1.41 +
1.42 +
1.43 +
1.44 +TVerdict CTestlibz::doTestStepPostambleL()
1.45 + {
1.46 + return TestStepResult();
1.47 + }
1.48 +
1.49 +
1.50 +TVerdict CTestlibz::doTestStepL()
1.51 + {
1.52 + int err;
1.53 +
1.54 +
1.55 + //testlibz steps
1.56 + if(TestStepName() == KLibzcomp_decomp)
1.57 + {
1.58 + INFO_PRINTF1(_L("KLibzcomp_decomp():"));
1.59 + err = libzcomp_decomp();
1.60 + SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
1.61 + }
1.62 +
1.63 + else if(TestStepName() == KLibzdefl_Infl)
1.64 + {
1.65 + INFO_PRINTF1(_L("KLibzdefl_Infl():"));
1.66 + err = libzdefl_Infl();
1.67 + SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
1.68 + }
1.69 +
1.70 + else if(TestStepName() == KLibzgzio)
1.71 + {
1.72 + INFO_PRINTF1(_L("Kglobmark():"));
1.73 + iRfs.Connect();
1.74 + iRfs.MkDirAll(KDIRPATH);
1.75 +
1.76 + err = libzgzio();
1.77 +
1.78 + iRfile.Close();
1.79 + iRfs.Delete(KGZFILE);
1.80 + iRfs.RmDir(KDIRPATH);
1.81 + iRfs.Close();
1.82 +
1.83 + SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
1.84 + }
1.85 + else
1.86 + {
1.87 + SetTestStepResult(EPass);
1.88 + }
1.89 +
1.90 + return TestStepResult();
1.91 + }
1.92 +
1.93 +